hash
stringlengths 40
40
| date
stringdate 2022-03-21 20:49:51
2025-03-21 16:24:27
| author
stringclasses 110
values | commit_message
stringlengths 15
133
| is_merge
bool 1
class | git_diff
stringlengths 193
4.18M
⌀ | type
stringclasses 10
values | masked_commit_message
stringlengths 8
104
|
|---|---|---|---|---|---|---|---|
9943a520d29ee89598b4aa6aba69ff83cb4768ce
|
2023-01-29 00:34:29
|
illerokcob
|
feat(irplus): `remove-ads` patch (#1554)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/irplus/ad/annotations/IrplusAdsCompatibility.kt b/src/main/kotlin/app/revanced/patches/irplus/ad/annotations/IrplusAdsCompatibility.kt
new file mode 100644
index 0000000000..2db4e69e04
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/irplus/ad/annotations/IrplusAdsCompatibility.kt
@@ -0,0 +1,9 @@
+package app.revanced.patches.irplus.ad.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility([Package("net.binarymode.android.irplus")])
+@Target(AnnotationTarget.CLASS)
+@Retention(AnnotationRetention.RUNTIME)
+internal annotation class IrplusAdsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt b/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt
new file mode 100644
index 0000000000..061606b1c4
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt
@@ -0,0 +1,12 @@
+package app.revanced.patches.irplus.ad.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import org.jf.dexlib2.AccessFlags
+
+object IrplusAdsFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
+ listOf("L", "Z"),
+ strings = listOf("TAGGED")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt b/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt
new file mode 100644
index 0000000000..9a7f0a66e2
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt
@@ -0,0 +1,33 @@
+package app.revanced.patches.irplus.ad.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.addInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.irplus.ad.annotations.IrplusAdsCompatibility
+import app.revanced.patches.irplus.ad.fingerprints.IrplusAdsFingerprint
+
+
+@Patch
+@Name("remove-ads")
+@Description("Removes all ads from the app.")
+@IrplusAdsCompatibility
+@Version("0.0.1")
+class IrplusAdsPatch : BytecodePatch(
+ listOf(IrplusAdsFingerprint)
+) {
+ override fun execute(context: BytecodeContext): PatchResult {
+ val method = IrplusAdsFingerprint.result!!.mutableMethod
+
+ // By overwriting the second parameter of the method,
+ // the view which holds the advertisement is removed.
+ method.addInstruction(0, "const/4 p2, 0x0")
+
+ return PatchResultSuccess()
+ }
+}
\ No newline at end of file
|
feat
|
`remove-ads` patch (#1554)
|
c04be545f28736f6c9ae9bfb46f1e8c199bcebe2
|
2023-07-11 06:18:58
|
semantic-release-bot
|
chore(release): 2.184.0-dev.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1bfead55f7..632e2c2f6c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.184.0-dev.1](https://github.com/revanced/revanced-patches/compare/v2.183.1...v2.184.0-dev.1) (2023-07-11)
+
+
+### Features
+
+* **youtube/custom-branding:** update logo ([e2187f3](https://github.com/revanced/revanced-patches/commit/e2187f33ff82fce40592517aef31cb191b42987c))
+
## [2.183.1](https://github.com/revanced/revanced-patches/compare/v2.183.0...v2.183.1) (2023-07-10)
diff --git a/gradle.properties b/gradle.properties
index adf6b76b7d..e31df54d26 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 2.183.1
+version = 2.184.0-dev.1
diff --git a/patches.json b/patches.json
index b5a2563f30..1de9f5b961 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"Always autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Auto claim channel points","description":"Automatically claim Channel Points.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Background play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Block audio ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Block embedded ads","description":"Blocks embedded stream ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Block video ads","Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Block video ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Bypass certificate checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"dbrady://relay\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"free.reddit.news","versions":[]},{"name":"reddit.news","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://rubenmayayo.com\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.rubenmayayo.reddit","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"redditisfun://auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.andrewshu.android.reddit","versions":[]},{"name":"com.andrewshu.android.redditdonation","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://baconreader.com/auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.onelouder.baconreader","versions":[]},{"name":"com.onelouder.baconreader.premium","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://www.ccrama.me\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"me.ccrama.redditslide","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"infinity://localhost\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"ml.docilealligator.infinityforreddit","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://redditsync/auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]},{"name":"com.laurencedawson.reddit_sync.pro","versions":[]},{"name":"com.laurencedawson.reddit_sync.dev","versions":[]}]},{"name":"Change package name","description":"Changes the package name.","version":"0.0.1","excluded":true,"options":[{"key":"packageName","title":"Package name","description":"The name of the package to rename of the app.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"Client spoof","description":"Spoofs a patched client to allow playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Spoof signature verification"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Codecs unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Compact header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Copy video url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Copy video url resource","Player controls bytecode patch","Video information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Custom branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Debug mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"Disable Shorts on startup","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"Disable ads","description":"Disables ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["DisablePiracyDetectionPatch"],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]}]},{"name":"Disable auto captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable fullscreen panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable login requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Disable player popup panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable screenshot popup","description":"Disables the popup that shows up when taking a screenshot.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Disable switching emoji to sticker in message input field","description":"Disables switching from emoji to sticker search mode in message input field","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Disable typing indicator","description":"Disables the indicator while typing a message","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Disable zoom haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Dynamic color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Enable android debugging","description":"Enables Android debugging capabilities.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Enable debugging","description":"Adds debugging options.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Enable on demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"Exclusive audio playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Export all activities","description":"Makes all app activities exportable.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"External downloads","description":"Adds support to download and save YouTube videos using an external app.","version":"0.0.1","excluded":false,"options":[],"dependencies":["External downloads resource patch","Player controls bytecode patch","Video information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Feed filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Fix google login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Hdr auto brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide Shorts components","description":"Hides components from YouTube Shorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","LithoFilterPatch","HideShortsComponentsResourcePatch","Resource mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide ads","description":"Removes ads from Inshorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.nis.app","versions":[]}]},{"name":"Hide ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Hide ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"jp.pxv.android","versions":[]}]},{"name":"Hide ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["VerticalScrollPatch"],"compatiblePackages":[{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"Hide ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Json hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Hide ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Hide get premium","HideAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide ads","description":"Removes ads from the Reddit.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Hide subreddit banner","Hide comment ads"],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Hide album cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Hide album cards resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide autoplay button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","Resource mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide breaking news shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Breaking news shelf resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide captions button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide cast button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Hide crowdfunding box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Crowdfunding box resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide email address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Hide email address resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide endscreen cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Hide endscreen cards resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide filter bar","description":"Hides the filter bar in video feeds.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFilterBarResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide floating microphone button","description":"Hides the floating microphone button which appears in search.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFloatingMicrophoneButtonResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide get premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Hide inbox ads","description":"Hides ads in inbox.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Hide info cards","description":"Hides info cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide layout components","description":"Hides general layout components.","version":"0.0.1","excluded":false,"options":[],"dependencies":["LithoFilterPatch","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide load more button","description":"Hides the button under videos that loads similar videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Hide load more button resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide player buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide player overlay","description":"Hides the dark background overlay from the player when player controls are visible.","version":"0.0.2","excluded":false,"options":[],"dependencies":["HidePlayerOverlayResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Hide premium navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Resource mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"Hide recommended users","description":"Hides recommended users.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Json hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Hide seekbar","description":"Hides the seekbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","SeekbarColorBytecodePatch","SeekbarPreferencesPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide timeline ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":["275.0.0.27.98"]}]},{"name":"Hide timestamp","description":"Hides timestamp in video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide video action buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Resource mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide views stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0","9.71.0-release.0"]}]},{"name":"Hide watch in VR","description":"Hides the option to watch in VR from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Minimized playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Player type hook","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Minimized playback music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Music video ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Navigation buttons","description":"Adds options to hide or change navigation buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Old video quality menu","description":"Shows the old video quality with the advanced video quality options instead of the new one.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","OldVideoQualityMenuResourcePatch","LithoFilterPatch","BottomSheetHookPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35"]}]},{"name":"Open links externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Playback speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Predictive back gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Premium heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Premium icon reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Pro unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}]},{"name":"Promo code unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Spoof cert patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"Remember video quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video information","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.19.35","18.20.39","18.23.35"]}]},{"name":"Remove ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"Remove badge tab","description":"Removes the badge tab from the activity tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":[]}]},{"name":"Remove bootloader detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":[]}]},{"name":"Remove broadcasts restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"Remove debugging detection","description":"Removes the USB and wireless debugging checks.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.scb.phone","versions":[]}]},{"name":"Remove device restrictions","description":"Removes restrictions from using the app on any device.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.recorder","versions":[]}]},{"name":"Remove notification badge","description":"Removes the red notification badge from the activity tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":[]}]},{"name":"Remove player controls background","description":"Removes the background from the video player controls.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Remove root detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":[]}]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"Remove screen capture restriction","description":"Removes the restriction of capturing audio from apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Remove screen capture restriction resource patch"],"compatiblePackages":[]},{"name":"Remove screenshot restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Return youtube dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video id hook","Return youtube dislike resource patch","Player type hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Sanitize sharing links","description":"Removes (tracking) query parameters from the URLs when sharing links.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Seekbar tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","EnableSeekbarTappingResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings resource patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"Show deleted messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Show seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Sim spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"SponsorBlock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video id hook","Video information","Player type hook","Player controls bytecode patch","SponsorBlock resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Spoof app version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Spoof signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"Spoof wifi connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Spotify theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"Swipe controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["Integrations","Player type hook","Swipe controls resource patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Tablet mini player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["Litho color hook","SeekbarColorBytecodePatch","ThemeResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Unlock paid widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"Unlock plus","description":"Unlocks plus features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureDetectionPatch"],"compatiblePackages":[{"name":"com.microblink.photomath","versions":["8.20.0"]}]},{"name":"Unlock premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"Unlock prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"Unlock pro","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.candylink.openvpn","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.wakdev.apps.nfctools.se","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"tv.trakt.trakt","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureVerificationPatch","LicenseValidationPatch"],"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}]},{"name":"Unlock pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.vsco.cam","versions":[]}]},{"name":"Unlock themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"Unlock trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"Upgrade button remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Vanced MicroG support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Vanced MicroG resource patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Vanced MicroG support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Vanced MicroG resource patch","Hide cast button","Client spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Video ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Video speed","description":"Adds custom video speeds and ability to remember the playback speed you chose in the video playback speed flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Custom video speed","Remember playback speed"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35"]}]},{"name":"Wide searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]}]
\ No newline at end of file
+[{"name":"Always autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Auto claim channel points","description":"Automatically claim Channel Points.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Background play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Block audio ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Block embedded ads","description":"Blocks embedded stream ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Block video ads","Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Block video ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Bypass certificate checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"dbrady://relay\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"free.reddit.news","versions":[]},{"name":"reddit.news","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://rubenmayayo.com\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.rubenmayayo.reddit","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"redditisfun://auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.andrewshu.android.reddit","versions":[]},{"name":"com.andrewshu.android.redditdonation","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://baconreader.com/auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.onelouder.baconreader","versions":[]},{"name":"com.onelouder.baconreader.premium","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://www.ccrama.me\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"me.ccrama.redditslide","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"infinity://localhost\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"ml.docilealligator.infinityforreddit","versions":[]}]},{"name":"Change OAuth client id","description":"Changes the OAuth client ID. The OAuth application type has to be \"Installed app\" and the redirect URI has to be set to \"http://redditsync/auth\".","version":"0.0.0","excluded":false,"options":[{"key":"client-id","title":"OAuth client ID","description":"The Reddit OAuth client ID.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]},{"name":"com.laurencedawson.reddit_sync.pro","versions":[]},{"name":"com.laurencedawson.reddit_sync.dev","versions":[]}]},{"name":"Change package name","description":"Changes the package name.","version":"0.0.1","excluded":true,"options":[{"key":"packageName","title":"Package name","description":"The name of the package to rename of the app.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"Client spoof","description":"Spoofs a patched client to allow playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Spoof signature verification"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Codecs unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Compact header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Copy video url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["CopyVideoUrlResourcePatch","Player controls bytecode patch","Video information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Custom branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Debug mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"Disable Shorts on startup","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"Disable ads","description":"Disables ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["DisablePiracyDetectionPatch"],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]}]},{"name":"Disable auto captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable fullscreen panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable login requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Disable player popup panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Disable screenshot popup","description":"Disables the popup that shows up when taking a screenshot.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Disable switching emoji to sticker in message input field","description":"Disables switching from emoji to sticker search mode in message input field","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Disable typing indicator","description":"Disables the indicator while typing a message","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Disable zoom haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Dynamic color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Enable android debugging","description":"Enables Android debugging capabilities.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Enable debugging","description":"Adds debugging options.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Enable on demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"Exclusive audio playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Export all activities","description":"Makes all app activities exportable.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"External downloads","description":"Adds support to download and save YouTube videos using an external app.","version":"0.0.1","excluded":false,"options":[],"dependencies":["ExternalDownloadsResourcePatch","Player controls bytecode patch","Video information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Feed filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Fix google login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"HDR auto brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide Shorts components","description":"Hides components from YouTube Shorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","LithoFilterPatch","HideShortsComponentsResourcePatch","ResourceMappingPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide ads","description":"Removes ads from Inshorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.nis.app","versions":[]}]},{"name":"Hide ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Hide ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"jp.pxv.android","versions":[]}]},{"name":"Hide ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["VerticalScrollPatch"],"compatiblePackages":[{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"Hide ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Json hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Hide ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Hide get premium","HideAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide ads","description":"Removes ads from the Reddit.","version":"0.0.2","excluded":false,"options":[],"dependencies":["Hide subreddit banner","Hide comment ads"],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Hide album cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","AlbumCardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide autoplay button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","ResourceMappingPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide breaking news shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","BreakingNewsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide captions button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide cast button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Hide crowdfunding box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","CrowdfundingBoxResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide email address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","HideEmailAddressResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide endscreen cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","HideEndscreenCardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide filter bar","description":"Hides the filter bar in video feeds.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFilterBarResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide floating microphone button","description":"Hides the floating microphone button which appears in search.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFloatingMicrophoneButtonResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide get premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Hide inbox ads","description":"Hides ads in inbox.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"Hide info cards","description":"Hides info cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide layout components","description":"Hides general layout components.","version":"0.0.1","excluded":false,"options":[],"dependencies":["LithoFilterPatch","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide load more button","description":"Hides the button under videos that loads similar videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideLoadMoreButtonResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide player buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide player overlay","description":"Hides the dark background overlay from the player when player controls are visible.","version":"0.0.2","excluded":false,"options":[],"dependencies":["HidePlayerOverlayResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Hide premium navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["ResourceMappingPatch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"Hide recommended users","description":"Hides recommended users.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Json hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"Hide seekbar","description":"Hides the seekbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","SeekbarColorBytecodePatch","SeekbarPreferencesPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide timeline ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":["275.0.0.27.98"]}]},{"name":"Hide timestamp","description":"Hides timestamp in video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide video action buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["ResourceMappingPatch","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide views stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0","9.71.0-release.0"]}]},{"name":"Hide watch in VR","description":"Hides the option to watch in VR from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Hide watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Minimized playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Player type hook","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Minimized playback music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Music video ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Navigation buttons","description":"Adds options to hide or change navigation buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Old video quality menu","description":"Shows the old video quality with the advanced video quality options instead of the new one.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","OldVideoQualityMenuResourcePatch","LithoFilterPatch","BottomSheetHookPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35"]}]},{"name":"Open links externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Playback speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Predictive back gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Premium heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Premium icon reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Pro unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}]},{"name":"Promo code unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Spoof cert patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"Remember video quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video information","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.19.35","18.20.39","18.23.35"]}]},{"name":"Remove ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"Remove badge tab","description":"Removes the badge tab from the activity tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":[]}]},{"name":"Remove bootloader detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":[]}]},{"name":"Remove broadcasts restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"Remove debugging detection","description":"Removes the USB and wireless debugging checks.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.scb.phone","versions":[]}]},{"name":"Remove device restrictions","description":"Removes restrictions from using the app on any device.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.recorder","versions":[]}]},{"name":"Remove notification badge","description":"Removes the red notification badge from the activity tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":[]}]},{"name":"Remove player controls background","description":"Removes the background from the video player controls.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Remove root detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":[]}]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"Remove screen capture restriction","description":"Removes the restriction of capturing audio from apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":["RemoveCaptureRestrictionResourcePatch"],"compatiblePackages":[]},{"name":"Remove screenshot restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Return YouTube Dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video id hook","ReturnYouTubeDislikeResourcePatch","Player type hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Sanitize sharing links","description":"Removes (tracking) query parameters from the URLs when sharing links.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"Seekbar tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","EnableSeekbarTappingResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","SettingsResourcePatch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"Show deleted messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1"]}]},{"name":"Show seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"Sim spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"SponsorBlock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Video id hook","Video information","Player type hook","Player controls bytecode patch","SponsorBlockResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Spoof app version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Spoof signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"Spoof wifi connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"Spotify theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"Swipe controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["Integrations","Player type hook","SwipeControlsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Tablet mini player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["Litho color hook","SeekbarColorBytecodePatch","ThemeResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"Unlock paid widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"Unlock plus","description":"Unlocks plus features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureDetectionPatch"],"compatiblePackages":[{"name":"com.microblink.photomath","versions":["8.20.0"]}]},{"name":"Unlock premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"Unlock prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"Unlock pro","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.candylink.openvpn","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.wakdev.apps.nfctools.se","versions":[]}]},{"name":"Unlock pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"tv.trakt.trakt","versions":[]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureVerificationPatch","LicenseValidationPatch"],"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}]},{"name":"Unlock pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}]},{"name":"Unlock pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.vsco.cam","versions":[]}]},{"name":"Unlock themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"Unlock trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"Upgrade button remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Vanced MicroG support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["MicroGResourcePatch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"Vanced MicroG support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["MicroGResourcePatch","Hide cast button","Client spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Video ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]},{"name":"Video speed","description":"Adds custom video speeds and ability to remember the playback speed you chose in the video playback speed flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Custom video speed","Remember playback speed"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35"]}]},{"name":"Wide searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["Integrations","Settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35"]}]}]
\ No newline at end of file
|
chore
|
2.184.0-dev.1 [skip ci]
|
41b4eef72ccb6f9450dbc0ac1b6d8df917244669
|
2023-05-30 19:56:53
|
semantic-release-bot
|
chore(release): 2.175.0-dev.15 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0914a0c38f..5860bdadfa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.175.0-dev.15](https://github.com/revanced/revanced-patches/compare/v2.175.0-dev.14...v2.175.0-dev.15) (2023-05-30)
+
+
+### Bug Fixes
+
+* **youtube/remember-video-quality:** fix typo in video resolutions ([#2323](https://github.com/revanced/revanced-patches/issues/2323)) ([a99cef8](https://github.com/revanced/revanced-patches/commit/a99cef87b40b67a5feb97999fb4f2925ea80b42e))
+
# [2.175.0-dev.14](https://github.com/revanced/revanced-patches/compare/v2.175.0-dev.13...v2.175.0-dev.14) (2023-05-30)
diff --git a/gradle.properties b/gradle.properties
index 466fb1052e..30ac4bfe2d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.175.0-dev.14
+version = 2.175.0-dev.15
|
chore
|
2.175.0-dev.15 [skip ci]
|
e48f1278da2a9d82e70be41fa2c4c480c574816b
|
2023-05-07 19:41:52
|
Tim Schneeberger
|
fix(spotify/disable-capture-restriction): make compatible with latest versions (#2095)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/spotify/audio/bytecode/patch/DisableCaptureRestrictionBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/spotify/audio/bytecode/patch/DisableCaptureRestrictionBytecodePatch.kt
index c2ba196ab8..cc656d112e 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/audio/bytecode/patch/DisableCaptureRestrictionBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/audio/bytecode/patch/DisableCaptureRestrictionBytecodePatch.kt
@@ -8,18 +8,13 @@ import app.revanced.patcher.extensions.instruction
import app.revanced.patcher.extensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.spotify.audio.annotation.DisableCaptureRestrictionCompatibility
import app.revanced.patches.spotify.audio.fingerprints.DisableCaptureRestrictionAudioDriverFingerprint
import app.revanced.patches.spotify.audio.resource.patch.DisableCaptureRestrictionResourcePatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
@Patch
@Name("disable-capture-restriction")
@@ -35,51 +30,16 @@ class DisableCaptureRestrictionBytecodePatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
val method = DisableCaptureRestrictionAudioDriverFingerprint.result!!.mutableMethod
- var invokePosition: Int? = null
- var invokeParamRegister: Int? = null
-
- // Find INVOKE_VIRTUAL opcode with call to AudioAttributesBuilder.setAllowedCapturePolicy(I)
- for ((index, instruction) in method.implementation!!.instructions.withIndex()) {
- if(instruction.opcode != Opcode.INVOKE_VIRTUAL)
- continue
-
- val methodName = ((instruction as ReferenceInstruction).reference as MethodReference).name
- if (methodName != "setAllowedCapturePolicy")
- continue
-
- // Store register of the integer parameter for setAllowedCapturePolicy
- invokeParamRegister = (instruction as FiveRegisterInstruction).registerD
- invokePosition = index
-
- break
- }
-
- if(invokePosition == null || invokeParamRegister == null)
- return PatchResultError("Cannot find setAllowedCapturePolicy method call")
-
- // Walk back to the const/4 instruction that sets the parameter register
- var matchFound = false
- for (index in invokePosition downTo 0) {
- val instruction = method.instruction(index)
- if(instruction.opcode != Opcode.CONST_4)
- continue
-
- val register = (instruction as OneRegisterInstruction).registerA
- if(register != invokeParamRegister)
- continue
-
- // Replace parameter value
- method.replaceInstruction(
- index, "const/4 v$register, $ALLOW_CAPTURE_BY_ALL"
+ method.apply {
+ // Replace constant
+ val original = instruction(0) as OneRegisterInstruction
+ replaceInstruction(
+ 0,
+ "const/4 v${original.registerA}, $ALLOW_CAPTURE_BY_ALL"
)
- matchFound = true
- break
}
- return if (matchFound)
- PatchResultSuccess()
- else
- PatchResultError("Const instruction not found")
+ return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/spotify/audio/fingerprints/DisableCaptureRestrictionAudioDriverFingerprint.kt b/src/main/kotlin/app/revanced/patches/spotify/audio/fingerprints/DisableCaptureRestrictionAudioDriverFingerprint.kt
index 1917555186..8698103170 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/audio/fingerprints/DisableCaptureRestrictionAudioDriverFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/audio/fingerprints/DisableCaptureRestrictionAudioDriverFingerprint.kt
@@ -1,10 +1,27 @@
package app.revanced.patches.spotify.audio.fingerprints
+import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import org.jf.dexlib2.iface.reference.MethodReference
object DisableCaptureRestrictionAudioDriverFingerprint : MethodFingerprint(
+ "L",
+ AccessFlags.PUBLIC or AccessFlags.STATIC or AccessFlags.SYNTHETIC or AccessFlags.BRIDGE,
+ listOf("L"),
+ listOf(
+ Opcode.CONST_4,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.RETURN_OBJECT
+ ),
customFingerprint = { methodDef ->
- methodDef.definingClass == "Lcom/spotify/playback/playbacknative/AudioDriver;" && methodDef.name == "constructAudioAttributes"
+ // Check for method call to AudioAttributes$Builder.setAllowedCapturePolicy Android API
+ methodDef.implementation?.instructions?.any {
+ ((it as? ReferenceInstruction)?.reference as? MethodReference)?.name == "setAllowedCapturePolicy"
+ } == true
}
)
\ No newline at end of file
|
fix
|
make compatible with latest versions (#2095)
|
d235beae88bad59c5312d1adfbcb3de47082550a
|
2024-12-23 06:23:27
|
github-actions[bot]
|
chore: Sync translations (#4198)
| false
|
diff --git a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
index c987ecee70..37baccc626 100644
--- a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
+++ b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
@@ -1328,8 +1328,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polish</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portuguese (Brazil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portuguese (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Romanian</string>
<string name="revanced_spoof_video_streams_language_RU">Russian</string>
<string name="revanced_spoof_video_streams_language_SK">Slovak</string>
diff --git a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
index 31c426d68a..db6d900b48 100644
--- a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
@@ -25,12 +25,12 @@ Second \"item\" text"</string>
<string name="revanced_check_environment_failed_title">Yoxlamalar uğursuz oldu</string>
<string name="revanced_check_environment_dialog_open_official_source_button">Xidməti veb saytı aç</string>
<string name="revanced_check_environment_dialog_ignore_button">Məhəl qoyma</string>
- <string name="revanced_check_environment_failed_message"><h5>Bu tətbiq sizin tərəfinizdən yamaqlanmayıb.</h5><br>Bu tətbiq düzgün işləməyə bilər, <b>istifadə etmək zərərli və ya hətta təhlükəli ola bilər</b>.<br><br>Bu yoxlamalar bu tətbiqin əvvəldən yamaqlandığını və ya başqasından əldə edildiyini göstərir:<br><br><small>%1$s</small><br> <br>onu silməyiniz və özünüz yamaqlamağınız tövsiyə olunur. </b>təsdiqlənmiş və təhlükəsiz tətbiq istifadə etdiyinizə əmin olmaq üçün. <p><br> İnkar edilməzsə, bu xəbərdarlıq yalnız iki dəfə göstəriləcək.</string>
+ <string name="revanced_check_environment_failed_message"><h5>Bu tətbiq sizin tərəfinizdən yamaqlanmayıb.</h5><br>Bu tətbiq düzgün işləməyə bilər, <b>istifadə etmək zərərli və ya hətta təhlükəli ola bilər</b>.<br><br>Bu yoxlamalar bu tətbiqin əvvəl yamaqlandığını və ya başqasından əldə edildiyini bildirir:<br><br><small>%1$s</small><br> <br>onu silməyiniz və özünüz yamaqlamağınız tövsiyə olunur. </b>təsdiqlənmiş və təhlükəsiz tətbiq istifadə etdiyinizə əmin olmaq üçün. <p><br> Ləğv edilməzsə, bu xəbərdarlıq yalnız iki dəfə göstəriləcək.</string>
<string name="revanced_check_environment_not_same_patching_device">Fərqli cihazda yamaqlanıb</string>
<string name="revanced_check_environment_manager_not_expected_installer">ReVanced Manager tərəfindən quraşdırılmayıb</string>
<string name="revanced_check_environment_not_near_patch_time">10 dəqiqədən çox əvvəl yamaqlanıb</string>
<string name="revanced_check_environment_not_near_patch_time_days">%s gün əvvəl yamaqlanıb</string>
- <string name="revanced_check_environment_not_near_patch_time_invalid">APK quruluş tarixi pozulub</string>
+ <string name="revanced_check_environment_not_near_patch_time_invalid">APK qurulma vaxtı pozulub</string>
</patch>
<patch id="misc.settings.settingsResourcePatch">
<string name="revanced_settings_title">\"ReVanced\"</string>
@@ -57,17 +57,17 @@ Second \"item\" text"</string>
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
<string name="gms_core_toast_not_installed_message">MicroG GmsCore quraşdırılmayıb. Bunu quraşdır.</string>
<string name="gms_core_dialog_title">Fəaliyyət lazımdır</string>
- <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">"MicroG GmsCore-un arxaplanda işləməsi üçün icazəsi yoxdur.
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">"MicroG GmsCore-un arxa planda işləməsi üçün icazəsi yoxdur.
-Telefonunuz üçün \"Tətbiqimi öldürmə\" bələdçisinə əməl edin və təlimatları MicroG quraşdırmanıza tətbiq edin.
+Telefonunuz üçün \"Tətbiqimi dayandırma\" bələdçisinə əməl edin və təlimatları MicroG quraşdırmanıza tətbiq edin.
Bu, tətbiqin işləməsi üçün tələb olunur."</string>
<string name="gms_core_dialog_open_website_text">Veb saytı aç</string>
- <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">"Problemsiz işləməsi üçün MicroG GmsCore batareya optimallaşdırmaları sıradan çıxarılmalıdır.
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">"Problemlərin olmaması üçün MicroG GmsCore batareya optimallaşması qapadılmalıdır.
-MicroG üçün batareya optimallaşdırmasını sıradan çıxartmaq, batareya istifadəsinə mənfi təsir etməyəcək.
+MicroG üçün batareya optimallaşmasın qapatma batareya istifadəsinə mənfi təsir etməyəcək.
-Davam düyməsinə toxunun və optimallaşdırma dəyişikliklərinə icazə verin."</string>
+Davam et düyməsinə toxun və optimallaşdırma dəyişikliklərin qəbul et."</string>
<string name="gms_core_dialog_continue_text">Davam et</string>
</patch>
</app>
@@ -82,10 +82,10 @@ Davam düyməsinə toxunun və optimallaşdırma dəyişikliklərinə icazə ver
<string name="revanced_settings_screen_07_seekbar_title">Axtarış çubuğu</string>
<string name="revanced_settings_screen_08_swipe_controls_title">Sürüşdürmə nəzarətçiləri</string>
<string name="revanced_settings_screen_11_misc_title">Müxtəlif</string>
- <string name="revanced_settings_screen_12_video_title">\"Video\"</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
</patch>
<patch id="misc.backgroundplayback.backgroundPlaybackPatch">
- <string name="revanced_shorts_disable_background_playback_title">Shorts arxa plan oynatmasın bağla</string>
+ <string name="revanced_shorts_disable_background_playback_title">Shorts arxa plan oynatmasın qapat</string>
<string name="revanced_shorts_disable_background_playback_summary_on">Shorts arxa plan oynatma qapalıdır</string>
<string name="revanced_shorts_disable_background_playback_summary_off">Shorts arxa plan oynatma aktivdir</string>
</patch>
@@ -104,9 +104,9 @@ Davam düyməsinə toxunun və optimallaşdırma dəyişikliklərinə icazə ver
<string name="revanced_debug_toast_on_error_title">ReVanced xətasında ani bildiriş göstər</string>
<string name="revanced_debug_toast_on_error_summary_on">Xəta baş verərsə bildiriş göstər</string>
<string name="revanced_debug_toast_on_error_summary_off">Xəta baş verərsə bildiriş göstərmə</string>
- <string name="revanced_debug_toast_on_error_user_dialog_message">"Xəta bildirişlərini söndürmək, bütün ReVanced xəta bildirişlərini gizlədir.
+ <string name="revanced_debug_toast_on_error_user_dialog_message">"Xəta ani bildirişlərin qapatmaq, bütün ReVanced xəta bildirişlərin gizlədir.
-Gözlənilməz tədbirlər barədə bildiriş almayacaqsınız."</string>
+Gözlənilməz hallardan xəbərdar olmayacaqsınız."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_disable_like_subscribe_glow_title">Bəyən/abunə ol düymə parıltısın söndür</string>
@@ -125,12 +125,12 @@ Gözlənilməz tədbirlər barədə bildiriş almayacaqsınız."</string>
<string name="revanced_hide_channel_watermark_summary_on">Su nişanı gizlidir</string>
<string name="revanced_hide_channel_watermark_summary_off">Su nişanı göstərilir</string>
<string name="revanced_hide_horizontal_shelves_title">Üfüqi hissələri gizlət</string>
- <string name="revanced_hide_horizontal_shelves_summary_on">"Rəflər gizlidir, məsələn:
+ <string name="revanced_hide_horizontal_shelves_summary_on">"Hissələr gizlidir, nümunə:
• Son xəbərlər
• İzləməyə davam et
-• Daha çox kanallar kəşf edin
+• Daha çox kanallar kəşf et
• Alış-veriş
-• Yenidən izlə"</string>
+• Təkrar izlə"</string>
<string name="revanced_hide_horizontal_shelves_summary_off">Hissələr göstərilir</string>
<!-- 'Join' should be translated using the same localized wording YouTube displays.
This appears in the video player for certain videos. -->
@@ -204,8 +204,8 @@ Gözlənilməz tədbirlər barədə bildiriş almayacaqsınız."</string>
<string name="revanced_hide_playables_summary_on">Oynadılanlar gizlidir</string>
<string name="revanced_hide_playables_summary_off">Oynadılanlar göstərilir</string>
<string name="revanced_hide_quick_actions_title">Tam ekranda cəld fəaliyyətləri gizlət</string>
- <string name="revanced_hide_quick_actions_summary_on">Sürətli fəaliyyətlər gizlədilir</string>
- <string name="revanced_hide_quick_actions_summary_off">Sürətli fəaliyyətlər göstərilir</string>
+ <string name="revanced_hide_quick_actions_summary_on">Cəld fəaliyyətlər gizlədilir</string>
+ <string name="revanced_hide_quick_actions_summary_off">Cəld fəaliyyətlər göstərilir</string>
<string name="revanced_hide_related_videos_title">Cəld fəaliyyətlərdə əlaqəli videoları gizlə</string>
<string name="revanced_hide_related_videos_summary_on">Əlaqədar videolar gizlədilib</string>
<string name="revanced_hide_related_videos_summary_off">Əlaqədar videolar göstərilir</string>
@@ -279,11 +279,11 @@ Gözlənilməz tədbirlər barədə bildiriş almayacaqsınız."</string>
<string name="revanced_hide_doodles_title">YouTube Doodle-ları gizlət</string>
<string name="revanced_hide_doodles_summary_on">Axtarış çubuğu Doodle-ları gizlidir</string>
<string name="revanced_hide_doodles_summary_off">Axtarış çubuğu Doodle-ları göstərilir</string>
- <string name="revanced_hide_doodles_user_dialog_message">"YouTube Doodles ilinin bir neçə günü göstərilir.
+ <string name="revanced_hide_doodles_user_dialog_message">"YouTube Doodle-ları hər il bir neçə gün görünür.
-Əgər Doodle hazırda sizin bölgənizdə göstərilirsə və bu gizlətmə parametr açıqdırsa, axtarış çubuğunun altındakı filtr çubuğu da gizlənəcək."</string>
+Əgər hazırda bölgənizdə Doodle göstərilirsə və bu gizlətmə seçimi aktivdirsə, axtarış cizgisi aşağısındakı filtr sahəsi də gizlədiləcək."</string>
<string name="revanced_custom_filter_screen_title">Şəxsi filtr</string>
- <string name="revanced_custom_filter_screen_summary">Fərdi filtrlər ilə elementləri gizlət</string>
+ <string name="revanced_custom_filter_screen_summary">Fərdi filtrlər işlədərək elementləri gizlət</string>
<string name="revanced_custom_filter_title">Fərdi filtri aktivləşdir</string>
<string name="revanced_custom_filter_summary_on">Fərdi filtr aktivdir</string>
<string name="revanced_custom_filter_summary_off">Fərdi filtr qeyri-aktivdir</string>
@@ -305,18 +305,18 @@ Gözlənilməz tədbirlər barədə bildiriş almayacaqsınız."</string>
<string name="revanced_hide_keyword_content_phrases_title">Gizlədiləcək açar sözlər</string>
<!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
- <string name="revanced_hide_keyword_content_phrases_summary">"Kənarda qoyulacaq açar sözlər və cümlələr, yeni sətirlərlə ayrılmışdır
+ <string name="revanced_hide_keyword_content_phrases_summary">"Yeni sətirlərlə ayrılan, gizlədiləcək açar sözlər və ifadələr
-Açar sözlər kanal adları və ya video başlıqlarında göstərilən hər hansı mətn ola bilər.
+Açar sözlər kanal adları və ya video adlarında göstərilən istənilən mətn ola bilər.
-Orta hərfləri böyük hərflərlə olan sözlər böyük hərflərlə yazılmalıdır (məsələn: iPhone, TikTok, LeBlanc)"</string>
+Ortada böyük hərflli sözlər belə yerləşdirilməlidir (yəni: iPhone, TikTok, LeBlanc)"</string>
<string name="revanced_hide_keyword_content_about_title">Açar söz filtrləməsi haqqında</string>
- <string name="revanced_hide_keyword_content_about_summary">"Ana səhifə/Abunəlik/Axtarış nəticələri açar söz ifadələrinə uyğun olan məzmunu gizlətmək üçün süzülür
+ <string name="revanced_hide_keyword_content_about_summary">"Ev/Abunəlik/Axtarış nəticələri açar söz ifadələrinə uyğun olan məzmunu gizlətmək üçün çeşidlənir
Məhdudiyyətlər
-• Şortlar kanal adı ilə gizlənə bilməz
-• Bəzi UI komponentləri gizlənə bilməz
-• Açar söz axtarmaq heç bir nəticə verməyə bilər"</string>
+• Shorts-lar kanal adı ilə gizlənə bilməz
+• Bəzi UI hissəcikləri gizlənə bilməz
+• Açar söz axtarma nəticə verməyə bilər"</string>
<string name="revanced_hide_keyword_content_about_whole_words_title">Bütün sözləri uyğunlaşdır</string>
<!-- Translations _must_ use a localized example. For languages that do not use spaces between words (Chinese, Japanese, etc) the English AI example should be used since no localized examples exist. Or if using machine translations, or if nobody wants to think of a localized example, then the English 'ai' example should be left as-is. -->
<string name="revanced_hide_keyword_content_about_whole_words_summary">Açar söz/frazanın qoşa dırnaqlarla əhatə olunması video adları və kanal adlarının qismən uyğunlaşmasına mane olacaq <br><br>Məsələn,<br><b>\"ai\"</b> videonu gizlədəcək:<b>How does AI work?</b><br> lakin gizlətməyəcək: Düzgün;<b>What does fair use mean?</b></string>
@@ -332,7 +332,7 @@ Məhdudiyyətlər
<string name="revanced_hide_general_ads_summary_on">Ümumi reklamlar gizlidir</string>
<string name="revanced_hide_general_ads_summary_off">Ümumi reklamlar göstərilir</string>
<string name="revanced_hide_fullscreen_ads_title">Tam ekran reklamlarını gizlət</string>
- <string name="revanced_hide_fullscreen_ads_summary_on">"Tam ekran reklam gizlidir
+ <string name="revanced_hide_fullscreen_ads_summary_on">"Tam ekran reklamları gizlidir
Bu xüsusiyyət yalnız köhnə cihazlar üçün mövcuddur"</string>
<string name="revanced_hide_fullscreen_ads_summary_off">Tam ekran reklamları göstərilir</string>
@@ -348,14 +348,14 @@ Bu xüsusiyyət yalnız köhnə cihazlar üçün mövcuddur"</string>
<string name="revanced_hide_products_banner_title">Məhsullara baxma etiketin gizlət</string>
<string name="revanced_hide_products_banner_summary_on">Etiket gizlədilib</string>
<string name="revanced_hide_products_banner_summary_off">Etiket göstərilir</string>
- <string name="revanced_hide_player_store_shelf_title">Oynadıcı alış-veriş rəfini gizlət</string>
+ <string name="revanced_hide_player_store_shelf_title">Oynadıcı alış-veriş bölməsin gizlət</string>
<string name="revanced_hide_player_store_shelf_summary_on">Alış-veriş rəfi gizlidir</string>
<string name="revanced_hide_player_store_shelf_summary_off">Alış-veriş rəfi göstərilir</string>
- <string name="revanced_hide_shopping_links_title">Video açıqlama alış-veriş linklər gizlə</string>
+ <string name="revanced_hide_shopping_links_title">Video açıqlamada alış-veriş linklərin gizlə</string>
<string name="revanced_hide_shopping_links_summary_on">Alış-veriş bağlantıları gizlədilir</string>
<string name="revanced_hide_shopping_links_summary_off">Alış-veriş bağlantıları göstərilir</string>
<!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
- <string name="revanced_hide_visit_store_button_title">Kanalda \"Mağaza ziyarət\" düymə gizlə</string>
+ <string name="revanced_hide_visit_store_button_title">Kanalda \"Mağazaya ziyarət\" düyməsin gizlə</string>
<string name="revanced_hide_visit_store_button_summary_on">Düymə gizlidir</string>
<string name="revanced_hide_visit_store_button_summary_off">Düymə göstərilir</string>
<string name="revanced_hide_web_search_results_title">Veb axtarış nəticələrini gizlət</string>
@@ -1329,8 +1329,6 @@ Video oynatma işləməyə bilər"</string>
<string name="revanced_spoof_video_streams_language_OR">Oriya dili</string>
<string name="revanced_spoof_video_streams_language_PA">Pəncabca</string>
<string name="revanced_spoof_video_streams_language_PL">Polyak dili</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portuqalca (Braziliya)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portuqalca (Portəgiz)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumınca</string>
<string name="revanced_spoof_video_streams_language_RU">Rusca</string>
<string name="revanced_spoof_video_streams_language_SK">Slovak dili</string>
diff --git a/patches/src/main/resources/addresources/values-be-rBY/strings.xml b/patches/src/main/resources/addresources/values-be-rBY/strings.xml
index 8ab55f0333..c34ddd5063 100644
--- a/patches/src/main/resources/addresources/values-be-rBY/strings.xml
+++ b/patches/src/main/resources/addresources/values-be-rBY/strings.xml
@@ -1329,8 +1329,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Орія</string>
<string name="revanced_spoof_video_streams_language_PA">Панджабский</string>
<string name="revanced_spoof_video_streams_language_PL">Польская</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Партугальская (Бразілія)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Партугальская (Партугалія)</string>
<string name="revanced_spoof_video_streams_language_RO">Румынская</string>
<string name="revanced_spoof_video_streams_language_RU">Русская</string>
<string name="revanced_spoof_video_streams_language_SK">Словацкия</string>
diff --git a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
index 6efa21f9f7..f3bbaa64c2 100644
--- a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
+++ b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
@@ -1328,8 +1328,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Ория</string>
<string name="revanced_spoof_video_streams_language_PA">Пенджабски</string>
<string name="revanced_spoof_video_streams_language_PL">Полски</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Португалски (Бразилия)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Португалски (Португалия)</string>
<string name="revanced_spoof_video_streams_language_RO">Румънски</string>
<string name="revanced_spoof_video_streams_language_RU">Руски</string>
<string name="revanced_spoof_video_streams_language_SK">Словашки</string>
diff --git a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
index 2988d6956e..1189ceda74 100644
--- a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
+++ b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
@@ -1330,8 +1330,6 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
<string name="revanced_spoof_video_streams_language_OR">ওড়িয়া</string>
<string name="revanced_spoof_video_streams_language_PA">পঞ্জাবি</string>
<string name="revanced_spoof_video_streams_language_PL">পোলিশ</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">পর্তুগিজ (ব্রাজিল)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">পর্তুগিজ (পর্তুগাল)</string>
<string name="revanced_spoof_video_streams_language_RO">রোমানীয়</string>
<string name="revanced_spoof_video_streams_language_RU">রাশিয়ান</string>
<string name="revanced_spoof_video_streams_language_SK">স্লোভাক</string>
diff --git a/patches/src/main/resources/addresources/values-ca-rES/strings.xml b/patches/src/main/resources/addresources/values-ca-rES/strings.xml
index be950af5bb..8e1255a3cd 100644
--- a/patches/src/main/resources/addresources/values-ca-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-ca-rES/strings.xml
@@ -1329,8 +1329,6 @@ La reproducció de vídeo pot no funcionar"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polonès</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portuguès (Brasil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portuguès (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Romanès</string>
<string name="revanced_spoof_video_streams_language_RU">Rus</string>
<string name="revanced_spoof_video_streams_language_SK">Eslovac</string>
diff --git a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
index 8c8752acbc..dd0f8fcd76 100644
--- a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
@@ -1328,8 +1328,6 @@ Přehrávání videa nemusí fungovat"</string>
<string name="revanced_spoof_video_streams_language_OR">Odijština</string>
<string name="revanced_spoof_video_streams_language_PA">Paňdžábština</string>
<string name="revanced_spoof_video_streams_language_PL">Polština</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugalština (Brazílie)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugalština (Portugalsko)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumunština</string>
<string name="revanced_spoof_video_streams_language_RU">Ruština</string>
<string name="revanced_spoof_video_streams_language_SK">Slovenština</string>
diff --git a/patches/src/main/resources/addresources/values-da-rDK/strings.xml b/patches/src/main/resources/addresources/values-da-rDK/strings.xml
index e485b5ca20..a218ca853c 100644
--- a/patches/src/main/resources/addresources/values-da-rDK/strings.xml
+++ b/patches/src/main/resources/addresources/values-da-rDK/strings.xml
@@ -1325,8 +1325,6 @@ Videoafspilning virker muligvis ikke"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polsk</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugisisk (Brasilien)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugisisk (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumænsk</string>
<string name="revanced_spoof_video_streams_language_RU">Russisk</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakisk</string>
diff --git a/patches/src/main/resources/addresources/values-de-rDE/strings.xml b/patches/src/main/resources/addresources/values-de-rDE/strings.xml
index e9e9253f81..5131256246 100644
--- a/patches/src/main/resources/addresources/values-de-rDE/strings.xml
+++ b/patches/src/main/resources/addresources/values-de-rDE/strings.xml
@@ -1323,8 +1323,6 @@ Die Videowiedergabe funktioniert möglicherweise nicht"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Pandschabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polnisch</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugiesisch (Brasilien)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugiesisch (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumänisch</string>
<string name="revanced_spoof_video_streams_language_RU">Russisch</string>
<string name="revanced_spoof_video_streams_language_SK">Slowakisch</string>
diff --git a/patches/src/main/resources/addresources/values-el-rGR/strings.xml b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
index 0b280d03a1..e22b65694c 100644
--- a/patches/src/main/resources/addresources/values-el-rGR/strings.xml
+++ b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
@@ -1328,8 +1328,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Όντια</string>
<string name="revanced_spoof_video_streams_language_PA">Παντζάμπι</string>
<string name="revanced_spoof_video_streams_language_PL">Πολωνικά</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Πορτογαλικά (Βραζιλίας)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Πορτογαλικά (Πορτογαλίας)</string>
<string name="revanced_spoof_video_streams_language_RO">Ρουμανικά</string>
<string name="revanced_spoof_video_streams_language_RU">Ρωσικά</string>
<string name="revanced_spoof_video_streams_language_SK">Σλοβακικά</string>
diff --git a/patches/src/main/resources/addresources/values-es-rES/strings.xml b/patches/src/main/resources/addresources/values-es-rES/strings.xml
index 682f779825..b193f93776 100644
--- a/patches/src/main/resources/addresources/values-es-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-es-rES/strings.xml
@@ -1308,8 +1308,6 @@ Es posible que la reproducción de vídeo no funcione"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polaco</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugués (Brasil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugués (R)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumano</string>
<string name="revanced_spoof_video_streams_language_RU">Ruso</string>
<string name="revanced_spoof_video_streams_language_SK">Eslovaco</string>
diff --git a/patches/src/main/resources/addresources/values-et-rEE/strings.xml b/patches/src/main/resources/addresources/values-et-rEE/strings.xml
index 51eb688493..70f5bc2bf2 100644
--- a/patches/src/main/resources/addresources/values-et-rEE/strings.xml
+++ b/patches/src/main/resources/addresources/values-et-rEE/strings.xml
@@ -1330,8 +1330,6 @@ Video taasesitus ei pruugi toimida"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Pandžabi</string>
<string name="revanced_spoof_video_streams_language_PL">Poola</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugali (Brasiilia)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugali (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumeenia</string>
<string name="revanced_spoof_video_streams_language_RU">Vene</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakkia</string>
diff --git a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
index 9894d61444..78a874d246 100644
--- a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
+++ b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
@@ -1329,8 +1329,6 @@ Videon toisto ei välttämättä toimi"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Puola</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugali (Brasilia)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugali (Portugali)</string>
<string name="revanced_spoof_video_streams_language_RO">Romania</string>
<string name="revanced_spoof_video_streams_language_RU">Venäjä</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakki</string>
diff --git a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
index 78b1928d50..5fbd2a7833 100644
--- a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
+++ b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
@@ -1330,8 +1330,6 @@ Ang paglalaro ng video ay maaaring hindi gumana"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polish</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portuges (Brazil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portuges (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Romanian</string>
<string name="revanced_spoof_video_streams_language_RU">Ruso</string>
<string name="revanced_spoof_video_streams_language_SK">Slovak</string>
diff --git a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
index 9808f3b3c9..9221058d64 100644
--- a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
+++ b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
@@ -55,7 +55,7 @@ Second \"item\" text"</string>
</patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
- <string name="gms_core_toast_not_installed_message">MicroG GmsCore n\'est pas installé. Installer .</string>
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore n\'est pas installé. Veuillez l’installer.</string>
<string name="gms_core_dialog_title">Action requise</string>
<string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">"MicroG GmsCore n'a pas la permission de s'exécuter en arrière-plan.
@@ -1009,9 +1009,9 @@ Déjà existant"</string>
<string name="revanced_sb_about_api_sum">Les données sont fournies par l\'API SponsorBlock. Appuyez ici pour en savoir plus et voir les téléchargements pour d\'autres plates-formes</string>
</patch>
<patch id="layout.spoofappversion.spoofAppVersionPatch">
- <string name="revanced_spoof_app_version_title">Spoof version de l\'application</string>
- <string name="revanced_spoof_app_version_summary_on">Version falsifiée</string>
- <string name="revanced_spoof_app_version_summary_off">Version non falsifiée</string>
+ <string name="revanced_spoof_app_version_title">Usurpation de la version de l\'appli</string>
+ <string name="revanced_spoof_app_version_summary_on">Version usurpée</string>
+ <string name="revanced_spoof_app_version_summary_off">Version non usurpée</string>
<string name="revanced_spoof_app_version_user_dialog_message">"La version de l'application sera usurpée vers une ancienne version de YouTube.
Cela modifiera l'apparence et les fonctionnalités de l'application, mais des effets secondaires inconnus peuvent se produire.
@@ -1019,13 +1019,13 @@ Cela modifiera l'apparence et les fonctionnalités de l'application, mais des ef
Si cette option est désactivée par la suite, il est recommandé de vider les données de l'application pour éviter les bogues de l'interface utilisateur."</string>
<!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
- <string name="revanced_spoof_app_version_target_title">Falsifier la cible de version de l\'application</string>
- <string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restauration des anciennes icônes du lecteur de Shorts </string>
+ <string name="revanced_spoof_app_version_target_title">Cible pour usurper la version de l\'application</string>
+ <string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaure les anciennes icônes du lecteur de Shorts </string>
<!-- 'RYD' is 'Return YouTube Dislike' -->
- <string name="revanced_spoof_app_version_target_legacy_entry_1">Falsifier la cible de version de l\'application</string>
- <string name="revanced_spoof_app_version_target_legacy_entry_2">18.20.39 - Restaurer une grande vitesse vidéo & menu qualité</string>
- <string name="revanced_spoof_app_version_target_legacy_entry_3">Falsifier la cible de version de l\'application</string>
- <string name="revanced_spoof_app_version_target_legacy_entry_4">17.33.42 - Retour à l\'ancienne étagère de liste de lecture</string>
+ <string name="revanced_spoof_app_version_target_legacy_entry_1">18.33.40 - Restaure RYD en mode Shorts incognito</string>
+ <string name="revanced_spoof_app_version_target_legacy_entry_2">18.20.39 - Restaure le menu de vitesse & de qualité de la vidéo large</string>
+ <string name="revanced_spoof_app_version_target_legacy_entry_3">18.09.39 - Restaure l\'onglet bibliothèque</string>
+ <string name="revanced_spoof_app_version_target_legacy_entry_4">17.33.42 - Restaure l\'ancienne étagère de liste de lecture</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Définir la page de démarrage</string>
@@ -1196,18 +1196,18 @@ Appuyez ici pour en savoir plus sur DeArrow"</string>
<string name="revanced_auto_repeat_summary_off">La répétition automatique est désactivée</string>
</patch>
<patch id="misc.dimensions.spoof.spoofDeviceDimensionsPatch">
- <string name="revanced_spoof_device_dimensions_title">Falsifier les dimensions de l\'appareil</string>
+ <string name="revanced_spoof_device_dimensions_title">Usurper les dimensions de l\'appareil</string>
<string name="revanced_spoof_device_dimensions_summary_on">"Dimensions de l'appareil usurpées
-Des qualités vidéo plus élevées peuvent être déverrouillées, mais vous risquez de rencontrer des saccades de lecture vidéo, une autonomie réduite et des effets secondaires inconnus"</string>
+Des qualités vidéo plus élevées peuvent être déverrouillées, mais vous risquez de rencontrer des saccades durant la lecture de vidéos, une autonomie réduite et des effets secondaires inconnus"</string>
<string name="revanced_spoof_device_dimensions_summary_off">"Dimensions de l'appareil non usurpées
L'activation de cette option peut déverrouiller des qualités vidéo plus élevées"</string>
- <string name="revanced_spoof_device_dimensions_user_dialog_message">Activer cette option peut causer des problèmes de lecture vidéo, une dégradation de la durée de vie de la batterie et des effets secondaires inconnus.</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Activer cette option peut causer des saccades durant la lecture de vidéos, une dégradation de la durée de vie de la batterie et des effets secondaires inconnus.</string>
</patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch">
- <string name="microg_settings_title">GmsCore Seçenekleri</string>
- <string name="microg_settings_summary">GmsCore İçin Ayarlar</string>
+ <string name="microg_settings_title">Paramètres GmsCore</string>
+ <string name="microg_settings_summary">Paramètres de GmsCore</string>
</patch>
<patch id="misc.links.bypassURLRedirectsPatch">
<string name="revanced_bypass_url_redirects_title">URL yönlendirmelerini atla</string>
@@ -1279,16 +1279,16 @@ L'activation de cette option peut déverrouiller des qualités vidéo plus élev
<string name="revanced_slide_to_seek_summary_off">Glisser à chercher n\'est pas activé</string>
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
- <string name="revanced_spoof_video_streams_screen_title">Spoof Video Streams</string>
- <string name="revanced_spoof_video_streams_screen_summary">Falsifier les flux vidéo du client pour éviter les problèmes de lecture</string>
- <string name="revanced_spoof_video_streams_title">Falsifier les flux vidéo</string>
- <string name="revanced_spoof_video_streams_summary_on">Les flux vidéo sont falsifiés</string>
+ <string name="revanced_spoof_video_streams_screen_title">Usurpation des flux vidéos</string>
+ <string name="revanced_spoof_video_streams_screen_summary">Usurper les flux vidéo du client pour éviter les problèmes de lecture</string>
+ <string name="revanced_spoof_video_streams_title">Usurpation des flux vidéos</string>
+ <string name="revanced_spoof_video_streams_summary_on">Les flux vidéos sont usurpés</string>
<string name="revanced_spoof_video_streams_summary_off">"Les flux vidéo ne sont pas usurpés
La lecture vidéo peut ne pas fonctionner"</string>
<string name="revanced_spoof_video_streams_user_dialog_message">Désactiver ce paramètre peut causer des problèmes de lecture vidéo.</string>
<string name="revanced_spoof_video_streams_client_type_title">Client par défaut</string>
- <string name="revanced_spoof_video_streams_about_title">Effets inconnus de la falsification</string>
+ <string name="revanced_spoof_video_streams_about_title">Effets secondaires de l\'usurpation</string>
<string name="revanced_spoof_video_streams_about_summary">"• Le menu de la piste audio est manquant
• Le volume stable n'est pas disponible
• Forcer l'audio d'origine n'est pas disponible"</string>
@@ -1329,8 +1329,6 @@ La lecture vidéo peut ne pas fonctionner"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Pendjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polonais</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugais (Brésil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugais (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Roumain</string>
<string name="revanced_spoof_video_streams_language_RU">Russe</string>
<string name="revanced_spoof_video_streams_language_SK">Slovaque</string>
diff --git a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
index 3ee31a809e..53e536e4b8 100644
--- a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
+++ b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
@@ -1330,8 +1330,6 @@ D'fhéadfadh nach n-oibreoidh athsheinm físeáin"</string>
<string name="revanced_spoof_video_streams_language_OR">Odais</string>
<string name="revanced_spoof_video_streams_language_PA">Painseáibis</string>
<string name="revanced_spoof_video_streams_language_PL">Polainnis</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portaingéilis (Brasail)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portaingéilis (An Phortaingéal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rúmáinis</string>
<string name="revanced_spoof_video_streams_language_RU">Rúisis</string>
<string name="revanced_spoof_video_streams_language_SK">Slovaicis</string>
diff --git a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
index d9bdf1ebd6..4813728a48 100644
--- a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
+++ b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
@@ -1327,8 +1327,6 @@ A videólejátszás nem működhet"</string>
<string name="revanced_spoof_video_streams_language_OR">odia</string>
<string name="revanced_spoof_video_streams_language_PA">Pandzsábi</string>
<string name="revanced_spoof_video_streams_language_PL">Lengyel</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugál (Brazil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugál (Portugália)</string>
<string name="revanced_spoof_video_streams_language_RO">Román</string>
<string name="revanced_spoof_video_streams_language_RU">Orosz</string>
<string name="revanced_spoof_video_streams_language_SK">Szlovák</string>
diff --git a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
index 51d5a35e38..c2f705180a 100644
--- a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
+++ b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
@@ -1329,8 +1329,6 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_spoof_video_streams_language_OR">Օդիական</string>
<string name="revanced_spoof_video_streams_language_PA">Փենջաբերեն</string>
<string name="revanced_spoof_video_streams_language_PL">Լեհերեն</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Պորտուգալերեն (Բրազիլիա)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Պորտուգալերեն (Պորտուգալիա)</string>
<string name="revanced_spoof_video_streams_language_RO">Ռումիներեն</string>
<string name="revanced_spoof_video_streams_language_RU">Ռուսերեն</string>
<string name="revanced_spoof_video_streams_language_SK">Սլովակերեն</string>
diff --git a/patches/src/main/resources/addresources/values-in-rID/strings.xml b/patches/src/main/resources/addresources/values-in-rID/strings.xml
index b7c72e4d2c..4128b1bfbf 100644
--- a/patches/src/main/resources/addresources/values-in-rID/strings.xml
+++ b/patches/src/main/resources/addresources/values-in-rID/strings.xml
@@ -1327,8 +1327,6 @@ Playback video mungkin tidak berfungsi"</string>
<string name="revanced_spoof_video_streams_language_OR">Oriya</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polandia</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugis (Brasil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugis (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumania</string>
<string name="revanced_spoof_video_streams_language_RU">Rusia</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakia</string>
diff --git a/patches/src/main/resources/addresources/values-it-rIT/strings.xml b/patches/src/main/resources/addresources/values-it-rIT/strings.xml
index 8f5d0bc0a4..4dacb2ef14 100644
--- a/patches/src/main/resources/addresources/values-it-rIT/strings.xml
+++ b/patches/src/main/resources/addresources/values-it-rIT/strings.xml
@@ -1327,8 +1327,6 @@ La riproduzione video potrebbe non funzionare"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polacco</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portoghese (Brasile)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portoghese (Portogallo)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumeno</string>
<string name="revanced_spoof_video_streams_language_RU">Russo</string>
<string name="revanced_spoof_video_streams_language_SK">Slovacco</string>
diff --git a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
index 003a245190..dba0dbc4b4 100644
--- a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
+++ b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
@@ -1330,8 +1330,6 @@ DeArrowの詳細については、ここをタップしてください。"</stri
<string name="revanced_spoof_video_streams_language_OR">オリヤー語</string>
<string name="revanced_spoof_video_streams_language_PA">パンジャービー語</string>
<string name="revanced_spoof_video_streams_language_PL">ポーランド語</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">ポルトガル語 (ブラジル)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">ポルトガル語 (ポルトガル)</string>
<string name="revanced_spoof_video_streams_language_RO">ルーマニア語</string>
<string name="revanced_spoof_video_streams_language_RU">ロシア語</string>
<string name="revanced_spoof_video_streams_language_SK">スロバキア語</string>
diff --git a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
index 1f4a889e6d..4594c38bf8 100644
--- a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
+++ b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
@@ -1331,8 +1331,6 @@ DeArrow에 대해 자세히 알아보려면 여기를 누르세요"</string>
<string name="revanced_spoof_video_streams_language_OR">오리야어</string>
<string name="revanced_spoof_video_streams_language_PA">펀잡어</string>
<string name="revanced_spoof_video_streams_language_PL">폴란드어</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">포르투갈어 (브라질)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">포르투갈어 (포르투갈)</string>
<string name="revanced_spoof_video_streams_language_RO">루마니아어</string>
<string name="revanced_spoof_video_streams_language_RU">러시아어</string>
<string name="revanced_spoof_video_streams_language_SK">슬로바키아어</string>
diff --git a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
index 108380bf75..4edd39623d 100644
--- a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
+++ b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
@@ -1330,8 +1330,6 @@ Vaizdo įrašo atkūrimas gali neveikti"</string>
<string name="revanced_spoof_video_streams_language_OR">Odisų</string>
<string name="revanced_spoof_video_streams_language_PA">Pandžabų</string>
<string name="revanced_spoof_video_streams_language_PL">Lenkų</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugalų (Brazilija)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugalų (Portugalija)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumunų</string>
<string name="revanced_spoof_video_streams_language_RU">Rusų</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakų</string>
diff --git a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
index a484f1d9df..b184ff4ce7 100644
--- a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
+++ b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
@@ -1327,8 +1327,6 @@ Video atskaņošana var nedarboties"</string>
<string name="revanced_spoof_video_streams_language_OR">Odija</string>
<string name="revanced_spoof_video_streams_language_PA">Pendžabu</string>
<string name="revanced_spoof_video_streams_language_PL">Poļu</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugāļu (Brazīlija)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugāļu (Portugāle)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumāņu</string>
<string name="revanced_spoof_video_streams_language_RU">Krievu</string>
<string name="revanced_spoof_video_streams_language_SK">Slovāku</string>
diff --git a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
index ab8c31d286..f5a65fff3d 100644
--- a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
+++ b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
@@ -1329,8 +1329,6 @@ Video-playback werkt mogelijk niet"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Pools</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugees (Brazilië)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugees (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Roemeens</string>
<string name="revanced_spoof_video_streams_language_RU">Russisch</string>
<string name="revanced_spoof_video_streams_language_SK">Slowaaks</string>
diff --git a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
index 4ba91edc6b..645624aced 100644
--- a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
+++ b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
@@ -1328,8 +1328,6 @@ Odtwarzanie wideo może nie działać"</string>
<string name="revanced_spoof_video_streams_language_OR">Orija</string>
<string name="revanced_spoof_video_streams_language_PA">pendżabski</string>
<string name="revanced_spoof_video_streams_language_PL">polski</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">portugalski (Brazylia)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">portugalski (Portugalia)</string>
<string name="revanced_spoof_video_streams_language_RO">rumuński</string>
<string name="revanced_spoof_video_streams_language_RU">rosyjski</string>
<string name="revanced_spoof_video_streams_language_SK">słowacki</string>
diff --git a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
index d0f3796525..10bd95d604 100644
--- a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
+++ b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
@@ -1327,8 +1327,6 @@ A reprodução de vídeo pode não funcionar"</string>
<string name="revanced_spoof_video_streams_language_OR">Oriá</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polonês</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Português (Brasil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Português (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Romeno</string>
<string name="revanced_spoof_video_streams_language_RU">Russo</string>
<string name="revanced_spoof_video_streams_language_SK">Eslovaco</string>
diff --git a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
index aab574f51f..247bfd2caf 100644
--- a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
+++ b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
@@ -1328,8 +1328,6 @@ Phát video có thể không hoạt động"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polonês</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Português (Brasil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Português (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Romeno</string>
<string name="revanced_spoof_video_streams_language_RU">Russo</string>
<string name="revanced_spoof_video_streams_language_SK">Eslovaco</string>
diff --git a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
index fb05a52eb8..8bc3ae9344 100644
--- a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
+++ b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
@@ -1329,8 +1329,6 @@ Este posibil ca redarea video să nu funcționeze"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Poloneză</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugheză (Brazilia)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugheză (Portugalia)</string>
<string name="revanced_spoof_video_streams_language_RO">Română</string>
<string name="revanced_spoof_video_streams_language_RU">Rusă</string>
<string name="revanced_spoof_video_streams_language_SK">Slovacă</string>
diff --git a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
index 66d74dbe4b..0d47e88437 100644
--- a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
+++ b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
@@ -1330,8 +1330,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Одиа</string>
<string name="revanced_spoof_video_streams_language_PA">Панджаби</string>
<string name="revanced_spoof_video_streams_language_PL">Польский</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Португальский (Бразилия)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Португальский (Португалия)</string>
<string name="revanced_spoof_video_streams_language_RO">Румынский</string>
<string name="revanced_spoof_video_streams_language_RU">Русский</string>
<string name="revanced_spoof_video_streams_language_SK">Словацкий</string>
diff --git a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
index 10c557425a..1decc6e539 100644
--- a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
+++ b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
@@ -1317,8 +1317,6 @@ Prehrávanie videa nemusí fungovať"</string>
<string name="revanced_spoof_video_streams_language_OR">Orijčina</string>
<string name="revanced_spoof_video_streams_language_PA">Pandžábčina</string>
<string name="revanced_spoof_video_streams_language_PL">Poľština</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugalčina (Brazília)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugalčina (Portugalsko)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumunčina</string>
<string name="revanced_spoof_video_streams_language_RU">Ruština</string>
<string name="revanced_spoof_video_streams_language_SK">Slovenčina</string>
diff --git a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
index ad96902eaf..2a73bcad5b 100644
--- a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
+++ b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
@@ -1329,8 +1329,6 @@ Predvajanje videa morda ne bo delovalo"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Pandžabsko</string>
<string name="revanced_spoof_video_streams_language_PL">Poljsko</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugalsko (Brazilija)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugalsko (Portugalska)</string>
<string name="revanced_spoof_video_streams_language_RO">Romunsko</string>
<string name="revanced_spoof_video_streams_language_RU">Rusko</string>
<string name="revanced_spoof_video_streams_language_SK">Slovaško</string>
diff --git a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
index 2c86678059..fcf3c617dc 100644
--- a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
+++ b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
@@ -1327,8 +1327,6 @@ Shikimi i videove mund të mos funksionojë"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polake</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugeze (Brazili)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugeze (Portugali)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumune</string>
<string name="revanced_spoof_video_streams_language_RU">Ruse</string>
<string name="revanced_spoof_video_streams_language_SK">Sllovake</string>
diff --git a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
index f3b9aafe7c..add7d8ba7d 100644
--- a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
+++ b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
@@ -1328,8 +1328,6 @@ Reprodukcija videa možda neće raditi"</string>
<string name="revanced_spoof_video_streams_language_OR">Odija</string>
<string name="revanced_spoof_video_streams_language_PA">Pandžapski</string>
<string name="revanced_spoof_video_streams_language_PL">Poljski</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugalski (Brazil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugalski (Portugalija)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumunski</string>
<string name="revanced_spoof_video_streams_language_RU">Ruski</string>
<string name="revanced_spoof_video_streams_language_SK">Slovački</string>
diff --git a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
index 7e3d679f63..dfd397355b 100644
--- a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
+++ b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
@@ -1327,8 +1327,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Одија</string>
<string name="revanced_spoof_video_streams_language_PA">Панџапски</string>
<string name="revanced_spoof_video_streams_language_PL">Пољски</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Португалcки (Бразил)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Португалски (Португалија)</string>
<string name="revanced_spoof_video_streams_language_RO">Румунски</string>
<string name="revanced_spoof_video_streams_language_RU">Руски</string>
<string name="revanced_spoof_video_streams_language_SK">Словачки</string>
diff --git a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
index 6a1fbca572..9851e8e274 100644
--- a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
+++ b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
@@ -1328,8 +1328,6 @@ Videouppspelning kanske inte fungerar"</string>
<string name="revanced_spoof_video_streams_language_OR">Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Punjabi</string>
<string name="revanced_spoof_video_streams_language_PL">Polska</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portugisiska (Brasilien)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portugisiska (Portugal)</string>
<string name="revanced_spoof_video_streams_language_RO">Rumänska</string>
<string name="revanced_spoof_video_streams_language_RU">Ryska</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakiska</string>
diff --git a/patches/src/main/resources/addresources/values-th-rTH/strings.xml b/patches/src/main/resources/addresources/values-th-rTH/strings.xml
index 0ea166bf1a..9a31f09a9b 100644
--- a/patches/src/main/resources/addresources/values-th-rTH/strings.xml
+++ b/patches/src/main/resources/addresources/values-th-rTH/strings.xml
@@ -1329,8 +1329,6 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_spoof_video_streams_language_OR">โอเดีย</string>
<string name="revanced_spoof_video_streams_language_PA">ปัญจาบ</string>
<string name="revanced_spoof_video_streams_language_PL">โปแลนด์</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">(ภาษาโปรตุเกส (บราซิล))</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">(ภาษาโปรตุเกส (โปรตุเกส))</string>
<string name="revanced_spoof_video_streams_language_RO">โรมาเนีย</string>
<string name="revanced_spoof_video_streams_language_RU">รัสเซีย</string>
<string name="revanced_spoof_video_streams_language_SK">สโลวัก</string>
diff --git a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
index a98dded7f8..e3454a605b 100644
--- a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
+++ b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
@@ -1328,8 +1328,6 @@ Video oynatma çalışmayabilir"</string>
<string name="revanced_spoof_video_streams_language_OR">Odiyaca</string>
<string name="revanced_spoof_video_streams_language_PA">Pencapça</string>
<string name="revanced_spoof_video_streams_language_PL">Lehçe</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Portekizce (Brezilya)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Portekizce (Portekiz)</string>
<string name="revanced_spoof_video_streams_language_RO">Romence</string>
<string name="revanced_spoof_video_streams_language_RU">Rusça</string>
<string name="revanced_spoof_video_streams_language_SK">Slovakça</string>
diff --git a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
index 186ac42d5a..01e880799b 100644
--- a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
+++ b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
@@ -1327,8 +1327,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">Одійська</string>
<string name="revanced_spoof_video_streams_language_PA">Пенджабі</string>
<string name="revanced_spoof_video_streams_language_PL">Польська</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Португальська (Бразилія)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Португальська (Португалія)</string>
<string name="revanced_spoof_video_streams_language_RO">Румунська</string>
<string name="revanced_spoof_video_streams_language_RU">Російська</string>
<string name="revanced_spoof_video_streams_language_SK">Словацька</string>
diff --git a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
index 2ed8b7face..4c2559700d 100644
--- a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
+++ b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
@@ -1329,8 +1329,6 @@ Phát lại video có thể không hoạt động"</string>
<string name="revanced_spoof_video_streams_language_OR">Tiếng Odia</string>
<string name="revanced_spoof_video_streams_language_PA">Tiếng Punjab</string>
<string name="revanced_spoof_video_streams_language_PL">Tiếng Ba Lan</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">Bồ Đào Nha (Brazil)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">Tiếng Bồ (Bồ Đào Nha)</string>
<string name="revanced_spoof_video_streams_language_RO">Tiếng Rumani</string>
<string name="revanced_spoof_video_streams_language_RU">Tiếng Nga</string>
<string name="revanced_spoof_video_streams_language_SK">Tiếng Slovak</string>
diff --git a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
index db4f038440..84dd90b02c 100644
--- a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
+++ b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
@@ -26,10 +26,10 @@ Second \"item\" text"</string>
<string name="revanced_check_environment_dialog_open_official_source_button">打开官方网站</string>
<string name="revanced_check_environment_dialog_ignore_button">忽略</string>
<string name="revanced_check_environment_failed_message"><h5>此应用程序似乎未由您修补。</h5><br>此应用程序可能无法正常运行,<b>可能存在安全风险或使用起来甚至存在危险</b>。<br><br>这些检查表明此应用程序是预先修补的或从其他人那里获得的:<br><br><small>%1$s</small><br>强烈建议您<b>卸载此应用程序并自行修补</b>,以确保您使用的是经过验证的安全的应用。<p><br>如果忽略,此警告只会显示两次。</string>
- <string name="revanced_check_environment_not_same_patching_device">已在另一台设备上打补丁</string>
- <string name="revanced_check_environment_manager_not_expected_installer">未由 ReVanced Manager 安装</string>
- <string name="revanced_check_environment_not_near_patch_time">上次打补丁在超过 10 分钟前</string>
- <string name="revanced_check_environment_not_near_patch_time_days">上次打补丁在 %s 天前</string>
+ <string name="revanced_check_environment_not_same_patching_device">已在另一台设备上修补过</string>
+ <string name="revanced_check_environment_manager_not_expected_installer">未通过 ReVanced Manager 安装</string>
+ <string name="revanced_check_environment_not_near_patch_time">上次修补在10分钟前</string>
+ <string name="revanced_check_environment_not_near_patch_time_days">上次修补在 %s 天前</string>
<string name="revanced_check_environment_not_near_patch_time_invalid">APK 版本号已损坏</string>
</patch>
<patch id="misc.settings.settingsResourcePatch">
@@ -48,24 +48,24 @@ Second \"item\" text"</string>
<!-- Settings about dialog. -->
<string name="revanced_settings_about_links_body">您正在使用 ReVanced 补丁版本 <i>%s</i></string>
<string name="revanced_settings_about_links_dev_header">信息</string>
- <string name="revanced_settings_about_links_dev_body">此版本是预发行版本,你可能會遇到意外问题</string>
+ <string name="revanced_settings_about_links_dev_body">此版本是预发布版本,您可能会遇到意外问题</string>
<string name="revanced_settings_about_links_header">官方链接</string>
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
- <string name="gms_core_toast_not_installed_message">MicroG GmsCore 未安装。请安装。</string>
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore 未安装。请先安装。</string>
<string name="gms_core_dialog_title">需要采取操作</string>
<string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">"MicroG GmsCore 无法在后台运行。
-请按照手机的 \"不要杀死我的应用\" 指南操作,并将其应用于 MicroG 安装。
+请按照「Don't kill my app」网站上对应手机的指南,允许 MicroG 在后台运行。
这是应用程序正常运行的必要条件。"</string>
<string name="gms_core_dialog_open_website_text">打开网站</string>
<string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">"必须禁用 MicroG GmsCore 的电池优化,以防止出现问题。
-禁用 MicroG 的电池优化不会对电池使用造成负面影响。
+禁用 MicroG 的电池优化不会对电池续航时间造成负面影响。
点击继续按钮并允许优化更改。"</string>
<string name="gms_core_dialog_continue_text">继续</string>
@@ -86,9 +86,9 @@ Second \"item\" text"</string>
<string name="revanced_settings_screen_12_video_title">视频</string>
</patch>
<patch id="misc.backgroundplayback.backgroundPlaybackPatch">
- <string name="revanced_shorts_disable_background_playback_title">停用背景播放 Shorts</string>
- <string name="revanced_shorts_disable_background_playback_summary_on">已停用背景播放 Shorts</string>
- <string name="revanced_shorts_disable_background_playback_summary_off">已啟用背景播放 Shorts</string>
+ <string name="revanced_shorts_disable_background_playback_title">禁用 Shorts 后台播放</string>
+ <string name="revanced_shorts_disable_background_playback_summary_on"> Shorts 后台播放已停用</string>
+ <string name="revanced_shorts_disable_background_playback_summary_off">Shorts 后台播放已启用</string>
</patch>
<patch id="misc.debugging.enableDebuggingPatch">
<string name="revanced_debug_screen_title">调试</string>
@@ -115,7 +115,7 @@ Second \"item\" text"</string>
<string name="revanced_disable_like_subscribe_glow_summary_off">点赞和订阅按钮点击时有动效</string>
<string name="revanced_hide_album_cards_title">隐藏专辑卡片</string>
<string name="revanced_hide_album_cards_summary_on">专辑卡片已隐藏</string>
- <string name="revanced_hide_album_cards_summary_off">已顯示專輯卡</string>
+ <string name="revanced_hide_album_cards_summary_off">专辑卡片已显示</string>
<string name="revanced_hide_crowdfunding_box_title">隐藏众筹框</string>
<string name="revanced_hide_crowdfunding_box_summary_on">众筹框已隐藏</string>
<string name="revanced_hide_crowdfunding_box_summary_off">众筹框已显示</string>
@@ -123,16 +123,16 @@ Second \"item\" text"</string>
<string name="revanced_hide_floating_microphone_button_summary_on">麦克风按钮已隐藏</string>
<string name="revanced_hide_floating_microphone_button_summary_off">麦克风按钮已显示</string>
<string name="revanced_hide_channel_watermark_title">隐藏频道水印</string>
- <string name="revanced_hide_channel_watermark_summary_on">视频水印已隐藏</string>
+ <string name="revanced_hide_channel_watermark_summary_on">水印已隐藏</string>
<string name="revanced_hide_channel_watermark_summary_off">水印已显示</string>
<string name="revanced_hide_horizontal_shelves_title">隐藏水平横排</string>
- <string name="revanced_hide_horizontal_shelves_summary_on">"隐藏的货架,例如:
+ <string name="revanced_hide_horizontal_shelves_summary_on">"展示架已隐藏,例如:
• 最新消息
• 继续观看
• 探索更多频道
• 购物
• 再次观看"</string>
- <string name="revanced_hide_horizontal_shelves_summary_off">已显示功能架</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">展示架已显示</string>
<!-- 'Join' should be translated using the same localized wording YouTube displays.
This appears in the video player for certain videos. -->
<string name="revanced_hide_join_membership_button_title">隐藏“加入”按钮</string>
@@ -140,8 +140,8 @@ Second \"item\" text"</string>
<string name="revanced_hide_join_membership_button_summary_off">按钮已显示</string>
<!-- 'For you' should be translated using the same localized wording YouTube displays. -->
<string name="revanced_hide_for_you_shelf_title">在频道页面隐藏“为你推荐”的功能架</string>
- <string name="revanced_hide_for_you_shelf_summary_on">功能架已隐藏</string>
- <string name="revanced_hide_for_you_shelf_summary_off">功能架已显示</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">展示架已隐藏</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">展示架已隐藏</string>
<!-- 'Notify me' should be translated using the same localized wording YouTube displays.
This item appear in the subscription feed for future livestreams or unreleased videos. -->
<string name="revanced_hide_notify_me_button_title">隐藏“通知我”按钮</string>
@@ -158,46 +158,46 @@ Second \"item\" text"</string>
<string name="revanced_hide_show_more_button_summary_off">按钮已显示</string>
<string name="revanced_hide_timed_reactions_title">隐藏定时反应</string>
<string name="revanced_hide_timed_reactions_summary_on">已隐藏计时反应</string>
- <string name="revanced_hide_timed_reactions_summary_off">定时反应显示</string>
+ <string name="revanced_hide_timed_reactions_summary_off">定时表情反应已显示</string>
<string name="revanced_hide_channel_guidelines_title">隐藏频道指南</string>
- <string name="revanced_hide_channel_guidelines_summary_on">隐藏社区指南</string>
- <string name="revanced_hide_channel_guidelines_summary_off">显示社区指南</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">社区准则已隐藏</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">社区准则已显示</string>
<string name="revanced_hide_chips_shelf_title">隐藏标签</string>
- <string name="revanced_hide_chips_shelf_summary_on">隐藏标签</string>
- <string name="revanced_hide_chips_shelf_summary_off">显示标签</string>
+ <string name="revanced_hide_chips_shelf_summary_on">标签展示栏已隐藏</string>
+ <string name="revanced_hide_chips_shelf_summary_off">标签展示栏已显示</string>
<string name="revanced_hide_expandable_chip_title">隐藏视频下方的扩展面板</string>
- <string name="revanced_hide_expandable_chip_summary_on">隐藏可扩展的芯片</string>
- <string name="revanced_hide_expandable_chip_summary_off">显示可扩展的芯片</string>
+ <string name="revanced_hide_expandable_chip_summary_on">扩展面板已隐藏</string>
+ <string name="revanced_hide_expandable_chip_summary_off">扩展面板已显示</string>
<string name="revanced_hide_community_posts_title">隐藏社区帖子</string>
- <string name="revanced_hide_community_posts_summary_on">隐藏社区帖子</string>
- <string name="revanced_hide_community_posts_summary_off">显示社区帖子</string>
+ <string name="revanced_hide_community_posts_summary_on">社区帖子已隐藏</string>
+ <string name="revanced_hide_community_posts_summary_off">社区帖子已显示</string>
<string name="revanced_hide_compact_banner_title">隐藏紧凑横幅</string>
- <string name="revanced_hide_compact_banner_summary_on">已隐藏紧凑横幅</string>
- <string name="revanced_hide_compact_banner_summary_off">已显示简洁横幅</string>
+ <string name="revanced_hide_compact_banner_summary_on">紧凑横幅已隐藏</string>
+ <string name="revanced_hide_compact_banner_summary_off">紧凑横幅已显示</string>
<string name="revanced_hide_movies_section_title">隐藏影片章节</string>
- <string name="revanced_hide_movies_section_summary_on">隐藏电影部分</string>
- <string name="revanced_hide_movies_section_summary_off">显示电影部分</string>
+ <string name="revanced_hide_movies_section_summary_on">电影部分已隐藏</string>
+ <string name="revanced_hide_movies_section_summary_off">电影部分已显示</string>
<string name="revanced_hide_feed_survey_title">隐藏动态调查</string>
<string name="revanced_hide_feed_survey_summary_on">隐藏动态短视频问卷调查</string>
<string name="revanced_hide_feed_survey_summary_off">显示动态短视频问卷调查</string>
<string name="revanced_hide_community_guidelines_title">隐藏社区指南</string>
- <string name="revanced_hide_community_guidelines_summary_on">隐藏《社群規範》</string>
- <string name="revanced_hide_community_guidelines_summary_off">显示《社群規範》</string>
+ <string name="revanced_hide_community_guidelines_summary_on">社区准则已隐藏</string>
+ <string name="revanced_hide_community_guidelines_summary_off">社区准则已显示</string>
<string name="revanced_hide_subscribers_community_guidelines_title">隐藏订阅社区指南</string>
- <string name="revanced_hide_subscribers_community_guidelines_summary_on">隐藏《訂閱者社群規範》</string>
- <string name="revanced_hide_subscribers_community_guidelines_summary_off">显示《訂閱者社群規範》</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">订阅者社区准则已隐藏</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">订阅者社区准则已显示</string>
<string name="revanced_hide_channel_member_shelf_title">隐藏频道会员列表</string>
- <string name="revanced_hide_channel_member_shelf_summary_on">隐藏频道会员匣</string>
- <string name="revanced_hide_channel_member_shelf_summary_off">隐藏频道会员列表</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">频道会员展示架已隐藏</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">频道会员展示架已显示</string>
<string name="revanced_hide_emergency_box_title">隐藏紧急框</string>
- <string name="revanced_hide_emergency_box_summary_on">隐藏紧急信息框</string>
- <string name="revanced_hide_emergency_box_summary_off">显示紧急信息框</string>
+ <string name="revanced_hide_emergency_box_summary_on">紧急信息框已隐藏</string>
+ <string name="revanced_hide_emergency_box_summary_off">紧急信息框已显示</string>
<string name="revanced_hide_info_panels_title">隐藏信息面板</string>
- <string name="revanced_hide_info_panels_summary_on">隐藏信息面板</string>
- <string name="revanced_hide_info_panels_summary_off">显示信息面板</string>
+ <string name="revanced_hide_info_panels_summary_on">信息面板已隐藏</string>
+ <string name="revanced_hide_info_panels_summary_off">信息面板已显示</string>
<string name="revanced_hide_medical_panels_title">隐藏医疗面板</string>
- <string name="revanced_hide_medical_panels_summary_on">隐藏医疗信息面板</string>
- <string name="revanced_hide_medical_panels_summary_off">显示医疗信息面板</string>
+ <string name="revanced_hide_medical_panels_summary_on">医疗信息面板已隐藏</string>
+ <string name="revanced_hide_medical_panels_summary_off">医疗信息面板已显示</string>
<string name="revanced_hide_channel_bar_title">隐藏频道栏</string>
<string name="revanced_hide_channel_bar_summary_on">频道栏已隐藏</string>
<string name="revanced_hide_channel_bar_summary_off">频道栏已显示</string>
@@ -205,23 +205,23 @@ Second \"item\" text"</string>
<string name="revanced_hide_playables_summary_on">游戏已隐藏</string>
<string name="revanced_hide_playables_summary_off">游戏已显示</string>
<string name="revanced_hide_quick_actions_title">全屏时隐藏快速操作</string>
- <string name="revanced_hide_quick_actions_summary_on">已隐藏快速操作</string>
- <string name="revanced_hide_quick_actions_summary_off">已显示快速操作</string>
+ <string name="revanced_hide_quick_actions_summary_on">快速操作已隐藏</string>
+ <string name="revanced_hide_quick_actions_summary_off">快速操作已显示</string>
<string name="revanced_hide_related_videos_title">在快速操作中隐藏相关视频</string>
- <string name="revanced_hide_related_videos_summary_on">相关的视频已被隐藏</string>
- <string name="revanced_hide_related_videos_summary_off">相关的视频将被显示</string>
+ <string name="revanced_hide_related_videos_summary_on">相关视频已隐藏</string>
+ <string name="revanced_hide_related_videos_summary_off">相关视频已显示</string>
<string name="revanced_hide_image_shelf_title">在搜索结果中隐藏图像存储</string>
- <string name="revanced_hide_image_shelf_summary_on">图片货架已隐藏</string>
- <string name="revanced_hide_image_shelf_summary_off">图片货架将被显示</string>
+ <string name="revanced_hide_image_shelf_summary_on">图片展示架已隐藏</string>
+ <string name="revanced_hide_image_shelf_summary_off">图片展示架将被显示</string>
<string name="revanced_hide_latest_posts_ads_title">隐藏最新帖子</string>
- <string name="revanced_hide_latest_posts_ads_summary_on">最新的帖子已被隐藏</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">最新帖子已隐藏</string>
<string name="revanced_hide_latest_posts_ads_summary_off">最新帖子已显示</string>
<string name="revanced_hide_mix_playlists_title">隐藏组合播放列表</string>
- <string name="revanced_hide_mix_playlists_summary_on">已隐藏组合播放列表</string>
- <string name="revanced_hide_mix_playlists_summary_off">已显示组合播放列表</string>
+ <string name="revanced_hide_mix_playlists_summary_on">合辑播放列表已隐藏</string>
+ <string name="revanced_hide_mix_playlists_summary_off">合辑播放列表已显示</string>
<string name="revanced_hide_artist_cards_title">隐藏艺人卡片</string>
- <string name="revanced_hide_artist_cards_summary_on">已隐藏艺人卡片</string>
- <string name="revanced_hide_artist_cards_summary_off">已显示艺人卡片</string>
+ <string name="revanced_hide_artist_cards_summary_on">艺人卡片已隐藏</string>
+ <string name="revanced_hide_artist_cards_summary_off">艺人卡片已显示</string>
<string name="revanced_hide_attributes_section_title">隐藏属性部分</string>
<string name="revanced_hide_attributes_section_summary_on">\'特色地点\', 游戏和音乐区已隐藏</string>
<string name="revanced_hide_attributes_section_summary_off">\'特色地点\', 游戏和音乐区已显示</string>
@@ -290,7 +290,7 @@ Second \"item\" text"</string>
<string name="revanced_custom_filter_summary_off">已禁用自定义筛选器</string>
<string name="revanced_custom_filter_strings_title">自定义筛选器</string>
<!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
- <string name="revanced_custom_filter_strings_summary">新行分隔的组件路径生成器字符串列表,用于筛选</string>
+ <string name="revanced_custom_filter_strings_summary">用于过滤的组件路径生成器字符串的列表,按行分隔</string>
<string name="revanced_custom_filter_toast_invalid_syntax">非法自定义筛选器:%s</string>
<string name="revanced_hide_keyword_content_screen_title">隐藏关键字内容</string>
<string name="revanced_hide_keyword_content_screen_summary">使用关键字过滤隐藏搜索和动态消息中的视频</string>
@@ -306,7 +306,11 @@ Second \"item\" text"</string>
<string name="revanced_hide_keyword_content_phrases_title">要隐藏的关键字</string>
<!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
- <string name="revanced_hide_keyword_content_phrases_summary">"要隐藏的关键词和短语,用换行符隔开<br><br>关键词可以是频道名称或视频标题中显示的任何文本<br><br>中间有字母大写的词语必须输入带有大小写(例如:iPhone、TikTok、LeBlanc)"</string>
+ <string name="revanced_hide_keyword_content_phrases_summary">"请输入要隐藏的关键词和短语,换行隔开
+
+关键词可以是频道名称或视频标题中的任何文本
+
+中间带有大写字母的单词必须按照字母的大小写输入 (例如: iPhone、TikTok、LeBlanc)"</string>
<string name="revanced_hide_keyword_content_about_title">关于关键字过滤</string>
<string name="revanced_hide_keyword_content_about_summary">"首页/订阅/搜索结果会过滤掉与关键词短语匹配的内容
@@ -326,34 +330,34 @@ Second \"item\" text"</string>
</patch>
<patch id="ad.general.hideAdsResourcePatch">
<string name="revanced_hide_general_ads_title">隐藏一般广告</string>
- <string name="revanced_hide_general_ads_summary_on">已隐藏一般广告</string>
- <string name="revanced_hide_general_ads_summary_off">已开启显示一般广告</string>
+ <string name="revanced_hide_general_ads_summary_on">一般广告已隐藏</string>
+ <string name="revanced_hide_general_ads_summary_off">一般广告已显示</string>
<string name="revanced_hide_fullscreen_ads_title">隐藏全屏广告</string>
<string name="revanced_hide_fullscreen_ads_summary_on">"全屏广告已隐藏
此功能仅适用于旧设备"</string>
- <string name="revanced_hide_fullscreen_ads_summary_off">广告已显示</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">全屏广告已显示</string>
<string name="revanced_hide_buttoned_ads_title">隐藏信息流视频广告</string>
<string name="revanced_hide_buttoned_ads_summary_on">按钮广告已隐藏</string>
<string name="revanced_hide_buttoned_ads_summary_off">按钮广告已显示</string>
<string name="revanced_hide_paid_promotion_label_title">隐藏付费推广标签</string>
- <string name="revanced_hide_paid_promotion_label_summary_on">已隐藏付费推广标签</string>
- <string name="revanced_hide_paid_promotion_label_summary_off">已啟用顯示付費推廣標籤</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">付费推广标签已隐藏</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">付费推广标签已显示</string>
<string name="revanced_hide_self_sponsor_ads_title">隐藏自我推广卡片</string>
- <string name="revanced_hide_self_sponsor_ads_summary_on">已隱藏自我贊助資訊卡</string>
- <string name="revanced_hide_self_sponsor_ads_summary_off">已顯示自我贊助資訊卡</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">自我推广卡片已隐藏</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">自我推广卡片已显示</string>
<string name="revanced_hide_products_banner_title">隐藏产品横幅</string>
- <string name="revanced_hide_products_banner_summary_on">已隱藏橫幅</string>
- <string name="revanced_hide_products_banner_summary_off">已显示橫幅</string>
+ <string name="revanced_hide_products_banner_summary_on">横幅已隐藏</string>
+ <string name="revanced_hide_products_banner_summary_off">横幅已显示</string>
<string name="revanced_hide_player_store_shelf_title">隱藏播放器 [購物匣]</string>
- <string name="revanced_hide_player_store_shelf_summary_on">已隱藏 [購物匣]</string>
- <string name="revanced_hide_player_store_shelf_summary_off">显示购物货架</string>
+ <string name="revanced_hide_player_store_shelf_summary_on">购物展示栏已隐藏</string>
+ <string name="revanced_hide_player_store_shelf_summary_off">购物展示栏已显示</string>
<string name="revanced_hide_shopping_links_title">在视频描述中隐藏购物链接</string>
- <string name="revanced_hide_shopping_links_summary_on">购物链接隐藏</string>
- <string name="revanced_hide_shopping_links_summary_off">购物链接显示</string>
+ <string name="revanced_hide_shopping_links_summary_on">购物链接已隐藏</string>
+ <string name="revanced_hide_shopping_links_summary_off">购物链接已显示</string>
<!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
<string name="revanced_hide_visit_store_button_title">频道页面上的“访问商店”按钮隐藏</string>
- <string name="revanced_hide_visit_store_button_summary_on">按钮隐藏</string>
+ <string name="revanced_hide_visit_store_button_summary_on">按钮已隐藏</string>
<string name="revanced_hide_visit_store_button_summary_off">按钮已显示</string>
<string name="revanced_hide_web_search_results_title">隐藏网页搜索结果</string>
<string name="revanced_hide_web_search_results_summary_on">网页搜索结果已隐藏</string>
@@ -365,9 +369,9 @@ Second \"item\" text"</string>
<string name="revanced_hide_fullscreen_ads_feature_not_available_toast">隐藏全屏广告只适用于旧设备</string>
</patch>
<patch id="ad.getpremium.hideGetPremiumPatch">
- <string name="revanced_hide_get_premium_title">隐藏YouTube Premium 推广</string>
- <string name="revanced_hide_get_premium_summary_on">隐藏视频播放器下的YouTube 高级促销</string>
- <string name="revanced_hide_get_premium_summary_off">在视频播放器下显示YouTube Premium促销推广</string>
+ <string name="revanced_hide_get_premium_title">隐藏 YouTube Premium 促销推广</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium促销推广已隐藏</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium促销推广已显示</string>
</patch>
<patch id="ad.video.videoAdsPatch">
<string name="revanced_hide_video_ads_title">隐藏视频广告</string>
@@ -550,8 +554,8 @@ Second \"item\" text"</string>
<string name="revanced_hide_player_flyout_stable_volume_summary_on">启用非度菜单裸备</string>
<!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_help_title">隱藏說明 & 意見回饋</string>
- <string name="revanced_hide_player_flyout_help_summary_on">隱藏說明選單,不在播放形式選單上顯示</string>
- <string name="revanced_hide_player_flyout_help_summary_off">已顯示說明與回饋選單</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">帮助 & 反馈菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">帮助 & 反馈菜单已显示</string>
<!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_speed_title">隐藏播放速度助收</string>
<string name="revanced_hide_player_flyout_speed_summary_on">隐藏播放速度菜单,不在播放形式菜单上显示启用数字速度助收</string>
@@ -578,7 +582,7 @@ Second \"item\" text"</string>
<string name="revanced_hide_player_flyout_video_quality_footer_summary_off">视频质量菜单页脚显示</string>
</patch>
<patch id="layout.buttons.overlay.hidePlayerOverlayButtonsPatch">
- <string name="revanced_hide_player_previous_next_buttons_title">隐藏上一个和下一个视频按钮</string>
+ <string name="revanced_hide_player_previous_next_buttons_title">隐藏上一个 &下一个视频按钮</string>
<string name="revanced_hide_player_previous_next_buttons_summary_on">按钮已隐藏</string>
<string name="revanced_hide_player_previous_next_buttons_summary_off">按钮已显示</string>
<string name="revanced_hide_cast_button_title">隐藏投放按钮</string>
@@ -589,28 +593,28 @@ Second \"item\" text"</string>
<string name="revanced_hide_captions_button_summary_on">字幕按钮已隐藏</string>
<string name="revanced_hide_captions_button_summary_off">字幕按钮已显示</string>
<string name="revanced_hide_autoplay_button_title">隐藏自动播放按钮</string>
- <string name="revanced_hide_autoplay_button_summary_on">播放按钮已隐藏</string>
- <string name="revanced_hide_autoplay_button_summary_off">自动播放按钮将由 revanced 隐藏</string>
+ <string name="revanced_hide_autoplay_button_summary_on">自动播放按钮已隐藏</string>
+ <string name="revanced_hide_autoplay_button_summary_off">自动播放按钮已显示</string>
</patch>
<patch id="layout.hide.endscreencards.hideEndscreenCardsResourcePatch">
<string name="revanced_hide_endscreen_cards_title">隐藏片尾卡</string>
- <string name="revanced_hide_endscreen_cards_summary_on">片尾卡已由 revanced 隐藏</string>
- <string name="revanced_hide_endscreen_cards_summary_off">片尾卡将由 revanced 显示</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">片尾卡已隐藏</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">片尾卡已显示</string>
</patch>
<patch id="layout.hide.fullscreenambientmode.disableFullscreenAmbientModePatch">
- <string name="revanced_disable_fullscreen_ambient_mode_title">在全屏模式下禁用周围模式</string>
- <string name="revanced_disable_fullscreen_ambient_mode_summary_on">周边模式在全屏模式下由 revanced 禁用</string>
- <string name="revanced_disable_fullscreen_ambient_mode_summary_off">周边模式在全屏模式下由 revanced 启用</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_title">在全屏时禁用氛围模式</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">氛围模式已禁用</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">氛围模式已启用</string>
</patch>
<patch id="layout.hide.infocards.hideInfocardsResourcePatch">
- <string name="revanced_hide_info_cards_title">隐藏信息卡</string>
- <string name="revanced_hide_info_cards_summary_on">已隐藏信息卡片</string>
- <string name="revanced_hide_info_cards_summary_off">已显示信息卡片</string>
+ <string name="revanced_hide_info_cards_title">隐藏信息卡片</string>
+ <string name="revanced_hide_info_cards_summary_on">信息卡片已隐藏</string>
+ <string name="revanced_hide_info_cards_summary_off">信息卡片已显示</string>
</patch>
<patch id="layout.hide.rollingnumber.disableRollingNumberAnimationPatch">
<string name="revanced_disable_rolling_number_animations_title">禁用滚动的数字动画</string>
- <string name="revanced_disable_rolling_number_animations_summary_on">滚动数字不动画</string>
- <string name="revanced_disable_rolling_number_animations_summary_off">滚动数字已动画</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">滚动动画已禁用</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">滚动动画已启用</string>
</patch>
<patch id="layout.hide.seekbar.hideSeekbarPatch">
<string name="revanced_hide_seekbar_title">隐藏视频播放器中的进度条</string>
@@ -622,47 +626,47 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.hide.shorts.hideShortsComponentsResourcePatch">
<string name="revanced_shorts_player_screen_title">Shorts 播放器</string>
- <string name="revanced_shorts_player_screen_summary">隐藏或显示 Shorts 播放器的元件</string>
+ <string name="revanced_shorts_player_screen_summary">隐藏或显示 Shorts 播放器组件</string>
<!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
<string name="revanced_hide_shorts_home_title">在主页动态中隐藏 Shorts</string>
<string name="revanced_hide_shorts_home_summary_on">主页动态中的 Shorts已隐藏</string>
- <string name="revanced_hide_shorts_home_summary_off">主页动态中显示 Shorts</string>
+ <string name="revanced_hide_shorts_home_summary_off">主页动态中的 Shorts 已显示</string>
<!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
<string name="revanced_hide_shorts_subscriptions_title">在订阅信息流中隐藏 Shorts</string>
- <string name="revanced_hide_shorts_subscriptions_summary_on">已在訂閱動態影片中隱藏 Shorts</string>
- <string name="revanced_hide_shorts_subscriptions_summary_off">已在訂閱動態影片中顯示 Shorts</string>
- <string name="revanced_hide_shorts_search_title">隱藏 Shorts 搜尋結果</string>
- <string name="revanced_hide_shorts_search_summary_on">已在搜尋結果中隱藏 Shorts</string>
- <string name="revanced_hide_shorts_search_summary_off">已在搜尋結果中顯示 Shorts</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">订阅信息流中的 Shorts 已隐藏</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">订阅信息流中的 Shorts 未隐藏</string>
+ <string name="revanced_hide_shorts_search_title">在搜索结果中隐藏 Shorts 视频</string>
+ <string name="revanced_hide_shorts_search_summary_on">搜索结果中的 Shorts 视频已隐藏</string>
+ <string name="revanced_hide_shorts_search_summary_off">搜索结果中的 Shorts 视频未隐藏</string>
<!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
<string name="revanced_hide_shorts_join_button_title">隐藏加入按钮</string>
- <string name="revanced_hide_shorts_join_button_summary_on">加入按钮已被隐藏</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">加入按钮已隐藏</string>
<string name="revanced_hide_shorts_join_button_summary_off">加入按钮已显示</string>
<!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
<string name="revanced_hide_shorts_subscribe_button_title">隐藏订阅按钮</string>
- <string name="revanced_hide_shorts_subscribe_button_summary_on">订阅按钮已被隐藏</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">订阅按钮已隐藏</string>
<string name="revanced_hide_shorts_subscribe_button_summary_off">订阅按钮已显示</string>
<string name="revanced_hide_shorts_paused_overlay_buttons_title">隐藏已暂停叠加层按钮</string>
<string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">已暂停的覆盖按钮已被隐藏</string>
<string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">已顯示暫停覆蓋按鈕</string>
- <string name="revanced_hide_shorts_shop_button_title">隱藏商店按鈕</string>
- <string name="revanced_hide_shorts_shop_button_summary_on">已隱藏商店按鈕</string>
- <string name="revanced_hide_shorts_shop_button_summary_off">已顯示商店按鈕</string>
- <string name="revanced_hide_shorts_super_thanks_button_title">隱藏 [超級感謝] 按鈕</string>
- <string name="revanced_hide_shorts_super_thanks_button_summary_on">已隱藏 [超級感謝] 按鈕</string>
- <string name="revanced_hide_shorts_super_thanks_button_summary_off">已顯示 [超級感謝] 按鈕</string>
- <string name="revanced_hide_shorts_tagged_products_title">隱藏標記產品</string>
- <string name="revanced_hide_shorts_tagged_products_summary_on">隐藏标记的产品</string>
- <string name="revanced_hide_shorts_tagged_products_summary_off">显示标记的产品</string>
+ <string name="revanced_hide_shorts_shop_button_title">隐藏商店按钮</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">商店按钮已隐藏</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">商店按钮已显示</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">隐藏「超级感谢」按钮</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">「超级感谢」按钮已隐藏</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">「超级感谢」按钮已显示</string>
+ <string name="revanced_hide_shorts_tagged_products_title">隐藏标记的商品</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">标记商品已隐藏</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">标记商品已显示</string>
<string name="revanced_hide_shorts_location_label_title">隐藏位置标签</string>
- <string name="revanced_hide_shorts_location_label_summary_on">隐藏位置标签</string>
- <string name="revanced_hide_shorts_location_label_summary_off">显示位置标签</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">位置标签已隐藏</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">位置标签已显示</string>
<string name="revanced_hide_shorts_save_sound_button_title">隐藏保存音乐按钮</string>
- <string name="revanced_hide_shorts_save_sound_button_summary_on">隐藏保存音乐按钮</string>
- <string name="revanced_hide_shorts_save_sound_button_summary_off">显示保存音乐按钮</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">保存音乐按钮已隐藏</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">保存音乐按钮已显示</string>
<string name="revanced_hide_shorts_use_template_button_title">隐藏使用模板按钮</string>
- <string name="revanced_hide_shorts_use_template_button_summary_on">隐藏使用模板按钮</string>
- <string name="revanced_hide_shorts_use_template_button_summary_off">使用模板按钮显示</string>
+ <string name="revanced_hide_shorts_use_template_button_summary_on">使用模板按钮已隐藏</string>
+ <string name="revanced_hide_shorts_use_template_button_summary_off">使用模板按钮已显示</string>
<string name="revanced_hide_shorts_upcoming_button_title">隐藏即将到来按钮</string>
<string name="revanced_hide_shorts_upcoming_button_summary_on">即将上映按钮已隐藏</string>
<string name="revanced_hide_shorts_upcoming_button_summary_off">即将上映按钮已显示</string>
@@ -691,9 +695,9 @@ Second \"item\" text"</string>
<string name="revanced_hide_shorts_comments_button_summary_on">评论按钮已隐藏</string>
<string name="revanced_hide_shorts_comments_button_summary_off">评论按钮已显示</string>
<!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
- <string name="revanced_hide_shorts_remix_button_title">隐藏混音按钮</string>
- <string name="revanced_hide_shorts_remix_button_summary_on">混音按钮已隐藏</string>
- <string name="revanced_hide_shorts_remix_button_summary_off">混音按钮已显示</string>
+ <string name="revanced_hide_shorts_remix_button_title">隐藏混剪按钮</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">混剪按钮已隐藏</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">混剪按钮已显示</string>
<!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
<string name="revanced_hide_shorts_share_button_title">隐藏分享按钮</string>
<string name="revanced_hide_shorts_share_button_summary_on">分享按钮已隐藏</string>
@@ -747,9 +751,9 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.returnyoutubedislike.returnYouTubeDislikePatch">
<!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
- <string name="revanced_ryd_failure_connection_timeout">不喜欢暂时不可用(API 超时)</string>
- <string name="revanced_ryd_failure_connection_status_code">不喜欢不可用(状态 %d)</string>
- <string name="revanced_ryd_failure_client_rate_limit_requested">不喜欢不可用(已达到客户端 API 限制)</string>
+ <string name="revanced_ryd_failure_connection_timeout">点踩数暂时不可用 (API 连接超时)</string>
+ <string name="revanced_ryd_failure_connection_status_code">点踩数不可用 (状态 %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">点踩数不可用 (已达到客户端 API 限制)</string>
<string name="revanced_ryd_failure_generic">不喜欢不可用 (%s)</string>
<!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
<string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">重新加载视频,使用 Return YouTube Dislike 投票</string>
@@ -793,8 +797,8 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.searchbar.wideSearchbarPatch">
<string name="revanced_wide_searchbar_title">启用宽搜索栏</string>
- <string name="revanced_wide_searchbar_summary_on">已启用宽搜索栏</string>
- <string name="revanced_wide_searchbar_summary_off">已禁用宽搜索栏</string>
+ <string name="revanced_wide_searchbar_summary_on">宽搜索栏已启用</string>
+ <string name="revanced_wide_searchbar_summary_off">宽搜索栏已禁用</string>
</patch>
<patch id="layout.seekbar.seekbarThumbnailsPatch">
<string name="revanced_seekbar_thumbnails_high_quality_title">启用高质量缩略图</string>
@@ -813,7 +817,7 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.sponsorblock.sponsorBlockResourcePatch">
<string name="revanced_sb_enable_sb">启用 SponsorBlock</string>
- <string name="revanced_sb_enable_sb_sum">SponsorBlock 是一个众包系统,用于跳过 YouTube 视频中令人讨厌的部分</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock 是一个众包平台,旨在帮助人们跳过 YouTube 视频中烦人的部分</string>
<string name="revanced_sb_appearance_category">外观</string>
<string name="revanced_sb_enable_voting">显示投票按钮</string>
<string name="revanced_sb_enable_voting_sum_on">显示片段投票按钮</string>
@@ -880,14 +884,14 @@ Second \"item\" text"</string>
<string name="revanced_sb_segments_selfpromo">非付费/自我推广</string>
<string name="revanced_sb_segments_selfpromo_sum">与“赞助”类似,但适用于无偿或自我推广。包括有关商品、捐赠或他们与谁合作的信息</string>
<string name="revanced_sb_segments_interaction">互动提醒 (订阅)</string>
- <string name="revanced_sb_segments_interaction_sum">在内容中间简短提醒点赞、订阅或关注他们。如果时间很长或关于具体内容,则应将其归类为自我推广</string>
+ <string name="revanced_sb_segments_interaction_sum">视频中间简短提醒观众来点赞、订阅或关注。 如果片段较长,或是关于某个具体事物,则应分类为自我推广</string>
<string name="revanced_sb_segments_highlight">重点</string>
<string name="revanced_sb_segments_highlight_sum">大多数人都在寻找的视频部分</string>
<string name="revanced_sb_segments_intro">过场/开场动画</string>
<string name="revanced_sb_segments_intro_sum">没有实际内容的间隔。可以是暂停、静态帧或重复动画。不包括包含信息的过渡</string>
<string name="revanced_sb_segments_outro">结束画面/贡献表</string>
<string name="revanced_sb_segments_outro_sum">片尾字幕或 YouTube 结尾卡出现时。不适用于包含信息的结论</string>
- <string name="revanced_sb_segments_preview">预告/回顾/钩子</string>
+ <string name="revanced_sb_segments_preview">预告/回顾/引子</string>
<string name="revanced_sb_segments_preview_sum">一系列剪辑,展示视频或系列中其他视频即将发生的事情或已发生的事情,所有信息在其他地方都有重复</string>
<string name="revanced_sb_segments_filler">跑题内容/笑话</string>
<string name="revanced_sb_segments_filler_sum">仅为了填充或幽默而添加的切线场景,不需要理解视频的主要内容。不包括提供背景或背景信息的片段</string>
@@ -906,12 +910,12 @@ Second \"item\" text"</string>
<string name="revanced_sb_skip_button_preview_beginning">跳过预览</string>
<string name="revanced_sb_skip_button_preview_middle">跳过预览</string>
<string name="revanced_sb_skip_button_preview_end">跳过回顾</string>
- <string name="revanced_sb_skip_button_filler">跳过填充</string>
- <string name="revanced_sb_skip_button_nomusic">跳过非音乐</string>
+ <string name="revanced_sb_skip_button_filler">跳过灌水片段</string>
+ <string name="revanced_sb_skip_button_nomusic">跳过非音乐部分</string>
<string name="revanced_sb_skip_button_unsubmitted">跳过片段</string>
<string name="revanced_sb_skipped_sponsor">已跳过赞助商广告</string>
- <string name="revanced_sb_skipped_selfpromo">跳过促销活动</string>
- <string name="revanced_sb_skipped_interaction">已跳过提醒</string>
+ <string name="revanced_sb_skipped_selfpromo">已跳过自我推广</string>
+ <string name="revanced_sb_skipped_interaction">已跳过烦人提醒</string>
<string name="revanced_sb_skipped_highlight">已跳至重点</string>
<string name="revanced_sb_skipped_intro_beginning">已跳过视频开头</string>
<string name="revanced_sb_skipped_intro_middle">已跳过中场</string>
@@ -971,7 +975,7 @@ Second \"item\" text"</string>
(%3$s)
准备好提交了吗?"</string>
- <string name="revanced_sb_new_segment_start_is_before_end">开始必须在结束之前</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">起始位置须在结束位置前</string>
<string name="revanced_sb_new_segment_mark_locations_first">首先在时间栏上标记两个位置</string>
<string name="revanced_sb_new_segment_preview_segment_first">预览片段,并确保它可以顺利跳过</string>
<string name="revanced_sb_new_segment_edit_by_hand_title">手动编辑线段时间</string>
@@ -1072,8 +1076,8 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.miniplayer.miniplayerPatch">
<string name="revanced_miniplayer_screen_title">小型播放器</string>
- <string name="revanced_miniplayer_screen_summary">更改应用内最小化播放器的样式</string>
- <string name="revanced_miniplayer_type_title">最小化播放器类型</string>
+ <string name="revanced_miniplayer_screen_summary">更改应用内小型播放器的样式</string>
+ <string name="revanced_miniplayer_type_title">小型播放器类型</string>
<string name="revanced_miniplayer_type_entry_0">已禁用</string>
<string name="revanced_miniplayer_type_entry_1">默认</string>
<string name="revanced_miniplayer_type_entry_2">极简</string>
@@ -1101,19 +1105,19 @@ Second \"item\" text"</string>
迷你播放器可以拖动到屏幕的左侧或右侧"</string>
<string name="revanced_miniplayer_horizontal_drag_summary_off">已禁用水平拖动</string>
<string name="revanced_miniplayer_hide_expand_close_title">隐藏关闭按钮</string>
- <string name="revanced_miniplayer_hide_expand_close_summary_on">已隐藏关闭按钮</string>
- <string name="revanced_miniplayer_hide_expand_close_summary_off">关闭按钮显示</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">关闭按钮已隐藏</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">关闭按钮已显示</string>
<string name="revanced_miniplayer_hide_expand_close_legacy_title">隐藏展开和关闭按钮</string>
<string name="revanced_miniplayer_hide_expand_close_legacy_summary_on">"按钮已隐藏
滑动以展开或关闭"</string>
<string name="revanced_miniplayer_hide_expand_close_legacy_summary_off">展开和关闭按钮显示</string>
<string name="revanced_miniplayer_hide_subtext_title">隐藏副标题</string>
- <string name="revanced_miniplayer_hide_subtext_summary_on">副标题隐藏</string>
- <string name="revanced_miniplayer_hide_subtext_summary_off">副标题显示</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">副标题已隐藏</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">副标题已显示</string>
<string name="revanced_miniplayer_hide_rewind_forward_title">隐藏快进和快退按钮</string>
- <string name="revanced_miniplayer_hide_rewind_forward_summary_on">快进和快退隐藏</string>
- <string name="revanced_miniplayer_hide_rewind_forward_summary_off">快进和快退显示</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">快进和快退已隐藏</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">快进和快退已显示</string>
<string name="revanced_miniplayer_width_dip_title">初始大小</string>
<string name="revanced_miniplayer_width_dip_summary">屏幕上初始大小,以像素为单位</string>
<string name="revanced_miniplayer_width_dip_invalid_toast">像素大小必须介于 %1$s 和 %2$s 之间</string>
@@ -1193,8 +1197,8 @@ Second \"item\" text"</string>
</patch>
<patch id="misc.autorepeat.autoRepeatPatch">
<string name="revanced_auto_repeat_title">启用自动重复</string>
- <string name="revanced_auto_repeat_summary_on">已启用自动重复</string>
- <string name="revanced_auto_repeat_summary_off">已禁用自动重复</string>
+ <string name="revanced_auto_repeat_summary_on">自动重复已启用</string>
+ <string name="revanced_auto_repeat_summary_off">自动重复已禁用</string>
</patch>
<patch id="misc.dimensions.spoof.spoofDeviceDimensionsPatch">
<string name="revanced_spoof_device_dimensions_title">伪装设备尺寸</string>
@@ -1222,8 +1226,8 @@ Second \"item\" text"</string>
</patch>
<patch id="misc.privacy.removeTrackingQueryParameterPatch">
<string name="revanced_remove_tracking_query_parameter_title">删除跟踪查询参数</string>
- <string name="revanced_remove_tracking_query_parameter_summary_on">已从链接中删除跟踪参数</string>
- <string name="revanced_remove_tracking_query_parameter_summary_off">不从链接中删除跟踪参数</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">链接中跟踪参数已去除</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">链接中跟踪参数未去除</string>
</patch>
<patch id="misc.zoomhaptics.zoomHapticsPatch">
<string name="revanced_disable_zoom_haptics_title">禁用缩放触觉反馈</string>
@@ -1249,8 +1253,8 @@ Second \"item\" text"</string>
</patch>
<patch id="video.speed.button.playbackSpeedButtonPatch">
<string name="revanced_playback_speed_dialog_button_title">显示播放速度对话框按钮</string>
- <string name="revanced_playback_speed_dialog_button_summary_on">已显示按钮</string>
- <string name="revanced_playback_speed_dialog_button_summary_off">不显示按钮</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">按钮已显示</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">按钮未显示</string>
</patch>
<patch id="video.speed.custom.customPlaybackSpeedPatch">
<string name="revanced_custom_speed_menu_title">自定义播放速度菜单</string>
@@ -1330,8 +1334,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">奥里雅语</string>
<string name="revanced_spoof_video_streams_language_PA">旁遮普语</string>
<string name="revanced_spoof_video_streams_language_PL">波兰语</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">葡萄牙语(巴西)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">葡萄牙语(葡萄牙)</string>
<string name="revanced_spoof_video_streams_language_RO">罗马尼亚语</string>
<string name="revanced_spoof_video_streams_language_RU">俄语</string>
<string name="revanced_spoof_video_streams_language_SK">斯洛伐克语</string>
diff --git a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
index a2f3584cae..ab598f072c 100644
--- a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
+++ b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
@@ -1331,8 +1331,6 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_language_OR">奧利亞語</string>
<string name="revanced_spoof_video_streams_language_PA">旁遮普語</string>
<string name="revanced_spoof_video_streams_language_PL">波蘭語</string>
- <string name="revanced_spoof_video_streams_language_PT_BR">葡萄牙語 (巴西)</string>
- <string name="revanced_spoof_video_streams_language_PT_PT">葡萄牙語 (葡萄牙)</string>
<string name="revanced_spoof_video_streams_language_RO">羅馬尼亞語</string>
<string name="revanced_spoof_video_streams_language_RU">俄語</string>
<string name="revanced_spoof_video_streams_language_SK">斯洛伐克語</string>
|
chore
|
Sync translations (#4198)
|
169e2ba67024210450ef6cc74e734d3e7f162cbe
|
2023-02-20 09:45:01
|
oSumAtrIX
|
feat(youtube/general-ads): hide horizontal video shelf
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralAdsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralAdsResourcePatch.kt
index ba4737b96f..6a4d8815d2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralAdsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralAdsResourcePatch.kt
@@ -37,6 +37,13 @@ class GeneralAdsResourcePatch : ResourcePatch {
StringResource("revanced_adremover_separator_summary_on", "Gray separators are hidden"),
StringResource("revanced_adremover_separator_summary_off", "Gray separators are shown")
),
+ SwitchPreference(
+ "revanced_horizontal_video_shelf",
+ StringResource("revanced_horizontal_video_shelf_title", "Hide horizontal video shelf"),
+ true,
+ StringResource("revanced_horizontal_video_shelf_summary_on", "Shelf is hidden"),
+ StringResource("revanced_horizontal_video_shelf_summary_off", "Shelf is shown")
+ ),
SwitchPreference(
"revanced_adremover_hide_channel_guidelines",
StringResource("revanced_adremover_hide_channel_guidelines_enabled_title", "Hide channel guidelines"),
|
feat
|
hide horizontal video shelf
|
cf3116a7583d09c25c798a85687a056f143656f0
|
2024-12-08 20:49:29
|
oSumAtrIX
|
feat(YouTube Music): Add `Spoof video streams` patch to fix playback (#4065)
| false
|
diff --git a/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/BaseSettings.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/BaseSettings.java
index 13be9547ca..a5b558acde 100644
--- a/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/BaseSettings.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/BaseSettings.java
@@ -1,12 +1,15 @@
package app.revanced.extension.shared.settings;
+import app.revanced.extension.shared.spoof.ClientType;
+import app.revanced.extension.shared.spoof.SpoofVideoStreamsPatch;
+
import static java.lang.Boolean.FALSE;
import static java.lang.Boolean.TRUE;
import static app.revanced.extension.shared.settings.Setting.parent;
/**
* Settings shared across multiple apps.
- *
+ * <p>
* To ensure this class is loaded when the UI is created, app specific setting bundles should extend
* or reference this class.
*/
@@ -16,4 +19,10 @@ public class BaseSettings {
public static final BooleanSetting DEBUG_TOAST_ON_ERROR = new BooleanSetting("revanced_debug_toast_on_error", TRUE, "revanced_debug_toast_on_error_user_dialog_message");
public static final IntegerSetting CHECK_ENVIRONMENT_WARNINGS_ISSUED = new IntegerSetting("revanced_check_environment_warnings_issued", 0, true, false);
+
+ public static final BooleanSetting SPOOF_VIDEO_STREAMS = new BooleanSetting("revanced_spoof_video_streams", TRUE, true, "revanced_spoof_video_streams_user_dialog_message");
+ public static final BooleanSetting SPOOF_VIDEO_STREAMS_IOS_FORCE_AVC = new BooleanSetting("revanced_spoof_video_streams_ios_force_avc", FALSE, true,
+ "revanced_spoof_video_streams_ios_force_avc_user_dialog_message", new SpoofVideoStreamsPatch.ForceiOSAVCAvailability());
+ public static final EnumSetting<ClientType> SPOOF_VIDEO_STREAMS_CLIENT_TYPE = new EnumSetting<>("revanced_spoof_video_streams_client", ClientType.ANDROID_VR, true, parent(SPOOF_VIDEO_STREAMS));
+
}
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/ClientType.java
similarity index 92%
rename from extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java
rename to extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/ClientType.java
index b29d665b48..93a7815024 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/ClientType.java
@@ -1,7 +1,7 @@
-package app.revanced.extension.youtube.patches.spoof;
+package app.revanced.extension.shared.spoof;
-import static app.revanced.extension.youtube.patches.spoof.DeviceHardwareSupport.allowAV1;
-import static app.revanced.extension.youtube.patches.spoof.DeviceHardwareSupport.allowVP9;
+import static app.revanced.extension.shared.spoof.DeviceHardwareSupport.allowAV1;
+import static app.revanced.extension.shared.spoof.DeviceHardwareSupport.allowVP9;
import android.os.Build;
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/DeviceHardwareSupport.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/DeviceHardwareSupport.java
similarity index 90%
rename from extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/DeviceHardwareSupport.java
rename to extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/DeviceHardwareSupport.java
index 3adc6befb3..019a13eeb7 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/DeviceHardwareSupport.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/DeviceHardwareSupport.java
@@ -1,11 +1,11 @@
-package app.revanced.extension.youtube.patches.spoof;
+package app.revanced.extension.shared.spoof;
import android.media.MediaCodecInfo;
import android.media.MediaCodecList;
import android.os.Build;
import app.revanced.extension.shared.Logger;
-import app.revanced.extension.youtube.settings.Settings;
+import app.revanced.extension.shared.settings.BaseSettings;
public class DeviceHardwareSupport {
public static final boolean DEVICE_HAS_HARDWARE_DECODING_VP9;
@@ -44,7 +44,7 @@ public class DeviceHardwareSupport {
}
public static boolean allowVP9() {
- return DEVICE_HAS_HARDWARE_DECODING_VP9 && !Settings.SPOOF_VIDEO_STREAMS_IOS_FORCE_AVC.get();
+ return DEVICE_HAS_HARDWARE_DECODING_VP9 && !BaseSettings.SPOOF_VIDEO_STREAMS_IOS_FORCE_AVC.get();
}
public static boolean allowAV1() {
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/SpoofVideoStreamsPatch.java
similarity index 93%
rename from extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java
rename to extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/SpoofVideoStreamsPatch.java
index b50e3f4ffa..1381a9ba51 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/SpoofVideoStreamsPatch.java
@@ -1,4 +1,4 @@
-package app.revanced.extension.youtube.patches.spoof;
+package app.revanced.extension.shared.spoof;
import android.net.Uri;
@@ -12,20 +12,12 @@
import app.revanced.extension.shared.Utils;
import app.revanced.extension.shared.settings.BaseSettings;
import app.revanced.extension.shared.settings.Setting;
-import app.revanced.extension.youtube.patches.spoof.requests.StreamingDataRequest;
-import app.revanced.extension.youtube.settings.Settings;
+import app.revanced.extension.shared.spoof.requests.StreamingDataRequest;
+import app.revanced.extension.shared.settings.BaseSettings;
@SuppressWarnings("unused")
public class SpoofVideoStreamsPatch {
- public static final class ForceiOSAVCAvailability implements Setting.Availability {
- @Override
- public boolean isAvailable() {
- return Settings.SPOOF_VIDEO_STREAMS.get() && Settings.SPOOF_VIDEO_STREAMS_CLIENT_TYPE.get() == ClientType.IOS;
- }
- }
-
- private static final boolean SPOOF_STREAMING_DATA = Settings.SPOOF_VIDEO_STREAMS.get();
-
+ private static final boolean SPOOF_STREAMING_DATA = BaseSettings.SPOOF_VIDEO_STREAMS.get();
/**
* Any unreachable ip address. Used to intentionally fail requests.
*/
@@ -165,4 +157,11 @@ public static byte[] removeVideoPlaybackPostBody(Uri uri, int method, byte[] pos
return postData;
}
+
+ public static final class ForceiOSAVCAvailability implements Setting.Availability {
+ @Override
+ public boolean isAvailable() {
+ return BaseSettings.SPOOF_VIDEO_STREAMS.get() && BaseSettings.SPOOF_VIDEO_STREAMS_CLIENT_TYPE.get() == ClientType.IOS;
+ }
+ }
}
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/PlayerRoutes.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/PlayerRoutes.java
similarity index 95%
rename from extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/PlayerRoutes.java
rename to extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/PlayerRoutes.java
index f77288ccc3..fa5cc18558 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/PlayerRoutes.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/PlayerRoutes.java
@@ -1,4 +1,4 @@
-package app.revanced.extension.youtube.patches.spoof.requests;
+package app.revanced.extension.shared.spoof.requests;
import org.json.JSONException;
import org.json.JSONObject;
@@ -10,7 +10,7 @@
import app.revanced.extension.shared.Utils;
import app.revanced.extension.shared.requests.Requester;
import app.revanced.extension.shared.requests.Route;
-import app.revanced.extension.youtube.patches.spoof.ClientType;
+import app.revanced.extension.shared.spoof.ClientType;
final class PlayerRoutes {
static final Route.CompiledRoute GET_STREAMING_DATA = new Route(
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/StreamingDataRequest.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/StreamingDataRequest.java
similarity index 96%
rename from extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/StreamingDataRequest.java
rename to extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/StreamingDataRequest.java
index 0c09e0fa76..8853722303 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/requests/StreamingDataRequest.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/spoof/requests/StreamingDataRequest.java
@@ -1,6 +1,6 @@
-package app.revanced.extension.youtube.patches.spoof.requests;
+package app.revanced.extension.shared.spoof.requests;
-import static app.revanced.extension.youtube.patches.spoof.requests.PlayerRoutes.GET_STREAMING_DATA;
+import static app.revanced.extension.shared.spoof.requests.PlayerRoutes.GET_STREAMING_DATA;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
@@ -22,8 +22,7 @@
import app.revanced.extension.shared.Logger;
import app.revanced.extension.shared.Utils;
import app.revanced.extension.shared.settings.BaseSettings;
-import app.revanced.extension.youtube.patches.spoof.ClientType;
-import app.revanced.extension.youtube.settings.Settings;
+import app.revanced.extension.shared.spoof.ClientType;
/**
* Video streaming data. Fetching is tied to the behavior YT uses,
@@ -70,7 +69,7 @@ protected boolean removeEldestEntry(Entry eldest) {
static {
ClientType[] allClientTypes = ClientType.values();
- ClientType preferredClient = Settings.SPOOF_VIDEO_STREAMS_CLIENT_TYPE.get();
+ ClientType preferredClient = BaseSettings.SPOOF_VIDEO_STREAMS_CLIENT_TYPE.get();
CLIENT_ORDER_TO_USE = new ClientType[allClientTypes.length];
CLIENT_ORDER_TO_USE[0] = preferredClient;
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/FullscreenPanelsRemoverPatch.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/FullscreenPanelsRemoverPatch.java
deleted file mode 100644
index f454b361c0..0000000000
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/FullscreenPanelsRemoverPatch.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package app.revanced.extension.youtube.patches;
-
-import android.view.View;
-
-import app.revanced.extension.youtube.settings.Settings;
-
-@SuppressWarnings("unused")
-public class FullscreenPanelsRemoverPatch {
- public static int getFullscreenPanelsVisibility() {
- return Settings.HIDE_FULLSCREEN_PANELS.get() ? View.GONE : View.VISIBLE;
- }
-}
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
index 4f11de9284..fb3c199c98 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
@@ -2,25 +2,42 @@
import static java.lang.Boolean.FALSE;
import static java.lang.Boolean.TRUE;
-import static app.revanced.extension.shared.settings.Setting.*;
+import static app.revanced.extension.shared.settings.Setting.Availability;
+import static app.revanced.extension.shared.settings.Setting.migrateFromOldPreferences;
+import static app.revanced.extension.shared.settings.Setting.migrateOldSettingToNew;
+import static app.revanced.extension.shared.settings.Setting.parent;
+import static app.revanced.extension.shared.settings.Setting.parentsAny;
import static app.revanced.extension.youtube.patches.ChangeStartPagePatch.StartPage;
import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerHideExpandCloseAvailability;
import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerHorizontalDragAvailability;
import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType;
-import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.*;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.MINIMAL;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.MODERN_1;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.MODERN_2;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.MODERN_3;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.MODERN_4;
+import static app.revanced.extension.youtube.patches.MiniplayerPatch.MiniplayerType.PHONE;
import static app.revanced.extension.youtube.patches.SeekbarThumbnailsPatch.SeekbarThumbnailsHighQualityAvailability;
import static app.revanced.extension.youtube.patches.VersionCheckPatch.IS_19_17_OR_GREATER;
-import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.*;
+import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.IGNORE;
+import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.MANUAL_SKIP;
+import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.SKIP_AUTOMATICALLY;
+import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.SKIP_AUTOMATICALLY_ONCE;
import app.revanced.extension.shared.Logger;
-import app.revanced.extension.shared.settings.*;
+import app.revanced.extension.shared.settings.BaseSettings;
+import app.revanced.extension.shared.settings.BooleanSetting;
+import app.revanced.extension.shared.settings.EnumSetting;
+import app.revanced.extension.shared.settings.FloatSetting;
+import app.revanced.extension.shared.settings.IntegerSetting;
+import app.revanced.extension.shared.settings.LongSetting;
+import app.revanced.extension.shared.settings.Setting;
+import app.revanced.extension.shared.settings.StringSetting;
import app.revanced.extension.shared.settings.preference.SharedPrefCategory;
import app.revanced.extension.youtube.patches.AlternativeThumbnailsPatch.DeArrowAvailability;
import app.revanced.extension.youtube.patches.AlternativeThumbnailsPatch.StillImagesAvailability;
import app.revanced.extension.youtube.patches.AlternativeThumbnailsPatch.ThumbnailOption;
import app.revanced.extension.youtube.patches.AlternativeThumbnailsPatch.ThumbnailStillTime;
-import app.revanced.extension.youtube.patches.spoof.ClientType;
-import app.revanced.extension.youtube.patches.spoof.SpoofVideoStreamsPatch;
import app.revanced.extension.youtube.sponsorblock.SponsorBlockSettings;
public class Settings extends BaseSettings {
@@ -37,17 +54,17 @@ public class Settings extends BaseSettings {
"0.25\n0.5\n0.75\n0.9\n0.95\n1.0\n1.05\n1.1\n1.25\n1.5\n1.75\n2.0\n3.0\n4.0\n5.0", true);
// Ads
- public static final BooleanSetting HIDE_FULLSCREEN_ADS = new BooleanSetting("revanced_hide_fullscreen_ads", TRUE);
public static final BooleanSetting HIDE_BUTTONED_ADS = new BooleanSetting("revanced_hide_buttoned_ads", TRUE);
+ public static final BooleanSetting HIDE_FULLSCREEN_ADS = new BooleanSetting("revanced_hide_fullscreen_ads", TRUE);
public static final BooleanSetting HIDE_GENERAL_ADS = new BooleanSetting("revanced_hide_general_ads", TRUE);
public static final BooleanSetting HIDE_GET_PREMIUM = new BooleanSetting("revanced_hide_get_premium", TRUE);
public static final BooleanSetting HIDE_HIDE_LATEST_POSTS = new BooleanSetting("revanced_hide_latest_posts_ads", TRUE);
public static final BooleanSetting HIDE_MERCHANDISE_BANNERS = new BooleanSetting("revanced_hide_merchandise_banners", TRUE);
public static final BooleanSetting HIDE_PAID_PROMOTION_LABEL = new BooleanSetting("revanced_hide_paid_promotion_label", TRUE);
- public static final BooleanSetting HIDE_PRODUCTS_BANNER = new BooleanSetting("revanced_hide_products_banner", TRUE);
public static final BooleanSetting HIDE_PLAYER_STORE_SHELF = new BooleanSetting("revanced_hide_player_store_shelf", TRUE);
- public static final BooleanSetting HIDE_SHOPPING_LINKS = new BooleanSetting("revanced_hide_shopping_links", TRUE);
+ public static final BooleanSetting HIDE_PRODUCTS_BANNER = new BooleanSetting("revanced_hide_products_banner", TRUE);
public static final BooleanSetting HIDE_SELF_SPONSOR = new BooleanSetting("revanced_hide_self_sponsor_ads", TRUE);
+ public static final BooleanSetting HIDE_SHOPPING_LINKS = new BooleanSetting("revanced_hide_shopping_links", TRUE);
public static final BooleanSetting HIDE_VIDEO_ADS = new BooleanSetting("revanced_hide_video_ads", TRUE, true);
public static final BooleanSetting HIDE_VISIT_STORE_BUTTON = new BooleanSetting("revanced_hide_visit_store_button", TRUE);
public static final BooleanSetting HIDE_WEB_SEARCH_RESULTS = new BooleanSetting("revanced_hide_web_search_results", TRUE);
@@ -55,9 +72,27 @@ public class Settings extends BaseSettings {
// Feed
public static final BooleanSetting HIDE_ALBUM_CARDS = new BooleanSetting("revanced_hide_album_cards", FALSE, true);
public static final BooleanSetting HIDE_ARTIST_CARDS = new BooleanSetting("revanced_hide_artist_cards", FALSE);
- public static final BooleanSetting HIDE_EXPANDABLE_CHIP = new BooleanSetting("revanced_hide_expandable_chip", TRUE);
+ public static final BooleanSetting HIDE_CHIPS_SHELF = new BooleanSetting("revanced_hide_chips_shelf", TRUE);
+ public static final BooleanSetting HIDE_COMMUNITY_POSTS = new BooleanSetting("revanced_hide_community_posts", FALSE);
+ public static final BooleanSetting HIDE_COMPACT_BANNER = new BooleanSetting("revanced_hide_compact_banner", TRUE);
+ public static final BooleanSetting HIDE_CROWDFUNDING_BOX = new BooleanSetting("revanced_hide_crowdfunding_box", FALSE, true);
public static final BooleanSetting HIDE_DOODLES = new BooleanSetting("revanced_hide_doodles", FALSE, true, "revanced_hide_doodles_user_dialog_message");
-
+ public static final BooleanSetting HIDE_EXPANDABLE_CHIP = new BooleanSetting("revanced_hide_expandable_chip", TRUE);
+ public static final BooleanSetting HIDE_FEED_SURVEY = new BooleanSetting("revanced_hide_feed_survey", TRUE);
+ public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_FEED = new BooleanSetting("revanced_hide_filter_bar_feed_in_feed", FALSE, true);
+ public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_RELATED_VIDEOS = new BooleanSetting("revanced_hide_filter_bar_feed_in_related_videos", FALSE, true);
+ public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_SEARCH = new BooleanSetting("revanced_hide_filter_bar_feed_in_search", FALSE, true);
+ public static final BooleanSetting HIDE_FLOATING_MICROPHONE_BUTTON = new BooleanSetting("revanced_hide_floating_microphone_button", TRUE, true);
+ public static final BooleanSetting HIDE_FOR_YOU_SHELF = new BooleanSetting("revanced_hide_for_you_shelf", TRUE);
+ public static final BooleanSetting HIDE_HORIZONTAL_SHELVES = new BooleanSetting("revanced_hide_horizontal_shelves", TRUE);
+ public static final BooleanSetting HIDE_IMAGE_SHELF = new BooleanSetting("revanced_hide_image_shelf", TRUE);
+ public static final BooleanSetting HIDE_MIX_PLAYLISTS = new BooleanSetting("revanced_hide_mix_playlists", TRUE);
+ public static final BooleanSetting HIDE_MOVIES_SECTION = new BooleanSetting("revanced_hide_movies_section", TRUE);
+ public static final BooleanSetting HIDE_NOTIFY_ME_BUTTON = new BooleanSetting("revanced_hide_notify_me_button", TRUE);
+ public static final BooleanSetting HIDE_PLAYABLES = new BooleanSetting("revanced_hide_playables", TRUE);
+ public static final BooleanSetting HIDE_SEARCH_RESULT_RECOMMENDATIONS = new BooleanSetting("revanced_hide_search_result_recommendations", TRUE);
+ public static final BooleanSetting HIDE_SEARCH_RESULT_SHELF_HEADER = new BooleanSetting("revanced_hide_search_result_shelf_header", FALSE);
+ public static final BooleanSetting HIDE_SHOW_MORE_BUTTON = new BooleanSetting("revanced_hide_show_more_button", TRUE, true);
// Alternative thumbnails
public static final EnumSetting<ThumbnailOption> ALT_THUMBNAIL_HOME = new EnumSetting<>("revanced_alt_thumbnail_home", ThumbnailOption.ORIGINAL);
public static final EnumSetting<ThumbnailOption> ALT_THUMBNAIL_SUBSCRIPTIONS = new EnumSetting<>("revanced_alt_thumbnail_subscription", ThumbnailOption.ORIGINAL);
@@ -69,7 +104,6 @@ public class Settings extends BaseSettings {
public static final BooleanSetting ALT_THUMBNAIL_DEARROW_CONNECTION_TOAST = new BooleanSetting("revanced_alt_thumbnail_dearrow_connection_toast", TRUE, new DeArrowAvailability());
public static final EnumSetting<ThumbnailStillTime> ALT_THUMBNAIL_STILLS_TIME = new EnumSetting<>("revanced_alt_thumbnail_stills_time", ThumbnailStillTime.MIDDLE, new StillImagesAvailability());
public static final BooleanSetting ALT_THUMBNAIL_STILLS_FAST = new BooleanSetting("revanced_alt_thumbnail_stills_fast", FALSE, new StillImagesAvailability());
-
// Hide keyword content
public static final BooleanSetting HIDE_KEYWORD_CONTENT_HOME = new BooleanSetting("revanced_hide_keyword_content_home", FALSE);
public static final BooleanSetting HIDE_KEYWORD_CONTENT_SUBSCRIPTIONS = new BooleanSetting("revanced_hide_keyword_content_subscriptions", FALSE);
@@ -77,61 +111,35 @@ public class Settings extends BaseSettings {
public static final StringSetting HIDE_KEYWORD_CONTENT_PHRASES = new StringSetting("revanced_hide_keyword_content_phrases", "",
parentsAny(HIDE_KEYWORD_CONTENT_HOME, HIDE_KEYWORD_CONTENT_SUBSCRIPTIONS, HIDE_KEYWORD_CONTENT_SEARCH));
- // Uncategorized layout related settings. Do not add to this section, and instead move these out and categorize them.
+ // Player
+ public static final BooleanSetting COPY_VIDEO_URL = new BooleanSetting("revanced_copy_video_url", FALSE);
+ public static final BooleanSetting COPY_VIDEO_URL_TIMESTAMP = new BooleanSetting("revanced_copy_video_url_timestamp", TRUE);
+ public static final BooleanSetting DISABLE_FULLSCREEN_AMBIENT_MODE = new BooleanSetting("revanced_disable_fullscreen_ambient_mode", TRUE, true);
+ public static final BooleanSetting DISABLE_LIKE_SUBSCRIBE_GLOW = new BooleanSetting("revanced_disable_like_subscribe_glow", FALSE);
+ public static final BooleanSetting DISABLE_ROLLING_NUMBER_ANIMATIONS = new BooleanSetting("revanced_disable_rolling_number_animations", FALSE);
public static final BooleanSetting DISABLE_SUGGESTED_VIDEO_END_SCREEN = new BooleanSetting("revanced_disable_suggested_video_end_screen", FALSE, true);
- public static final BooleanSetting GRADIENT_LOADING_SCREEN = new BooleanSetting("revanced_gradient_loading_screen", FALSE, true);
- public static final BooleanSetting HIDE_HORIZONTAL_SHELVES = new BooleanSetting("revanced_hide_horizontal_shelves", TRUE);
+ public static final BooleanSetting HIDE_AUTOPLAY_BUTTON = new BooleanSetting("revanced_hide_autoplay_button", TRUE, true);
public static final BooleanSetting HIDE_CAPTIONS_BUTTON = new BooleanSetting("revanced_hide_captions_button", FALSE);
+ public static final BooleanSetting HIDE_CAST_BUTTON = new BooleanSetting("revanced_hide_cast_button", TRUE, true);
public static final BooleanSetting HIDE_CHANNEL_BAR = new BooleanSetting("revanced_hide_channel_bar", FALSE);
public static final BooleanSetting HIDE_CHANNEL_MEMBER_SHELF = new BooleanSetting("revanced_hide_channel_member_shelf", TRUE);
- public static final BooleanSetting HIDE_CHIPS_SHELF = new BooleanSetting("revanced_hide_chips_shelf", TRUE);
public static final BooleanSetting HIDE_COMMUNITY_GUIDELINES = new BooleanSetting("revanced_hide_community_guidelines", TRUE);
- public static final BooleanSetting HIDE_COMMUNITY_POSTS = new BooleanSetting("revanced_hide_community_posts", FALSE);
- public static final BooleanSetting HIDE_COMPACT_BANNER = new BooleanSetting("revanced_hide_compact_banner", TRUE);
- public static final BooleanSetting HIDE_CROWDFUNDING_BOX = new BooleanSetting("revanced_hide_crowdfunding_box", FALSE, true);
public static final BooleanSetting HIDE_EMERGENCY_BOX = new BooleanSetting("revanced_hide_emergency_box", TRUE);
public static final BooleanSetting HIDE_ENDSCREEN_CARDS = new BooleanSetting("revanced_hide_endscreen_cards", FALSE);
- public static final BooleanSetting HIDE_FEED_SURVEY = new BooleanSetting("revanced_hide_feed_survey", TRUE);
- public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_FEED = new BooleanSetting("revanced_hide_filter_bar_feed_in_feed", FALSE, true);
- public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_RELATED_VIDEOS = new BooleanSetting("revanced_hide_filter_bar_feed_in_related_videos", FALSE, true);
- public static final BooleanSetting HIDE_FILTER_BAR_FEED_IN_SEARCH = new BooleanSetting("revanced_hide_filter_bar_feed_in_search", FALSE, true);
- public static final BooleanSetting HIDE_FLOATING_MICROPHONE_BUTTON = new BooleanSetting("revanced_hide_floating_microphone_button", TRUE, true);
- public static final BooleanSetting HIDE_FULLSCREEN_PANELS = new BooleanSetting("revanced_hide_fullscreen_panels", TRUE, true);
public static final BooleanSetting HIDE_HIDE_CHANNEL_GUIDELINES = new BooleanSetting("revanced_hide_channel_guidelines", TRUE);
public static final BooleanSetting HIDE_HIDE_INFO_PANELS = new BooleanSetting("revanced_hide_info_panels", TRUE);
- public static final BooleanSetting HIDE_IMAGE_SHELF = new BooleanSetting("revanced_hide_image_shelf", TRUE);
public static final BooleanSetting HIDE_INFO_CARDS = new BooleanSetting("revanced_hide_info_cards", FALSE);
public static final BooleanSetting HIDE_JOIN_MEMBERSHIP_BUTTON = new BooleanSetting("revanced_hide_join_membership_button", TRUE);
- public static final BooleanSetting HIDE_SHOW_MORE_BUTTON = new BooleanSetting("revanced_hide_show_more_button", TRUE, true);
public static final BooleanSetting HIDE_MEDICAL_PANELS = new BooleanSetting("revanced_hide_medical_panels", TRUE);
- public static final BooleanSetting HIDE_MIX_PLAYLISTS = new BooleanSetting("revanced_hide_mix_playlists", TRUE);
- public static final BooleanSetting HIDE_MOVIES_SECTION = new BooleanSetting("revanced_hide_movies_section", TRUE);
- public static final BooleanSetting HIDE_NOTIFY_ME_BUTTON = new BooleanSetting("revanced_hide_notify_me_button", TRUE);
- public static final BooleanSetting HIDE_PLAYABLES = new BooleanSetting("revanced_hide_playables", TRUE);
+ public static final BooleanSetting HIDE_PLAYER_PREVIOUS_NEXT_BUTTONS = new BooleanSetting("revanced_hide_player_previous_next_buttons", FALSE, true);
public static final BooleanSetting HIDE_QUICK_ACTIONS = new BooleanSetting("revanced_hide_quick_actions", FALSE);
public static final BooleanSetting HIDE_RELATED_VIDEOS = new BooleanSetting("revanced_hide_related_videos", FALSE);
- public static final BooleanSetting HIDE_SEARCH_RESULT_SHELF_HEADER = new BooleanSetting("revanced_hide_search_result_shelf_header", FALSE);
public static final BooleanSetting HIDE_SUBSCRIBERS_COMMUNITY_GUIDELINES = new BooleanSetting("revanced_hide_subscribers_community_guidelines", TRUE);
public static final BooleanSetting HIDE_TIMED_REACTIONS = new BooleanSetting("revanced_hide_timed_reactions", TRUE);
- public static final BooleanSetting HIDE_TIMESTAMP = new BooleanSetting("revanced_hide_timestamp", FALSE);
public static final BooleanSetting HIDE_VIDEO_CHANNEL_WATERMARK = new BooleanSetting("revanced_hide_channel_watermark", TRUE);
- public static final BooleanSetting HIDE_FOR_YOU_SHELF = new BooleanSetting("revanced_hide_for_you_shelf", TRUE);
- public static final BooleanSetting HIDE_SEARCH_RESULT_RECOMMENDATIONS = new BooleanSetting("revanced_hide_search_result_recommendations", TRUE);
- public static final IntegerSetting PLAYER_OVERLAY_OPACITY = new IntegerSetting("revanced_player_overlay_opacity",100, true);
- public static final BooleanSetting PLAYER_POPUP_PANELS = new BooleanSetting("revanced_hide_player_popup_panels", FALSE);
-
- // Player
- public static final BooleanSetting DISABLE_FULLSCREEN_AMBIENT_MODE = new BooleanSetting("revanced_disable_fullscreen_ambient_mode", TRUE, true);
- public static final BooleanSetting DISABLE_ROLLING_NUMBER_ANIMATIONS = new BooleanSetting("revanced_disable_rolling_number_animations", FALSE);
- public static final BooleanSetting DISABLE_LIKE_SUBSCRIBE_GLOW = new BooleanSetting("revanced_disable_like_subscribe_glow", FALSE);
- public static final BooleanSetting HIDE_AUTOPLAY_BUTTON = new BooleanSetting("revanced_hide_autoplay_button", TRUE, true);
- public static final BooleanSetting HIDE_CAST_BUTTON = new BooleanSetting("revanced_hide_cast_button", TRUE, true);
- public static final BooleanSetting HIDE_PLAYER_PREVIOUS_NEXT_BUTTONS = new BooleanSetting("revanced_hide_player_previous_next_buttons", FALSE, true);
- private static final BooleanSetting DEPRECATED_HIDE_PLAYER_BUTTONS = new BooleanSetting("revanced_hide_player_buttons", FALSE, true);
- public static final BooleanSetting COPY_VIDEO_URL = new BooleanSetting("revanced_copy_video_url", FALSE);
- public static final BooleanSetting COPY_VIDEO_URL_TIMESTAMP = new BooleanSetting("revanced_copy_video_url_timestamp", TRUE);
public static final BooleanSetting PLAYBACK_SPEED_DIALOG_BUTTON = new BooleanSetting("revanced_playback_speed_dialog_button", FALSE);
-
+ public static final BooleanSetting PLAYER_POPUP_PANELS = new BooleanSetting("revanced_hide_player_popup_panels", FALSE);
+ public static final IntegerSetting PLAYER_OVERLAY_OPACITY = new IntegerSetting("revanced_player_overlay_opacity", 100, true);
// Miniplayer
public static final EnumSetting<MiniplayerType> MINIPLAYER_TYPE = new EnumSetting<>("revanced_miniplayer_type", MiniplayerType.ORIGINAL, true);
private static final Availability MINIPLAYER_ANY_MODERN = MINIPLAYER_TYPE.availability(MODERN_1, MODERN_2, MODERN_3, MODERN_4);
@@ -144,21 +152,18 @@ public class Settings extends BaseSettings {
public static final BooleanSetting MINIPLAYER_ROUNDED_CORNERS = new BooleanSetting("revanced_miniplayer_rounded_corners", TRUE, true, MINIPLAYER_ANY_MODERN);
public static final IntegerSetting MINIPLAYER_WIDTH_DIP = new IntegerSetting("revanced_miniplayer_width_dip", 192, true, MINIPLAYER_ANY_MODERN);
public static final IntegerSetting MINIPLAYER_OPACITY = new IntegerSetting("revanced_miniplayer_opacity", 100, true, MINIPLAYER_TYPE.availability(MODERN_1));
-
// External downloader
public static final BooleanSetting EXTERNAL_DOWNLOADER = new BooleanSetting("revanced_external_downloader", FALSE);
public static final BooleanSetting EXTERNAL_DOWNLOADER_ACTION_BUTTON = new BooleanSetting("revanced_external_downloader_action_button", FALSE);
public static final StringSetting EXTERNAL_DOWNLOADER_PACKAGE_NAME = new StringSetting("revanced_external_downloader_name",
"org.schabi.newpipe" /* NewPipe */, parentsAny(EXTERNAL_DOWNLOADER, EXTERNAL_DOWNLOADER_ACTION_BUTTON));
-
// Comments
public static final BooleanSetting HIDE_COMMENTS_BY_MEMBERS_HEADER = new BooleanSetting("revanced_hide_comments_by_members_header", FALSE);
- public static final BooleanSetting HIDE_COMMENTS_SECTION = new BooleanSetting("revanced_hide_comments_section", FALSE);
public static final BooleanSetting HIDE_COMMENTS_CREATE_A_SHORT_BUTTON = new BooleanSetting("revanced_hide_comments_create_a_short_button", TRUE);
public static final BooleanSetting HIDE_COMMENTS_PREVIEW_COMMENT = new BooleanSetting("revanced_hide_comments_preview_comment", FALSE);
+ public static final BooleanSetting HIDE_COMMENTS_SECTION = new BooleanSetting("revanced_hide_comments_section", FALSE);
public static final BooleanSetting HIDE_COMMENTS_THANKS_BUTTON = new BooleanSetting("revanced_hide_comments_thanks_button", TRUE);
public static final BooleanSetting HIDE_COMMENTS_TIMESTAMP_AND_EMOJI_BUTTONS = new BooleanSetting("revanced_hide_comments_timestamp_and_emoji_buttons", TRUE);
-
// Description
public static final BooleanSetting HIDE_ATTRIBUTES_SECTION = new BooleanSetting("revanced_hide_attributes_section", FALSE);
public static final BooleanSetting HIDE_CHAPTERS_SECTION = new BooleanSetting("revanced_hide_chapters_section", TRUE);
@@ -166,47 +171,43 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_KEY_CONCEPTS_SECTION = new BooleanSetting("revanced_hide_key_concepts_section", FALSE);
public static final BooleanSetting HIDE_PODCAST_SECTION = new BooleanSetting("revanced_hide_podcast_section", TRUE);
public static final BooleanSetting HIDE_TRANSCRIPT_SECTION = new BooleanSetting("revanced_hide_transcript_section", TRUE);
-
// Action buttons
+ public static final BooleanSetting HIDE_CLIP_BUTTON = new BooleanSetting("revanced_hide_clip_button", TRUE);
+ public static final BooleanSetting HIDE_DOWNLOAD_BUTTON = new BooleanSetting("revanced_hide_download_button", FALSE);
public static final BooleanSetting HIDE_LIKE_DISLIKE_BUTTON = new BooleanSetting("revanced_hide_like_dislike_button", FALSE);
- public static final BooleanSetting HIDE_SHARE_BUTTON = new BooleanSetting("revanced_hide_share_button", FALSE);
- public static final BooleanSetting HIDE_REPORT_BUTTON = new BooleanSetting("revanced_hide_report_button", FALSE);
+ public static final BooleanSetting HIDE_PLAYLIST_BUTTON = new BooleanSetting("revanced_hide_playlist_button", FALSE);
public static final BooleanSetting HIDE_REMIX_BUTTON = new BooleanSetting("revanced_hide_remix_button", TRUE);
- public static final BooleanSetting HIDE_DOWNLOAD_BUTTON = new BooleanSetting("revanced_hide_download_button", FALSE);
+ public static final BooleanSetting HIDE_REPORT_BUTTON = new BooleanSetting("revanced_hide_report_button", FALSE);
+ public static final BooleanSetting HIDE_SHARE_BUTTON = new BooleanSetting("revanced_hide_share_button", FALSE);
public static final BooleanSetting HIDE_THANKS_BUTTON = new BooleanSetting("revanced_hide_thanks_button", TRUE);
- public static final BooleanSetting HIDE_CLIP_BUTTON = new BooleanSetting("revanced_hide_clip_button", TRUE);
- public static final BooleanSetting HIDE_PLAYLIST_BUTTON = new BooleanSetting("revanced_hide_playlist_button", FALSE);
-
// Player flyout menu items
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_CAPTIONS = new BooleanSetting("revanced_hide_player_flyout_captions", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_ADDITIONAL_SETTINGS = new BooleanSetting("revanced_hide_player_flyout_additional_settings", FALSE);
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_LOOP_VIDEO = new BooleanSetting("revanced_hide_player_flyout_loop_video", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_AMBIENT_MODE = new BooleanSetting("revanced_hide_player_flyout_ambient_mode", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_AUDIO_TRACK = new BooleanSetting("revanced_hide_player_flyout_audio_track", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_CAPTIONS = new BooleanSetting("revanced_hide_player_flyout_captions", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_HELP = new BooleanSetting("revanced_hide_player_flyout_help", TRUE);
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_SPEED = new BooleanSetting("revanced_hide_player_flyout_speed", FALSE);
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_MORE_INFO = new BooleanSetting("revanced_hide_player_flyout_more_info", TRUE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_LOCK_SCREEN = new BooleanSetting("revanced_hide_player_flyout_lock_screen", FALSE);
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_AUDIO_TRACK = new BooleanSetting("revanced_hide_player_flyout_audio_track", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_LOOP_VIDEO = new BooleanSetting("revanced_hide_player_flyout_loop_video", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_MORE_INFO = new BooleanSetting("revanced_hide_player_flyout_more_info", TRUE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_SLEEP_TIMER = new BooleanSetting("revanced_hide_player_flyout_sleep_timer", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_SPEED = new BooleanSetting("revanced_hide_player_flyout_speed", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_STABLE_VOLUME = new BooleanSetting("revanced_hide_player_flyout_stable_volume", FALSE);
- public static final BooleanSetting HIDE_PLAYER_FLYOUT_WATCH_IN_VR = new BooleanSetting("revanced_hide_player_flyout_watch_in_vr", TRUE);
- private static final BooleanSetting DEPRECATED_HIDE_PLAYER_FLYOUT_VIDEO_QUALITY_FOOTER = new BooleanSetting("revanced_hide_video_quality_menu_footer", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_VIDEO_QUALITY_FOOTER = new BooleanSetting("revanced_hide_player_flyout_video_quality_footer", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_WATCH_IN_VR = new BooleanSetting("revanced_hide_player_flyout_watch_in_vr", TRUE);
// General layout
- public static final EnumSetting<StartPage> CHANGE_START_PAGE = new EnumSetting<>("revanced_change_start_page", StartPage.ORIGINAL, true);
- public static final BooleanSetting SPOOF_APP_VERSION = new BooleanSetting("revanced_spoof_app_version", FALSE, true, "revanced_spoof_app_version_user_dialog_message");
- public static final StringSetting SPOOF_APP_VERSION_TARGET = new StringSetting("revanced_spoof_app_version_target", IS_19_17_OR_GREATER ? "19.35.36" : "17.33.42", true, parent(SPOOF_APP_VERSION));
- public static final BooleanSetting TABLET_LAYOUT = new BooleanSetting("revanced_tablet_layout", FALSE, true, "revanced_tablet_layout_user_dialog_message");
- public static final BooleanSetting WIDE_SEARCHBAR = new BooleanSetting("revanced_wide_searchbar", FALSE, true);
public static final BooleanSetting BYPASS_IMAGE_REGION_RESTRICTIONS = new BooleanSetting("revanced_bypass_image_region_restrictions", FALSE, true);
+ public static final BooleanSetting GRADIENT_LOADING_SCREEN = new BooleanSetting("revanced_gradient_loading_screen", FALSE, true);
public static final BooleanSetting REMOVE_VIEWER_DISCRETION_DIALOG = new BooleanSetting("revanced_remove_viewer_discretion_dialog", FALSE,
"revanced_remove_viewer_discretion_dialog_user_dialog_message");
-
+ public static final BooleanSetting SPOOF_APP_VERSION = new BooleanSetting("revanced_spoof_app_version", FALSE, true, "revanced_spoof_app_version_user_dialog_message");
+ public static final BooleanSetting TABLET_LAYOUT = new BooleanSetting("revanced_tablet_layout", FALSE, true, "revanced_tablet_layout_user_dialog_message");
+ public static final BooleanSetting WIDE_SEARCHBAR = new BooleanSetting("revanced_wide_searchbar", FALSE, true);
+ public static final EnumSetting<StartPage> CHANGE_START_PAGE = new EnumSetting<>("revanced_change_start_page", StartPage.ORIGINAL, true);
+ public static final StringSetting SPOOF_APP_VERSION_TARGET = new StringSetting("revanced_spoof_app_version_target", IS_19_17_OR_GREATER ? "19.35.36" : "17.33.42", true, parent(SPOOF_APP_VERSION));
// Custom filter
public static final BooleanSetting CUSTOM_FILTER = new BooleanSetting("revanced_custom_filter", FALSE);
public static final StringSetting CUSTOM_FILTER_STRINGS = new StringSetting("revanced_custom_filter_strings", "", true, parent(CUSTOM_FILTER));
-
// Navigation buttons
public static final BooleanSetting HIDE_HOME_BUTTON = new BooleanSetting("revanced_hide_home_button", FALSE, true);
public static final BooleanSetting HIDE_CREATE_BUTTON = new BooleanSetting("revanced_hide_create_button", TRUE, true);
@@ -216,71 +217,67 @@ public class Settings extends BaseSettings {
public static final BooleanSetting SWITCH_CREATE_WITH_NOTIFICATIONS_BUTTON = new BooleanSetting("revanced_switch_create_with_notifications_button", TRUE, true);
// Shorts
- public static final BooleanSetting DISABLE_SHORTS_BACKGROUND_PLAYBACK = new BooleanSetting("revanced_shorts_disable_background_playback", FALSE);
public static final BooleanSetting DISABLE_RESUMING_SHORTS_PLAYER = new BooleanSetting("revanced_disable_resuming_shorts_player", FALSE);
+ public static final BooleanSetting DISABLE_SHORTS_BACKGROUND_PLAYBACK = new BooleanSetting("revanced_shorts_disable_background_playback", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_CHANNEL_BAR = new BooleanSetting("revanced_hide_shorts_channel_bar", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_COMMENTS_BUTTON = new BooleanSetting("revanced_hide_shorts_comments_button", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_DISLIKE_BUTTON = new BooleanSetting("revanced_hide_shorts_dislike_button", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_FULL_VIDEO_LINK_LABEL = new BooleanSetting("revanced_hide_shorts_full_video_link_label", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_GREEN_SCREEN_BUTTON = new BooleanSetting("revanced_hide_shorts_green_screen_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_HASHTAG_BUTTON = new BooleanSetting("revanced_hide_shorts_hashtag_button", TRUE);
public static final BooleanSetting HIDE_SHORTS_HOME = new BooleanSetting("revanced_hide_shorts_home", FALSE);
- public static final BooleanSetting HIDE_SHORTS_SUBSCRIPTIONS = new BooleanSetting("revanced_hide_shorts_subscriptions", FALSE);
- public static final BooleanSetting HIDE_SHORTS_SEARCH = new BooleanSetting("revanced_hide_shorts_search", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_INFO_PANEL = new BooleanSetting("revanced_hide_shorts_info_panel", TRUE);
public static final BooleanSetting HIDE_SHORTS_JOIN_BUTTON = new BooleanSetting("revanced_hide_shorts_join_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_SUBSCRIBE_BUTTON = new BooleanSetting("revanced_hide_shorts_subscribe_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_PAUSED_OVERLAY_BUTTONS = new BooleanSetting("revanced_hide_shorts_paused_overlay_buttons", FALSE);
- public static final BooleanSetting HIDE_SHORTS_SHOP_BUTTON = new BooleanSetting("revanced_hide_shorts_shop_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_TAGGED_PRODUCTS = new BooleanSetting("revanced_hide_shorts_tagged_products", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_LIKE_BUTTON = new BooleanSetting("revanced_hide_shorts_like_button", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_LIKE_FOUNTAIN = new BooleanSetting("revanced_hide_shorts_like_fountain", TRUE);
public static final BooleanSetting HIDE_SHORTS_LOCATION_LABEL = new BooleanSetting("revanced_hide_shorts_location_label", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_NAVIGATION_BAR = new BooleanSetting("revanced_hide_shorts_navigation_bar", FALSE, true);
+ public static final BooleanSetting HIDE_SHORTS_PAUSED_OVERLAY_BUTTONS = new BooleanSetting("revanced_hide_shorts_paused_overlay_buttons", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_REMIX_BUTTON = new BooleanSetting("revanced_hide_shorts_remix_button", TRUE);
public static final BooleanSetting HIDE_SHORTS_SAVE_SOUND_BUTTON = new BooleanSetting("revanced_hide_shorts_save_sound_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_USE_TEMPLATE_BUTTON = new BooleanSetting("revanced_hide_shorts_use_template_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_UPCOMING_BUTTON = new BooleanSetting("revanced_hide_shorts_upcoming_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_GREEN_SCREEN_BUTTON = new BooleanSetting("revanced_hide_shorts_green_screen_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_HASHTAG_BUTTON = new BooleanSetting("revanced_hide_shorts_hashtag_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_SEARCH = new BooleanSetting("revanced_hide_shorts_search", FALSE);
public static final BooleanSetting HIDE_SHORTS_SEARCH_SUGGESTIONS = new BooleanSetting("revanced_hide_shorts_search_suggestions", TRUE);
- public static final BooleanSetting HIDE_SHORTS_STICKERS = new BooleanSetting("revanced_hide_shorts_stickers", TRUE);
- public static final BooleanSetting HIDE_SHORTS_SUPER_THANKS_BUTTON = new BooleanSetting("revanced_hide_shorts_super_thanks_button", TRUE);
- public static final BooleanSetting HIDE_SHORTS_LIKE_FOUNTAIN = new BooleanSetting("revanced_hide_shorts_like_fountain", TRUE);
- public static final BooleanSetting HIDE_SHORTS_LIKE_BUTTON = new BooleanSetting("revanced_hide_shorts_like_button", FALSE);
- public static final BooleanSetting HIDE_SHORTS_DISLIKE_BUTTON = new BooleanSetting("revanced_hide_shorts_dislike_button", FALSE);
- public static final BooleanSetting HIDE_SHORTS_COMMENTS_BUTTON = new BooleanSetting("revanced_hide_shorts_comments_button", FALSE);
- public static final BooleanSetting HIDE_SHORTS_REMIX_BUTTON = new BooleanSetting("revanced_hide_shorts_remix_button", TRUE);
public static final BooleanSetting HIDE_SHORTS_SHARE_BUTTON = new BooleanSetting("revanced_hide_shorts_share_button", FALSE);
- public static final BooleanSetting HIDE_SHORTS_INFO_PANEL = new BooleanSetting("revanced_hide_shorts_info_panel", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_SHOP_BUTTON = new BooleanSetting("revanced_hide_shorts_shop_button", TRUE);
public static final BooleanSetting HIDE_SHORTS_SOUND_BUTTON = new BooleanSetting("revanced_hide_shorts_sound_button", FALSE);
- public static final BooleanSetting HIDE_SHORTS_CHANNEL_BAR = new BooleanSetting("revanced_hide_shorts_channel_bar", FALSE);
- public static final BooleanSetting HIDE_SHORTS_VIDEO_TITLE = new BooleanSetting("revanced_hide_shorts_video_title", FALSE);
public static final BooleanSetting HIDE_SHORTS_SOUND_METADATA_LABEL = new BooleanSetting("revanced_hide_shorts_sound_metadata_label", FALSE);
- public static final BooleanSetting HIDE_SHORTS_FULL_VIDEO_LINK_LABEL = new BooleanSetting("revanced_hide_shorts_full_video_link_label", FALSE);
- public static final BooleanSetting HIDE_SHORTS_NAVIGATION_BAR = new BooleanSetting("revanced_hide_shorts_navigation_bar", FALSE, true);
+ public static final BooleanSetting HIDE_SHORTS_STICKERS = new BooleanSetting("revanced_hide_shorts_stickers", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_SUBSCRIBE_BUTTON = new BooleanSetting("revanced_hide_shorts_subscribe_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_SUBSCRIPTIONS = new BooleanSetting("revanced_hide_shorts_subscriptions", FALSE);
+ public static final BooleanSetting HIDE_SHORTS_SUPER_THANKS_BUTTON = new BooleanSetting("revanced_hide_shorts_super_thanks_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_TAGGED_PRODUCTS = new BooleanSetting("revanced_hide_shorts_tagged_products", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_UPCOMING_BUTTON = new BooleanSetting("revanced_hide_shorts_upcoming_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_USE_TEMPLATE_BUTTON = new BooleanSetting("revanced_hide_shorts_use_template_button", TRUE);
+ public static final BooleanSetting HIDE_SHORTS_VIDEO_TITLE = new BooleanSetting("revanced_hide_shorts_video_title", FALSE);
public static final BooleanSetting SHORTS_AUTOPLAY = new BooleanSetting("revanced_shorts_autoplay", FALSE);
public static final BooleanSetting SHORTS_AUTOPLAY_BACKGROUND = new BooleanSetting("revanced_shorts_autoplay_background", TRUE);
// Seekbar
+
public static final BooleanSetting DISABLE_PRECISE_SEEKING_GESTURE = new BooleanSetting("revanced_disable_precise_seeking_gesture", TRUE);
- public static final BooleanSetting SEEKBAR_TAPPING = new BooleanSetting("revanced_seekbar_tapping", TRUE);
- public static final BooleanSetting SLIDE_TO_SEEK = new BooleanSetting("revanced_slide_to_seek", FALSE, true);
- public static final BooleanSetting RESTORE_OLD_SEEKBAR_THUMBNAILS = new BooleanSetting("revanced_restore_old_seekbar_thumbnails", TRUE);
- public static final BooleanSetting SEEKBAR_THUMBNAILS_HIGH_QUALITY = new BooleanSetting("revanced_seekbar_thumbnails_high_quality", FALSE, true,
- "revanced_seekbar_thumbnails_high_quality_dialog_message", new SeekbarThumbnailsHighQualityAvailability());
public static final BooleanSetting HIDE_SEEKBAR = new BooleanSetting("revanced_hide_seekbar", FALSE, true);
public static final BooleanSetting HIDE_SEEKBAR_THUMBNAIL = new BooleanSetting("revanced_hide_seekbar_thumbnail", FALSE);
+ public static final BooleanSetting HIDE_TIMESTAMP = new BooleanSetting("revanced_hide_timestamp", FALSE);
+ public static final BooleanSetting RESTORE_OLD_SEEKBAR_THUMBNAILS = new BooleanSetting("revanced_restore_old_seekbar_thumbnails", TRUE);
public static final BooleanSetting SEEKBAR_CUSTOM_COLOR = new BooleanSetting("revanced_seekbar_custom_color", FALSE, true);
+ public static final BooleanSetting SEEKBAR_TAPPING = new BooleanSetting("revanced_seekbar_tapping", TRUE);
+ public static final BooleanSetting SEEKBAR_THUMBNAILS_HIGH_QUALITY = new BooleanSetting("revanced_seekbar_thumbnails_high_quality", FALSE, true,
+ "revanced_seekbar_thumbnails_high_quality_dialog_message", new SeekbarThumbnailsHighQualityAvailability());
+ public static final BooleanSetting SLIDE_TO_SEEK = new BooleanSetting("revanced_slide_to_seek", FALSE, true);
public static final StringSetting SEEKBAR_CUSTOM_COLOR_VALUE = new StringSetting("revanced_seekbar_custom_color_value", "#FF0033", true, parent(SEEKBAR_CUSTOM_COLOR));
// Misc
+ public static final BooleanSetting ANNOUNCEMENTS = new BooleanSetting("revanced_announcements", TRUE);
+ public static final IntegerSetting ANNOUNCEMENT_LAST_ID = new IntegerSetting("revanced_announcement_last_id", -1, false, false);
public static final BooleanSetting AUTO_CAPTIONS = new BooleanSetting("revanced_auto_captions", FALSE);
- public static final BooleanSetting DISABLE_ZOOM_HAPTICS = new BooleanSetting("revanced_disable_zoom_haptics", TRUE);
- public static final BooleanSetting EXTERNAL_BROWSER = new BooleanSetting("revanced_external_browser", TRUE, true);
public static final BooleanSetting AUTO_REPEAT = new BooleanSetting("revanced_auto_repeat", FALSE);
- public static final BooleanSetting SPOOF_DEVICE_DIMENSIONS = new BooleanSetting("revanced_spoof_device_dimensions", FALSE, true,
- "revanced_spoof_device_dimensions_user_dialog_message");
public static final BooleanSetting BYPASS_URL_REDIRECTS = new BooleanSetting("revanced_bypass_url_redirects", TRUE);
- public static final BooleanSetting ANNOUNCEMENTS = new BooleanSetting("revanced_announcements", TRUE);
- public static final BooleanSetting SPOOF_VIDEO_STREAMS = new BooleanSetting("revanced_spoof_video_streams", TRUE, true,"revanced_spoof_video_streams_user_dialog_message");
- public static final BooleanSetting SPOOF_VIDEO_STREAMS_IOS_FORCE_AVC = new BooleanSetting("revanced_spoof_video_streams_ios_force_avc", FALSE, true,
- "revanced_spoof_video_streams_ios_force_avc_user_dialog_message", new SpoofVideoStreamsPatch.ForceiOSAVCAvailability());
- public static final EnumSetting<ClientType> SPOOF_VIDEO_STREAMS_CLIENT_TYPE = new EnumSetting<>("revanced_spoof_video_streams_client", ClientType.ANDROID_VR, true, parent(SPOOF_VIDEO_STREAMS));
- public static final IntegerSetting ANNOUNCEMENT_LAST_ID = new IntegerSetting("revanced_announcement_last_id", -1, false, false);
public static final BooleanSetting CHECK_WATCH_HISTORY_DOMAIN_NAME = new BooleanSetting("revanced_check_watch_history_domain_name", TRUE, false, false);
+ public static final BooleanSetting DISABLE_ZOOM_HAPTICS = new BooleanSetting("revanced_disable_zoom_haptics", TRUE);
+ public static final BooleanSetting EXTERNAL_BROWSER = new BooleanSetting("revanced_external_browser", TRUE, true);
public static final BooleanSetting REMOVE_TRACKING_QUERY_PARAMETER = new BooleanSetting("revanced_remove_tracking_query_parameter", TRUE);
-
- // Debugging
+ public static final BooleanSetting SPOOF_DEVICE_DIMENSIONS = new BooleanSetting("revanced_spoof_device_dimensions", FALSE, true,
+ "revanced_spoof_device_dimensions_user_dialog_message");
/**
* When enabled, share the debug logs with care.
* The buffer contains select user data, including the client ip address and information that could identify the end user.
@@ -298,6 +295,8 @@ public class Settings extends BaseSettings {
parentsAny(SWIPE_BRIGHTNESS, SWIPE_VOLUME));
public static final IntegerSetting SWIPE_OVERLAY_BACKGROUND_ALPHA = new IntegerSetting("revanced_swipe_overlay_background_alpha", 127, true,
parentsAny(SWIPE_BRIGHTNESS, SWIPE_VOLUME));
+
+ // Debugging
public static final IntegerSetting SWIPE_OVERLAY_TEXT_SIZE = new IntegerSetting("revanced_swipe_text_overlay_size", 22, true,
parentsAny(SWIPE_BRIGHTNESS, SWIPE_VOLUME));
public static final LongSetting SWIPE_OVERLAY_TIMEOUT = new LongSetting("revanced_swipe_overlay_timeout", 500L, true,
@@ -320,7 +319,6 @@ public class Settings extends BaseSettings {
* Do not use directly, instead use {@link SponsorBlockSettings}
*/
public static final StringSetting SB_PRIVATE_USER_ID = new StringSetting("sb_private_user_id_Do_Not_Share", "");
- public static final StringSetting DEPRECATED_SB_UUID_OLD_MIGRATION_SETTING = new StringSetting("uuid", ""); // Delete sometime in 2024
public static final IntegerSetting SB_CREATE_NEW_SEGMENT_STEP = new IntegerSetting("sb_create_new_segment_step", 150, parent(SB_ENABLED));
public static final BooleanSetting SB_VOTING_BUTTON = new BooleanSetting("sb_voting_button", FALSE, parent(SB_ENABLED));
public static final BooleanSetting SB_CREATE_NEW_SEGMENT = new BooleanSetting("sb_create_new_segment", FALSE, parent(SB_ENABLED));
@@ -331,34 +329,38 @@ public class Settings extends BaseSettings {
public static final BooleanSetting SB_TRACK_SKIP_COUNT = new BooleanSetting("sb_track_skip_count", TRUE, parent(SB_ENABLED));
public static final FloatSetting SB_SEGMENT_MIN_DURATION = new FloatSetting("sb_min_segment_duration", 0F, parent(SB_ENABLED));
public static final BooleanSetting SB_VIDEO_LENGTH_WITHOUT_SEGMENTS = new BooleanSetting("sb_video_length_without_segments", TRUE, parent(SB_ENABLED));
- public static final StringSetting SB_API_URL = new StringSetting("sb_api_url","https://sponsor.ajay.app");
+ public static final StringSetting SB_API_URL = new StringSetting("sb_api_url", "https://sponsor.ajay.app");
public static final BooleanSetting SB_USER_IS_VIP = new BooleanSetting("sb_user_is_vip", FALSE);
public static final IntegerSetting SB_LOCAL_TIME_SAVED_NUMBER_SEGMENTS = new IntegerSetting("sb_local_time_saved_number_segments", 0);
public static final LongSetting SB_LOCAL_TIME_SAVED_MILLISECONDS = new LongSetting("sb_local_time_saved_milliseconds", 0L);
public static final LongSetting SB_LAST_VIP_CHECK = new LongSetting("sb_last_vip_check", 0L, false, false);
public static final BooleanSetting SB_HIDE_EXPORT_WARNING = new BooleanSetting("sb_hide_export_warning", FALSE, false, false);
public static final BooleanSetting SB_SEEN_GUIDELINES = new BooleanSetting("sb_seen_guidelines", FALSE, false, false);
-
public static final StringSetting SB_CATEGORY_SPONSOR = new StringSetting("sb_sponsor", SKIP_AUTOMATICALLY_ONCE.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_SPONSOR_COLOR = new StringSetting("sb_sponsor_color","#00D400");
+ public static final StringSetting SB_CATEGORY_SPONSOR_COLOR = new StringSetting("sb_sponsor_color", "#00D400");
public static final StringSetting SB_CATEGORY_SELF_PROMO = new StringSetting("sb_selfpromo", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_SELF_PROMO_COLOR = new StringSetting("sb_selfpromo_color","#FFFF00");
+ public static final StringSetting SB_CATEGORY_SELF_PROMO_COLOR = new StringSetting("sb_selfpromo_color", "#FFFF00");
public static final StringSetting SB_CATEGORY_INTERACTION = new StringSetting("sb_interaction", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_INTERACTION_COLOR = new StringSetting("sb_interaction_color","#CC00FF");
+ public static final StringSetting SB_CATEGORY_INTERACTION_COLOR = new StringSetting("sb_interaction_color", "#CC00FF");
public static final StringSetting SB_CATEGORY_HIGHLIGHT = new StringSetting("sb_highlight", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_HIGHLIGHT_COLOR = new StringSetting("sb_highlight_color","#FF1684");
+ public static final StringSetting SB_CATEGORY_HIGHLIGHT_COLOR = new StringSetting("sb_highlight_color", "#FF1684");
public static final StringSetting SB_CATEGORY_INTRO = new StringSetting("sb_intro", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_INTRO_COLOR = new StringSetting("sb_intro_color","#00FFFF");
+ public static final StringSetting SB_CATEGORY_INTRO_COLOR = new StringSetting("sb_intro_color", "#00FFFF");
public static final StringSetting SB_CATEGORY_OUTRO = new StringSetting("sb_outro", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_OUTRO_COLOR = new StringSetting("sb_outro_color","#0202ED");
+ public static final StringSetting SB_CATEGORY_OUTRO_COLOR = new StringSetting("sb_outro_color", "#0202ED");
public static final StringSetting SB_CATEGORY_PREVIEW = new StringSetting("sb_preview", IGNORE.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_PREVIEW_COLOR = new StringSetting("sb_preview_color","#008FD6");
+ public static final StringSetting SB_CATEGORY_PREVIEW_COLOR = new StringSetting("sb_preview_color", "#008FD6");
public static final StringSetting SB_CATEGORY_FILLER = new StringSetting("sb_filler", IGNORE.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_FILLER_COLOR = new StringSetting("sb_filler_color","#7300FF");
+ public static final StringSetting SB_CATEGORY_FILLER_COLOR = new StringSetting("sb_filler_color", "#7300FF");
public static final StringSetting SB_CATEGORY_MUSIC_OFFTOPIC = new StringSetting("sb_music_offtopic", MANUAL_SKIP.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_MUSIC_OFFTOPIC_COLOR = new StringSetting("sb_music_offtopic_color","#FF9900");
+ public static final StringSetting SB_CATEGORY_MUSIC_OFFTOPIC_COLOR = new StringSetting("sb_music_offtopic_color", "#FF9900");
public static final StringSetting SB_CATEGORY_UNSUBMITTED = new StringSetting("sb_unsubmitted", SKIP_AUTOMATICALLY.reVancedKeyValue);
- public static final StringSetting SB_CATEGORY_UNSUBMITTED_COLOR = new StringSetting("sb_unsubmitted_color","#FFFFFF");
+ public static final StringSetting SB_CATEGORY_UNSUBMITTED_COLOR = new StringSetting("sb_unsubmitted_color", "#FFFFFF");
+
+ // Deprecated migrations
+ public static final StringSetting DEPRECATED_SB_UUID_OLD_MIGRATION_SETTING = new StringSetting("uuid", ""); // Delete sometime in 2024
+ private static final BooleanSetting DEPRECATED_HIDE_PLAYER_BUTTONS = new BooleanSetting("revanced_hide_player_buttons", FALSE, true);
+ private static final BooleanSetting DEPRECATED_HIDE_PLAYER_FLYOUT_VIDEO_QUALITY_FOOTER = new BooleanSetting("revanced_hide_video_quality_menu_footer", FALSE);
static {
// region Migration
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ForceAVCSpoofingPreference.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ForceAVCSpoofingPreference.java
index 5581756758..b3faebf8f9 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ForceAVCSpoofingPreference.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ForceAVCSpoofingPreference.java
@@ -1,7 +1,7 @@
package app.revanced.extension.youtube.settings.preference;
import static app.revanced.extension.shared.StringRef.str;
-import static app.revanced.extension.youtube.patches.spoof.DeviceHardwareSupport.DEVICE_HAS_HARDWARE_DECODING_VP9;
+import static app.revanced.extension.shared.spoof.DeviceHardwareSupport.DEVICE_HAS_HARDWARE_DECODING_VP9;
import android.content.Context;
import android.preference.SwitchPreference;
@@ -18,12 +18,15 @@ public class ForceAVCSpoofingPreference extends SwitchPreference {
public ForceAVCSpoofingPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
+
public ForceAVCSpoofingPreference(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
+
public ForceAVCSpoofingPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
+
public ForceAVCSpoofingPreference(Context context) {
super(context);
}
diff --git a/patches/api/patches.api b/patches/api/patches.api
index 1c601b5515..5e6a8c8fe4 100644
--- a/patches/api/patches.api
+++ b/patches/api/patches.api
@@ -320,6 +320,10 @@ public final class app/revanced/patches/music/misc/gms/GmsCoreSupportPatchKt {
public static final fun getGmsCoreSupportPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
+public final class app/revanced/patches/music/misc/spoof/SpoofVideoStreamsPatchKt {
+ public static final fun getSpoofVideoStreamsPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
public final class app/revanced/patches/myexpenses/misc/pro/UnlockProPatchKt {
public static final fun getUnlockProPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
@@ -753,6 +757,11 @@ public final class app/revanced/patches/shared/misc/settings/preference/TextPref
public fun serialize (Lorg/w3c/dom/Document;Lkotlin/jvm/functions/Function1;)Lorg/w3c/dom/Element;
}
+public final class app/revanced/patches/shared/misc/spoof/SpoofVideoStreamsPatchKt {
+ public static final fun spoofVideoStreamsPatch (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Lapp/revanced/patcher/patch/BytecodePatch;
+ public static synthetic fun spoofVideoStreamsPatch$default (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
public final class app/revanced/patches/solidexplorer2/functionality/filesize/RemoveFileSizeLimitPatchKt {
public static final fun getRemoveFileSizeLimitPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
@@ -1359,6 +1368,14 @@ public final class app/revanced/patches/youtube/misc/settings/SettingsPatchKt {
public static final fun newIntent (Ljava/lang/String;)Lapp/revanced/patches/shared/misc/settings/preference/IntentPreference$Intent;
}
+public final class app/revanced/patches/youtube/misc/spoof/SpoofVideoStreamsPatchKt {
+ public static final fun getSpoofVideoStreamsPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
+public final class app/revanced/patches/youtube/misc/spoof/UserAgentClientSpoofPatchKt {
+ public static final fun getUserAgentClientSpoofPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
public final class app/revanced/patches/youtube/misc/zoomhaptics/ZoomHapticsPatchKt {
public static final fun getZoomHapticsPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/music/misc/gms/GmsCoreSupportPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/misc/gms/GmsCoreSupportPatch.kt
index e38ca6015c..0fa223b235 100644
--- a/patches/src/main/kotlin/app/revanced/patches/music/misc/gms/GmsCoreSupportPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/music/misc/gms/GmsCoreSupportPatch.kt
@@ -4,6 +4,7 @@ import app.revanced.patcher.patch.Option
import app.revanced.patches.music.misc.extension.sharedExtensionPatch
import app.revanced.patches.music.misc.gms.Constants.MUSIC_PACKAGE_NAME
import app.revanced.patches.music.misc.gms.Constants.REVANCED_MUSIC_PACKAGE_NAME
+import app.revanced.patches.music.misc.spoof.spoofVideoStreamsPatch
import app.revanced.patches.shared.castContextFetchFingerprint
import app.revanced.patches.shared.misc.gms.gmsCoreSupportPatch
import app.revanced.patches.shared.primeMethodFingerprint
@@ -20,6 +21,8 @@ val gmsCoreSupportPatch = gmsCoreSupportPatch(
extensionPatch = sharedExtensionPatch,
gmsCoreSupportResourcePatchFactory = ::gmsCoreSupportResourcePatch,
) {
+ dependsOn(spoofVideoStreamsPatch)
+
compatibleWith(MUSIC_PACKAGE_NAME)
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofVideoStreamsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofVideoStreamsPatch.kt
new file mode 100644
index 0000000000..862bc3f227
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofVideoStreamsPatch.kt
@@ -0,0 +1,7 @@
+package app.revanced.patches.music.misc.spoof
+
+import app.revanced.patches.shared.misc.spoof.spoofVideoStreamsPatch
+
+val spoofVideoStreamsPatch = spoofVideoStreamsPatch({
+ compatibleWith("com.google.android.apps.youtube.music")
+})
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/Fingerprints.kt b/patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/Fingerprints.kt
similarity index 97%
rename from patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/Fingerprints.kt
rename to patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/Fingerprints.kt
index 1862a79aa8..3976d03e7e 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/Fingerprints.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/Fingerprints.kt
@@ -1,4 +1,4 @@
-package app.revanced.patches.youtube.misc.fix.playback
+package app.revanced.patches.shared.misc.spoof
import app.revanced.patcher.fingerprint
import com.android.tools.smali.dexlib2.AccessFlags
@@ -27,7 +27,6 @@ internal val buildPlayerRequestURIFingerprint = fingerprint {
Opcode.RETURN_OBJECT,
)
strings(
- "youtubei/v1",
"key",
"asig",
)
diff --git a/patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/SpoofVideoStreamsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/SpoofVideoStreamsPatch.kt
new file mode 100644
index 0000000000..0e9e831261
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/SpoofVideoStreamsPatch.kt
@@ -0,0 +1,206 @@
+package app.revanced.patches.shared.misc.spoof
+
+import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.instructions
+import app.revanced.patcher.patch.BytecodePatchBuilder
+import app.revanced.patcher.patch.BytecodePatchContext
+import app.revanced.patcher.patch.bytecodePatch
+import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
+import app.revanced.patches.all.misc.resources.addResourcesPatch
+import app.revanced.util.getReference
+import app.revanced.util.indexOfFirstInstructionOrThrow
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.MutableMethodImplementation
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
+import com.android.tools.smali.dexlib2.immutable.ImmutableMethodParameter
+
+private const val EXTENSION_CLASS_DESCRIPTOR =
+ "Lapp/revanced/extension/shared/spoof/SpoofVideoStreamsPatch;"
+
+fun spoofVideoStreamsPatch(
+ block: BytecodePatchBuilder.() -> Unit = {},
+ executeBlock: BytecodePatchContext.() -> Unit = {},
+) = bytecodePatch(
+ name = "Spoof video streams",
+ description = "Spoofs the client video streams to fix playback.",
+) {
+ block()
+
+ dependsOn(addResourcesPatch)
+
+ execute {
+ // region Block /initplayback requests to fall back to /get_watch requests.
+
+ val moveUriStringIndex = buildInitPlaybackRequestFingerprint.patternMatch!!.startIndex
+
+ buildInitPlaybackRequestFingerprint.method.apply {
+ val targetRegister = getInstruction<OneRegisterInstruction>(moveUriStringIndex).registerA
+
+ addInstructions(
+ moveUriStringIndex + 1,
+ """
+ invoke-static { v$targetRegister }, $EXTENSION_CLASS_DESCRIPTOR->blockInitPlaybackRequest(Ljava/lang/String;)Ljava/lang/String;
+ move-result-object v$targetRegister
+ """,
+ )
+ }
+
+ // endregion
+
+ // region Block /get_watch requests to fall back to /player requests.
+
+ val invokeToStringIndex = buildPlayerRequestURIFingerprint.patternMatch!!.startIndex
+
+ buildPlayerRequestURIFingerprint.method.apply {
+ val uriRegister = getInstruction<FiveRegisterInstruction>(invokeToStringIndex).registerC
+
+ addInstructions(
+ invokeToStringIndex,
+ """
+ invoke-static { v$uriRegister }, $EXTENSION_CLASS_DESCRIPTOR->blockGetWatchRequest(Landroid/net/Uri;)Landroid/net/Uri;
+ move-result-object v$uriRegister
+ """,
+ )
+ }
+
+ // endregion
+
+ // region Get replacement streams at player requests.
+
+ buildRequestFingerprint.method.apply {
+ val newRequestBuilderIndex = indexOfFirstInstructionOrThrow {
+ opcode == Opcode.INVOKE_VIRTUAL &&
+ getReference<MethodReference>()?.name == "newUrlRequestBuilder"
+ }
+ val urlRegister = getInstruction<FiveRegisterInstruction>(newRequestBuilderIndex).registerD
+ val freeRegister = getInstruction<OneRegisterInstruction>(newRequestBuilderIndex + 1).registerA
+
+ addInstructions(
+ newRequestBuilderIndex,
+ """
+ move-object v$freeRegister, p1
+ invoke-static { v$urlRegister, v$freeRegister }, $EXTENSION_CLASS_DESCRIPTOR->fetchStreams(Ljava/lang/String;Ljava/util/Map;)V
+ """,
+ )
+ }
+
+ // endregion
+
+ // region Replace the streaming data with the replacement streams.
+
+ createStreamingDataFingerprint.method.apply {
+ val setStreamDataMethodName = "patch_setStreamingData"
+ val resultMethodType = createStreamingDataFingerprint.classDef.type
+ val videoDetailsIndex = createStreamingDataFingerprint.patternMatch!!.endIndex
+ val videoDetailsRegister = getInstruction<TwoRegisterInstruction>(videoDetailsIndex).registerA
+ val videoDetailsClass = getInstruction(videoDetailsIndex).getReference<FieldReference>()!!.type
+
+ addInstruction(
+ videoDetailsIndex + 1,
+ "invoke-direct { p0, v$videoDetailsRegister }, " +
+ "$resultMethodType->$setStreamDataMethodName($videoDetailsClass)V",
+ )
+
+ val protobufClass = protobufClassParseByteBufferFingerprint.method.definingClass
+ val setStreamingDataIndex = createStreamingDataFingerprint.patternMatch!!.startIndex
+
+ val playerProtoClass = getInstruction(setStreamingDataIndex + 1)
+ .getReference<FieldReference>()!!.definingClass
+
+ val setStreamingDataField = getInstruction(setStreamingDataIndex).getReference<FieldReference>()
+
+ val getStreamingDataField = getInstruction(
+ indexOfFirstInstructionOrThrow {
+ opcode == Opcode.IGET_OBJECT && getReference<FieldReference>()?.definingClass == playerProtoClass
+ },
+ ).getReference<FieldReference>()
+
+ // Use a helper method to avoid the need of picking out multiple free registers from the hooked code.
+ createStreamingDataFingerprint.classDef.methods.add(
+ ImmutableMethod(
+ resultMethodType,
+ setStreamDataMethodName,
+ listOf(ImmutableMethodParameter(videoDetailsClass, null, "videoDetails")),
+ "V",
+ AccessFlags.PRIVATE.value or AccessFlags.FINAL.value,
+ null,
+ null,
+ MutableMethodImplementation(9),
+ ).toMutable().apply {
+ addInstructionsWithLabels(
+ 0,
+ """
+ invoke-static { }, $EXTENSION_CLASS_DESCRIPTOR->isSpoofingEnabled()Z
+ move-result v0
+ if-eqz v0, :disabled
+
+ # Get video id.
+ iget-object v2, p1, $videoDetailsClass->c:Ljava/lang/String;
+ if-eqz v2, :disabled
+
+ # Get streaming data.
+ invoke-static { v2 }, $EXTENSION_CLASS_DESCRIPTOR->getStreamingData(Ljava/lang/String;)Ljava/nio/ByteBuffer;
+ move-result-object v3
+ if-eqz v3, :disabled
+
+ # Parse streaming data.
+ sget-object v4, $playerProtoClass->a:$playerProtoClass
+ invoke-static { v4, v3 }, $protobufClass->parseFrom(${protobufClass}Ljava/nio/ByteBuffer;)$protobufClass
+ move-result-object v5
+ check-cast v5, $playerProtoClass
+
+ # Set streaming data.
+ iget-object v6, v5, $getStreamingDataField
+ if-eqz v6, :disabled
+ iput-object v6, p0, $setStreamingDataField
+
+ :disabled
+ return-void
+ """,
+ )
+ },
+ )
+ }
+
+ // endregion
+
+ // region Remove /videoplayback request body to fix playback.
+ // It is assumed, YouTube makes a request with a body tuned for Android.
+ // Requesting streams intended for other platforms with a body tuned for Android could be the cause of 400 errors.
+ // A proper fix may include modifying the request body to match the platforms expected body.
+
+ buildMediaDataSourceFingerprint.method.apply {
+ val targetIndex = instructions.lastIndex
+
+ // Instructions are added just before the method returns,
+ // so there's no concern of clobbering in-use registers.
+ addInstructions(
+ targetIndex,
+ """
+ # Field a: Stream uri.
+ # Field c: Http method.
+ # Field d: Post data.
+ move-object v0, p0 # method has over 15 registers and must copy p0 to a lower register.
+ iget-object v1, v0, $definingClass->a:Landroid/net/Uri;
+ iget v2, v0, $definingClass->c:I
+ iget-object v3, v0, $definingClass->d:[B
+ invoke-static { v1, v2, v3 }, $EXTENSION_CLASS_DESCRIPTOR->removeVideoPlaybackPostBody(Landroid/net/Uri;I[B)[B
+ move-result-object v1
+ iput-object v1, v0, $definingClass->d:[B
+ """,
+ )
+ }
+ // endregion
+
+ executeBlock()
+ }
+}
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/SpoofVideoStreamsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/SpoofVideoStreamsPatch.kt
index 515536b8f5..89e7cc08f8 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/SpoofVideoStreamsPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/SpoofVideoStreamsPatch.kt
@@ -1,243 +1,9 @@
package app.revanced.patches.youtube.misc.fix.playback
-import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
-import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
-import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.instructions
import app.revanced.patcher.patch.bytecodePatch
-import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
-import app.revanced.patches.all.misc.resources.addResources
-import app.revanced.patches.all.misc.resources.addResourcesPatch
-import app.revanced.patches.shared.misc.settings.preference.ListPreference
-import app.revanced.patches.shared.misc.settings.preference.NonInteractivePreference
-import app.revanced.patches.shared.misc.settings.preference.PreferenceScreenPreference
-import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
-import app.revanced.patches.youtube.misc.settings.PreferenceScreen
-import app.revanced.patches.youtube.misc.settings.settingsPatch
-import app.revanced.util.getReference
-import app.revanced.util.indexOfFirstInstructionOrThrow
-import com.android.tools.smali.dexlib2.AccessFlags
-import com.android.tools.smali.dexlib2.Opcode
-import com.android.tools.smali.dexlib2.builder.MutableMethodImplementation
-import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
-import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
-import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
-import com.android.tools.smali.dexlib2.iface.reference.FieldReference
-import com.android.tools.smali.dexlib2.iface.reference.MethodReference
-import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
-import com.android.tools.smali.dexlib2.immutable.ImmutableMethodParameter
-private const val EXTENSION_CLASS_DESCRIPTOR =
- "Lapp/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch;"
-
-val spoofVideoStreamsPatch = bytecodePatch(
- name = "Spoof video streams",
- description = "Spoofs the client video streams to allow video playback.",
-) {
- compatibleWith(
- "com.google.android.youtube"(
- "18.38.44",
- "18.49.37",
- "19.16.39",
- "19.25.37",
- "19.34.42",
- "19.43.41",
- "19.45.38",
- "19.46.42",
- ),
- )
-
- dependsOn(
- settingsPatch,
- addResourcesPatch,
- userAgentClientSpoofPatch,
- )
-
- execute {
- addResources("youtube", "misc.fix.playback.spoofVideoStreamsPatch")
-
- PreferenceScreen.MISC.addPreferences(
- PreferenceScreenPreference(
- key = "revanced_spoof_video_streams_screen",
- sorting = PreferenceScreenPreference.Sorting.UNSORTED,
- preferences = setOf(
- SwitchPreference("revanced_spoof_video_streams"),
- ListPreference(
- "revanced_spoof_video_streams_client",
- summaryKey = null,
- ),
- SwitchPreference(
- "revanced_spoof_video_streams_ios_force_avc",
- tag = "app.revanced.extension.youtube.settings.preference.ForceAVCSpoofingPreference",
- ),
- NonInteractivePreference("revanced_spoof_video_streams_about_android_vr"),
- NonInteractivePreference("revanced_spoof_video_streams_about_ios"),
- ),
- ),
- )
-
- // region Block /initplayback requests to fall back to /get_watch requests.
-
- val moveUriStringIndex = buildInitPlaybackRequestFingerprint.patternMatch!!.startIndex
-
- buildInitPlaybackRequestFingerprint.method.apply {
- val targetRegister = getInstruction<OneRegisterInstruction>(moveUriStringIndex).registerA
-
- addInstructions(
- moveUriStringIndex + 1,
- """
- invoke-static { v$targetRegister }, $EXTENSION_CLASS_DESCRIPTOR->blockInitPlaybackRequest(Ljava/lang/String;)Ljava/lang/String;
- move-result-object v$targetRegister
- """,
- )
- }
-
- // endregion
-
- // region Block /get_watch requests to fall back to /player requests.
-
- val invokeToStringIndex = buildPlayerRequestURIFingerprint.patternMatch!!.startIndex
-
- buildPlayerRequestURIFingerprint.method.apply {
- val uriRegister = getInstruction<FiveRegisterInstruction>(invokeToStringIndex).registerC
-
- addInstructions(
- invokeToStringIndex,
- """
- invoke-static { v$uriRegister }, $EXTENSION_CLASS_DESCRIPTOR->blockGetWatchRequest(Landroid/net/Uri;)Landroid/net/Uri;
- move-result-object v$uriRegister
- """,
- )
- }
-
- // endregion
-
- // region Get replacement streams at player requests.
-
- buildRequestFingerprint.method.apply {
- val newRequestBuilderIndex = indexOfFirstInstructionOrThrow {
- opcode == Opcode.INVOKE_VIRTUAL &&
- getReference<MethodReference>()?.name == "newUrlRequestBuilder"
- }
- val urlRegister = getInstruction<FiveRegisterInstruction>(newRequestBuilderIndex).registerD
- val freeRegister = getInstruction<OneRegisterInstruction>(newRequestBuilderIndex + 1).registerA
-
- addInstructions(
- newRequestBuilderIndex,
- """
- move-object v$freeRegister, p1
- invoke-static { v$urlRegister, v$freeRegister }, $EXTENSION_CLASS_DESCRIPTOR->fetchStreams(Ljava/lang/String;Ljava/util/Map;)V
- """,
- )
- }
-
- // endregion
-
- // region Replace the streaming data with the replacement streams.
-
- createStreamingDataFingerprint.method.apply {
- val setStreamDataMethodName = "patch_setStreamingData"
- val resultMethodType = createStreamingDataFingerprint.classDef.type
- val videoDetailsIndex = createStreamingDataFingerprint.patternMatch!!.endIndex
- val videoDetailsRegister = getInstruction<TwoRegisterInstruction>(videoDetailsIndex).registerA
- val videoDetailsClass = getInstruction(videoDetailsIndex).getReference<FieldReference>()!!.type
-
- addInstruction(
- videoDetailsIndex + 1,
- "invoke-direct { p0, v$videoDetailsRegister }, " +
- "$resultMethodType->$setStreamDataMethodName($videoDetailsClass)V",
- )
-
- val protobufClass = protobufClassParseByteBufferFingerprint.method.definingClass
- val setStreamingDataIndex = createStreamingDataFingerprint.patternMatch!!.startIndex
-
- val playerProtoClass = getInstruction(setStreamingDataIndex + 1)
- .getReference<FieldReference>()!!.definingClass
-
- val setStreamingDataField = getInstruction(setStreamingDataIndex).getReference<FieldReference>()
-
- val getStreamingDataField = getInstruction(
- indexOfFirstInstructionOrThrow {
- opcode == Opcode.IGET_OBJECT && getReference<FieldReference>()?.definingClass == playerProtoClass
- },
- ).getReference<FieldReference>()
-
- // Use a helper method to avoid the need of picking out multiple free registers from the hooked code.
- createStreamingDataFingerprint.classDef.methods.add(
- ImmutableMethod(
- resultMethodType,
- setStreamDataMethodName,
- listOf(ImmutableMethodParameter(videoDetailsClass, null, "videoDetails")),
- "V",
- AccessFlags.PRIVATE.value or AccessFlags.FINAL.value,
- null,
- null,
- MutableMethodImplementation(9),
- ).toMutable().apply {
- addInstructionsWithLabels(
- 0,
- """
- invoke-static { }, $EXTENSION_CLASS_DESCRIPTOR->isSpoofingEnabled()Z
- move-result v0
- if-eqz v0, :disabled
-
- # Get video id.
- iget-object v2, p1, $videoDetailsClass->c:Ljava/lang/String;
- if-eqz v2, :disabled
-
- # Get streaming data.
- invoke-static { v2 }, $EXTENSION_CLASS_DESCRIPTOR->getStreamingData(Ljava/lang/String;)Ljava/nio/ByteBuffer;
- move-result-object v3
- if-eqz v3, :disabled
-
- # Parse streaming data.
- sget-object v4, $playerProtoClass->a:$playerProtoClass
- invoke-static { v4, v3 }, $protobufClass->parseFrom(${protobufClass}Ljava/nio/ByteBuffer;)$protobufClass
- move-result-object v5
- check-cast v5, $playerProtoClass
-
- # Set streaming data.
- iget-object v6, v5, $getStreamingDataField
- if-eqz v6, :disabled
- iput-object v6, p0, $setStreamingDataField
-
- :disabled
- return-void
- """,
- )
- },
- )
- }
-
- // endregion
-
- // region Remove /videoplayback request body to fix playback.
- // It is assumed, YouTube makes a request with a body tuned for Android.
- // Requesting streams intended for other platforms with a body tuned for Android could be the cause of 400 errors.
- // A proper fix may include modifying the request body to match the platforms expected body.
-
- buildMediaDataSourceFingerprint.method.apply {
- val targetIndex = instructions.lastIndex
-
- // Instructions are added just before the method returns,
- // so there's no concern of clobbering in-use registers.
- addInstructions(
- targetIndex,
- """
- # Field a: Stream uri.
- # Field c: Http method.
- # Field d: Post data.
- move-object v0, p0 # method has over 15 registers and must copy p0 to a lower register.
- iget-object v1, v0, $definingClass->a:Landroid/net/Uri;
- iget v2, v0, $definingClass->c:I
- iget-object v3, v0, $definingClass->d:[B
- invoke-static { v1, v2, v3 }, $EXTENSION_CLASS_DESCRIPTOR->removeVideoPlaybackPostBody(Landroid/net/Uri;I[B)[B
- move-result-object v1
- iput-object v1, v0, $definingClass->d:[B
- """,
- )
- }
- // endregion
- }
+@Deprecated("Use app.revanced.patches.youtube.misc.spoof.spoofVideoStreamsPatch instead.")
+@Suppress("unused")
+val spoofVideoStreamsPatch = bytecodePatch {
+ dependsOn(app.revanced.patches.youtube.misc.spoof.spoofVideoStreamsPatch)
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/UserAgentClientSpoofPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/UserAgentClientSpoofPatch.kt
index 8bbd0ec778..eb4c9492be 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/UserAgentClientSpoofPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/UserAgentClientSpoofPatch.kt
@@ -1,82 +1,9 @@
package app.revanced.patches.youtube.misc.fix.playback
-import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
-import app.revanced.patches.all.misc.transformation.IMethodCall
-import app.revanced.patches.all.misc.transformation.filterMapInstruction35c
-import app.revanced.patches.all.misc.transformation.transformInstructionsPatch
-import app.revanced.util.getReference
-import app.revanced.util.indexOfFirstInstruction
-import com.android.tools.smali.dexlib2.Opcode
-import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
-import com.android.tools.smali.dexlib2.iface.reference.MethodReference
-import com.android.tools.smali.dexlib2.iface.reference.StringReference
-
-private const val ORIGINAL_PACKAGE_NAME = "com.google.android.youtube"
-private const val USER_AGENT_STRING_BUILDER_APPEND_METHOD_REFERENCE =
- "Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;"
-
-val userAgentClientSpoofPatch = transformInstructionsPatch(
- filterMap = { classDef, _, instruction, instructionIndex ->
- filterMapInstruction35c<MethodCall>(
- "Lapp/revanced/extension",
- classDef,
- instruction,
- instructionIndex,
- )
- },
- transform = transform@{ mutableMethod, entry ->
- val (_, _, instructionIndex) = entry
-
- // Replace the result of context.getPackageName(), if it is used in a user agent string.
- mutableMethod.apply {
- // After context.getPackageName() the result is moved to a register.
- val targetRegister = (
- getInstruction(instructionIndex + 1)
- as? OneRegisterInstruction ?: return@transform
- ).registerA
-
- // IndexOutOfBoundsException is technically possible here,
- // but no such occurrences are present in the app.
- val referee = getInstruction(instructionIndex + 2).getReference<MethodReference>()?.toString()
-
- // Only replace string builder usage.
- if (referee != USER_AGENT_STRING_BUILDER_APPEND_METHOD_REFERENCE) {
- return@transform
- }
-
- // Do not change the package name in methods that use resources, or for methods that use GmsCore.
- // Changing these package names will result in playback limitations,
- // particularly Android VR background audio only playback.
- val resourceOrGmsStringInstructionIndex = indexOfFirstInstruction {
- val reference = getReference<StringReference>()
- opcode == Opcode.CONST_STRING &&
- (reference?.string == "android.resource://" || reference?.string == "gcore_")
- }
- if (resourceOrGmsStringInstructionIndex >= 0) {
- return@transform
- }
-
- // Overwrite the result of context.getPackageName() with the original package name.
- replaceInstruction(
- instructionIndex + 1,
- "const-string v$targetRegister, \"$ORIGINAL_PACKAGE_NAME\"",
- )
- }
- },
-)
+import app.revanced.patcher.patch.bytecodePatch
+@Deprecated("Use app.revanced.patches.youtube.misc.spoof.userAgentClientSpoofPatch instead.")
@Suppress("unused")
-private enum class MethodCall(
- override val definedClassName: String,
- override val methodName: String,
- override val methodParams: Array<String>,
- override val returnType: String,
-) : IMethodCall {
- GetPackageName(
- "Landroid/content/Context;",
- "getPackageName",
- emptyArray(),
- "Ljava/lang/String;",
- ),
+val userAgentClientSpoofPatch = bytecodePatch {
+ dependsOn(app.revanced.patches.youtube.misc.spoof.userAgentClientSpoofPatch)
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/gms/GmsCoreSupportPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/gms/GmsCoreSupportPatch.kt
index bb86b663f9..dc73116ebf 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/gms/GmsCoreSupportPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/gms/GmsCoreSupportPatch.kt
@@ -9,11 +9,11 @@ import app.revanced.patches.shared.misc.settings.preference.IntentPreference
import app.revanced.patches.shared.primeMethodFingerprint
import app.revanced.patches.youtube.layout.buttons.overlay.hidePlayerOverlayButtonsPatch
import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch
-import app.revanced.patches.youtube.misc.fix.playback.spoofVideoStreamsPatch
import app.revanced.patches.youtube.misc.gms.Constants.REVANCED_YOUTUBE_PACKAGE_NAME
import app.revanced.patches.youtube.misc.gms.Constants.YOUTUBE_PACKAGE_NAME
import app.revanced.patches.youtube.misc.settings.PreferenceScreen
import app.revanced.patches.youtube.misc.settings.settingsPatch
+import app.revanced.patches.youtube.misc.spoof.spoofVideoStreamsPatch
import app.revanced.patches.youtube.shared.mainActivityOnCreateFingerprint
@Suppress("unused")
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/SpoofVideoStreamsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/SpoofVideoStreamsPatch.kt
new file mode 100644
index 0000000000..a6181db7e4
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/SpoofVideoStreamsPatch.kt
@@ -0,0 +1,52 @@
+package app.revanced.patches.youtube.misc.spoof
+
+import app.revanced.patches.all.misc.resources.addResources
+import app.revanced.patches.shared.misc.settings.preference.ListPreference
+import app.revanced.patches.shared.misc.settings.preference.NonInteractivePreference
+import app.revanced.patches.shared.misc.settings.preference.PreferenceScreenPreference
+import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
+import app.revanced.patches.shared.misc.spoof.spoofVideoStreamsPatch
+import app.revanced.patches.youtube.misc.settings.PreferenceScreen
+import app.revanced.patches.youtube.misc.settings.settingsPatch
+
+val spoofVideoStreamsPatch = spoofVideoStreamsPatch({
+ compatibleWith(
+ "com.google.android.youtube"(
+ "18.38.44",
+ "18.49.37",
+ "19.16.39",
+ "19.25.37",
+ "19.34.42",
+ "19.43.41",
+ "19.45.38",
+ "19.46.42",
+ ),
+ )
+
+ dependsOn(
+ userAgentClientSpoofPatch,
+ settingsPatch,
+ )
+}, {
+ addResources("youtube", "misc.fix.playback.spoofVideoStreamsPatch")
+
+ PreferenceScreen.MISC.addPreferences(
+ PreferenceScreenPreference(
+ key = "revanced_spoof_video_streams_screen",
+ sorting = PreferenceScreenPreference.Sorting.UNSORTED,
+ preferences = setOf(
+ SwitchPreference("revanced_spoof_video_streams"),
+ ListPreference(
+ "revanced_spoof_video_streams_client",
+ summaryKey = null,
+ ),
+ SwitchPreference(
+ "revanced_spoof_video_streams_ios_force_avc",
+ tag = "app.revanced.extension.youtube.settings.preference.ForceAVCSpoofingPreference",
+ ),
+ NonInteractivePreference("revanced_spoof_video_streams_about_android_vr"),
+ NonInteractivePreference("revanced_spoof_video_streams_about_ios"),
+ ),
+ ),
+ )
+})
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/UserAgentClientSpoofPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/UserAgentClientSpoofPatch.kt
new file mode 100644
index 0000000000..d9b6596138
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/spoof/UserAgentClientSpoofPatch.kt
@@ -0,0 +1,82 @@
+package app.revanced.patches.youtube.misc.spoof
+
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patches.all.misc.transformation.IMethodCall
+import app.revanced.patches.all.misc.transformation.filterMapInstruction35c
+import app.revanced.patches.all.misc.transformation.transformInstructionsPatch
+import app.revanced.util.getReference
+import app.revanced.util.indexOfFirstInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
+
+private const val ORIGINAL_PACKAGE_NAME = "com.google.android.youtube"
+private const val USER_AGENT_STRING_BUILDER_APPEND_METHOD_REFERENCE =
+ "Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;"
+
+val userAgentClientSpoofPatch = transformInstructionsPatch(
+ filterMap = { classDef, _, instruction, instructionIndex ->
+ filterMapInstruction35c<MethodCall>(
+ "Lapp/revanced/extension",
+ classDef,
+ instruction,
+ instructionIndex,
+ )
+ },
+ transform = transform@{ mutableMethod, entry ->
+ val (_, _, instructionIndex) = entry
+
+ // Replace the result of context.getPackageName(), if it is used in a user agent string.
+ mutableMethod.apply {
+ // After context.getPackageName() the result is moved to a register.
+ val targetRegister = (
+ getInstruction(instructionIndex + 1)
+ as? OneRegisterInstruction ?: return@transform
+ ).registerA
+
+ // IndexOutOfBoundsException is technically possible here,
+ // but no such occurrences are present in the app.
+ val referee = getInstruction(instructionIndex + 2).getReference<MethodReference>()?.toString()
+
+ // Only replace string builder usage.
+ if (referee != USER_AGENT_STRING_BUILDER_APPEND_METHOD_REFERENCE) {
+ return@transform
+ }
+
+ // Do not change the package name in methods that use resources, or for methods that use GmsCore.
+ // Changing these package names will result in playback limitations,
+ // particularly Android VR background audio only playback.
+ val resourceOrGmsStringInstructionIndex = indexOfFirstInstruction {
+ val reference = getReference<StringReference>()
+ opcode == Opcode.CONST_STRING &&
+ (reference?.string == "android.resource://" || reference?.string == "gcore_")
+ }
+ if (resourceOrGmsStringInstructionIndex >= 0) {
+ return@transform
+ }
+
+ // Overwrite the result of context.getPackageName() with the original package name.
+ replaceInstruction(
+ instructionIndex + 1,
+ "const-string v$targetRegister, \"$ORIGINAL_PACKAGE_NAME\"",
+ )
+ }
+ },
+)
+
+@Suppress("unused")
+private enum class MethodCall(
+ override val definedClassName: String,
+ override val methodName: String,
+ override val methodParams: Array<String>,
+ override val returnType: String,
+) : IMethodCall {
+ GetPackageName(
+ "Landroid/content/Context;",
+ "getPackageName",
+ emptyArray(),
+ "Ljava/lang/String;",
+ ),
+}
|
feat
|
Add `Spoof video streams` patch to fix playback (#4065)
|
2585c5554c48632b40d1a9ed4bc79e793a3d5cf2
|
2025-03-07 23:10:21
|
semantic-release-bot
|
chore: Release v5.14.0-dev.6 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 899f12a0c5..8030a0a75d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.14.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v5.14.0-dev.5...v5.14.0-dev.6) (2025-03-07)
+
+
+### Bug Fixes
+
+* **YouTube - Hide layout components:** Do not hide Movie/Courses start page content if 'Hide horizontal shelves' is enabled ([62a6164](https://github.com/ReVanced/revanced-patches/commit/62a6164b88b64200b517a5ba6b800d8214dbbad8))
+
# [5.14.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v5.14.0-dev.4...v5.14.0-dev.5) (2025-03-06)
diff --git a/gradle.properties b/gradle.properties
index 62ddda9f0f..6ec9e867cf 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.14.0-dev.5
+version = 5.14.0-dev.6
|
chore
|
Release v5.14.0-dev.6 [skip ci]
|
d8415c0bee3fa646c68ec5d37338c280d577b705
|
2024-05-31 05:19:05
|
semantic-release-bot
|
chore(release): 4.8.3-dev.3 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d3a7aedba..39dec2b857 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [4.8.3-dev.3](https://github.com/ReVanced/revanced-patches/compare/v4.8.3-dev.2...v4.8.3-dev.3) (2024-05-30)
+
+
+### Bug Fixes
+
+* **Reddit - Hide ads:** Constrain to last working version 2024.17.0 ([#3192](https://github.com/ReVanced/revanced-patches/issues/3192)) ([4fb3456](https://github.com/ReVanced/revanced-patches/commit/4fb3456e93ff7ec19030de8870e1cb9c1319faef))
+
## [4.8.3-dev.2](https://github.com/ReVanced/revanced-patches/compare/v4.8.3-dev.1...v4.8.3-dev.2) (2024-05-30)
diff --git a/gradle.properties b/gradle.properties
index 0caefcff24..42f895eb6c 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.8.3-dev.2
+version = 4.8.3-dev.3
|
chore
|
4.8.3-dev.3 [skip ci]
|
4dcefe7ba146bde36741ef11b688a24d68b924c5
|
2024-01-10 13:46:50
|
semantic-release-bot
|
chore(release): 4.0.0-dev.7 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 924f552d74..20167f8ddb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.0.0-dev.7](https://github.com/ReVanced/revanced-patches/compare/v4.0.0-dev.6...v4.0.0-dev.7) (2024-01-10)
+
+
+### Bug Fixes
+
+* Use new integrations patch path ([51e2f3b](https://github.com/ReVanced/revanced-patches/commit/51e2f3b476b49460e2f3fc2b5f302a3a72d7963f))
+
# [4.0.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v4.0.0-dev.5...v4.0.0-dev.6) (2024-01-09)
diff --git a/gradle.properties b/gradle.properties
index e0e4e0fcf0..90afc19b4d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.0.0-dev.6
+version = 4.0.0-dev.7
|
chore
|
4.0.0-dev.7 [skip ci]
|
7519895348598db95370aa3171f353dad73ca307
|
2022-06-29 03:14:38
|
semantic-release-bot
|
chore(release): 2.1.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 559f28db3d..99bcf96415 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.1.0](https://github.com/revanced/revanced-patches/compare/v2.0.3...v2.1.0) (2022-06-28)
+
+
+### Features
+
+* `custom-playback-speed` patch ([#50](https://github.com/revanced/revanced-patches/issues/50)) ([224254b](https://github.com/revanced/revanced-patches/commit/224254bcce2b394bbfd2549089f0204ce4ed4a89))
+
## [2.0.3](https://github.com/revanced/revanced-patches/compare/v2.0.2...v2.0.3) (2022-06-27)
diff --git a/gradle.properties b/gradle.properties
index 0131169587..8fe9c87552 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.0.3
+version = 2.1.0
|
chore
|
2.1.0 [skip ci]
|
46949f0907cc27c798c5028cc9542b522ea0ba22
|
2022-08-31 21:27:51
|
d4rkk3y
|
feat: `tiktok-download` and `tiktok-seekbar` patch (#405)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/annotations/DownloadsCompatibility.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/annotations/DownloadsCompatibility.kt
new file mode 100644
index 0000000000..170239e7e8
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/annotations/DownloadsCompatibility.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.tiktok.interaction.downloads.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility(
+ [
+ Package("com.ss.android.ugc.trill", arrayOf()),
+ Package("com.zhiliaoapp.musically", arrayOf())
+ ]
+)
+@Target(AnnotationTarget.CLASS)
+@Retention(AnnotationRetention.RUNTIME)
+internal annotation class DownloadsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt
new file mode 100644
index 0000000000..991702cd1d
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.tiktok.interaction.downloads.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
+import org.jf.dexlib2.AccessFlags
+
+@Name("acl-common-share-get-code")
+@MatchingMethod("ACLCommonShare", "getCode")
+@DownloadsCompatibility
+@Version("0.0.1")
+object ACLCommonShareFingerprint : MethodFingerprint(
+ "I",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ null,
+ null,
+ null,
+ { methodDef ->
+ methodDef.definingClass.endsWith("/ACLCommonShare;") &&
+ methodDef.name == "getCode"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt
new file mode 100644
index 0000000000..62284e3955
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.tiktok.interaction.downloads.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
+import org.jf.dexlib2.AccessFlags
+
+@Name("acl-common-share-get-show-type")
+@MatchingMethod("ACLCommonShare", "getShowType")
+@DownloadsCompatibility
+@Version("0.0.1")
+object ACLCommonShareFingerprint2 : MethodFingerprint(
+ "I",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ null,
+ null,
+ null,
+ { methodDef ->
+ methodDef.definingClass.endsWith("/ACLCommonShare;") &&
+ methodDef.name == "getShowType"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt
new file mode 100644
index 0000000000..9e1c49635e
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.tiktok.interaction.downloads.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
+import org.jf.dexlib2.AccessFlags
+
+@Name("acl-common-share-get-transcode")
+@MatchingMethod("ACLCommonShare", "getTranscode")
+@DownloadsCompatibility
+@Version("0.0.1")
+object ACLCommonShareFingerprint3 : MethodFingerprint(
+ "I",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ null,
+ null,
+ null,
+ { methodDef ->
+ methodDef.definingClass.endsWith("/ACLCommonShare;") &&
+ methodDef.name == "getTranscode"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt
new file mode 100644
index 0000000000..0360d2dbe5
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt
@@ -0,0 +1,56 @@
+package app.revanced.patches.tiktok.interaction.downloads.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.impl.BytecodeData
+import app.revanced.patcher.extensions.replaceInstructions
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.patch.impl.BytecodePatch
+import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
+import app.revanced.patches.tiktok.interaction.downloads.fingerprints.*
+
+@Patch
+@Name("tiktok-download")
+@Description("Remove restrictions on downloads video.")
+@DownloadsCompatibility
+@Version("0.0.1")
+class DownloadsPatch : BytecodePatch(
+ listOf(
+ ACLCommonShareFingerprint,
+ ACLCommonShareFingerprint2,
+ ACLCommonShareFingerprint3
+ )
+) {
+ override fun execute(data: BytecodeData): PatchResult {
+ val method1 = ACLCommonShareFingerprint.result!!.mutableMethod
+ method1.replaceInstructions(
+ 0,
+ """
+ const/4 v0, 0x0
+ return v0
+ """
+ )
+ val method2 = ACLCommonShareFingerprint2.result!!.mutableMethod
+ method2.replaceInstructions(
+ 0,
+ """
+ const/4 v0, 0x2
+ return v0
+ """
+ )
+ //Download videos without watermark.
+ val method3 = ACLCommonShareFingerprint3.result!!.mutableMethod
+ method3.replaceInstructions(
+ 0,
+ """
+ const/4 v0, 0x1
+ return v0
+ """
+ )
+ return PatchResultSuccess()
+ }
+
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/annotations/SeekbarCompatibility.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/annotations/SeekbarCompatibility.kt
new file mode 100644
index 0000000000..7c7983c46e
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/annotations/SeekbarCompatibility.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.tiktok.interaction.seekbar.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility(
+ [
+ Package("com.ss.android.ugc.trill", arrayOf()),
+ Package("com.zhiliaoapp.musically", arrayOf())
+ ]
+)
+@Target(AnnotationTarget.CLASS)
+@Retention(AnnotationRetention.RUNTIME)
+internal annotation class SeekbarCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/AwemeGetVideoControlFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/AwemeGetVideoControlFingerprint.kt
new file mode 100644
index 0000000000..0ac485d28b
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/AwemeGetVideoControlFingerprint.kt
@@ -0,0 +1,23 @@
+package app.revanced.patches.tiktok.interaction.seekbar.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.tiktok.interaction.seekbar.annotations.SeekbarCompatibility
+import org.jf.dexlib2.AccessFlags
+
+@Name("aweme-get-video-control")
+@MatchingMethod("Aweme", "getVideoControl")
+@SeekbarCompatibility
+@Version("0.0.1")
+object AwemeGetVideoControlFingerprint : MethodFingerprint(
+ "L",
+ AccessFlags.PUBLIC.value,
+ null,
+ null,
+ null,
+ { methodDef ->
+ methodDef.definingClass.endsWith("/Aweme;") && methodDef.name == "getVideoControl"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/TiktokSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/TiktokSeekbarPatch.kt
new file mode 100644
index 0000000000..90ecf04e5f
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/TiktokSeekbarPatch.kt
@@ -0,0 +1,47 @@
+package app.revanced.patches.tiktok.interaction.seekbar.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.impl.BytecodeData
+import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultError
+import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.patch.impl.BytecodePatch
+import app.revanced.patches.tiktok.interaction.seekbar.annotations.SeekbarCompatibility
+import app.revanced.patches.tiktok.interaction.seekbar.fingerprints.*
+import org.jf.dexlib2.Opcode
+import org.jf.dexlib2.builder.instruction.BuilderInstruction11n
+import org.jf.dexlib2.builder.instruction.BuilderInstruction22c
+
+@Patch
+@Name("tiktok-seekbar")
+@Description("Show progress bar for all video.")
+@SeekbarCompatibility
+@Version("0.0.1")
+class TiktokSeekbarPatch : BytecodePatch(
+ listOf(
+ AwemeGetVideoControlFingerprint
+ )
+) {
+ override fun execute(data: BytecodeData): PatchResult {
+ //Get VideoControl FieldReference
+ val videoControl = data.findClass { it.type.endsWith("/VideoControl;") }
+ ?: return PatchResultError("Can not find target class")
+ val fieldList = videoControl.immutableClass.fields.associateBy { field -> field.name }
+
+ val method = AwemeGetVideoControlFingerprint.result!!.mutableMethod
+ val implementation = method.implementation!!
+ implementation.addInstructions(
+ 1, listOf(
+ BuilderInstruction11n(Opcode.CONST_4, 1, 1),
+ BuilderInstruction22c(Opcode.IPUT, 1, 0, fieldList["showProgressBar"]!!),
+ BuilderInstruction22c(Opcode.IPUT, 1, 0, fieldList["draftProgressBar"]!!)
+ )
+ )
+ return PatchResultSuccess()
+ }
+
+}
\ No newline at end of file
|
feat
|
`tiktok-download` and `tiktok-seekbar` patch (#405)
|
d3a2fb17f1cccd35b6a14009be07263632b1023f
|
2024-11-27 02:36:29
|
semantic-release-bot
|
chore: Release v5.2.0-dev.3 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 441213f18c..8f09df37f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.2.0-dev.3](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.2...v5.2.0-dev.3) (2024-11-26)
+
+
+### Features
+
+* **VSCO:** Remove non functional `Unlock pro` patch ([4fddb19](https://github.com/ReVanced/revanced-patches/commit/4fddb1930bc7adeee3b60ae9cd346b143e88bd42))
+
# [5.2.0-dev.2](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.1...v5.2.0-dev.2) (2024-11-26)
diff --git a/gradle.properties b/gradle.properties
index da03befaec..88647ffc3b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.2.0-dev.2
+version = 5.2.0-dev.3
|
chore
|
Release v5.2.0-dev.3 [skip ci]
|
eeb3d805258c15455f5fdc9f457dce82582302ec
|
2023-07-06 23:49:10
|
oSumAtrIX
|
chore: remove `ReadmeGenerator`
| false
|
diff --git a/README-template.md b/README-template.md
deleted file mode 100644
index 5f21d12d57..0000000000
--- a/README-template.md
+++ /dev/null
@@ -1,122 +0,0 @@
-## 🧩 ReVanced Patches
-
-The official ReVanced Patches.
-
-## 📋 List of patches in this repository
-
-{{ table }}
-
-> Looking for the JSON variant of this? [Click here](patches.json).
-
-## 📝 JSON Format
-
-This section explains the JSON format for the [patches.json](patches.json) file.
-
-The file contains an array of objects, each object representing a patch. The object contains the following properties:
-
-| key | description |
-|-------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `name` | The name of the patch. |
-| `description` | The description of the patch. |
-| `version` | The version of the patch. |
-| `excluded` | Whether the patch is excluded by default. If `true`, the patch must never be included by default. |
-| `options` | An array of options for this patch. |
-| `options.key` | The key of the option. |
-| `options.title` | The title of the option. |
-| `options.description` | The description of the option. |
-| `options.required` | Whether the option is required. |
-| `options.choices?` | An array of choices of the option. This may be `null` if this option has no choices. The element type of this array may be any type. It can be a `String`, `Int` or something else. |
-| `dependencies` | An array of dependencies, which are patch names. |
-| `compatiblePackages` | An array of packages compatible with this patch. |
-| `compatiblePackages.name` | The name of the package. |
-| `compatiblePackages.versions` | An array of versions of the package compatible with this patch. If empty, all versions are seemingly compatible. |
-
-Example:
-
-```json
-[
- {
- "name": "remember-video-quality",
- "description": "Adds the ability to remember the video quality you chose in the video quality flyout.",
- "version": "0.0.1",
- "excluded": false,
- "options": [],
- "dependencies": [
- "integrations",
- "video-id-hook"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": [
- "17.22.36",
- "17.24.35",
- "17.26.35",
- "17.27.39",
- "17.28.34",
- "17.29.34",
- "17.32.35",
- "17.33.42"
- ]
- }
- ]
- },
- {
- "name": "theme",
- "description": "Enables a custom theme.",
- "version": "0.0.1",
- "excluded": false,
- "options": [
- {
- "key": "theme",
- "title": "Theme",
- "description": "Select a theme.",
- "required": true,
- "choices": [
- "Amoled"
- ]
- }
- ],
- "dependencies": [
- "locale-config-fix"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": []
- }
- ]
- },
- {
- "name": "custom-branding",
- "description": "Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).",
- "version": "0.0.1",
- "excluded": false,
- "options": [
- {
- "key": "appName",
- "title": "Application Name",
- "description": "The name of the application it will show on your home screen.",
- "required": true,
- "choices": null
- },
- {
- "key": "appIconPath",
- "title": "Application Icon Path",
- "description": "A path to the icon of the application.",
- "required": false,
- "choices": null
- }
- ],
- "dependencies": [
- "locale-config-fix"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": []
- }
- ]
- }
-]
-```
\ No newline at end of file
diff --git a/README.md b/README.md
index 2236430bb2..79fde2b821 100644
--- a/README.md
+++ b/README.md
@@ -1,635 +1,3 @@
## 🧩 ReVanced Patches
-The official ReVanced Patches.
-
-## 📋 List of patches in this repository
-
-### [📦 `com.google.android.youtube`](https://play.google.com/store/apps/details?id=com.google.android.youtube)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `always-autorepeat` | Always repeats the playing video again. | 18.19.35 |
-| `client-spoof` | Spoofs a patched client to allow playback. | 18.19.35 |
-| `comments` | Hides components related to comments. | 18.19.35 |
-| `copy-video-url` | Adds buttons in player to copy video links. | 18.19.35 |
-| `custom-branding` | Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). | all |
-| `custom-video-buffer` | Lets you change the buffers of videos. | 18.19.35 |
-| `disable-auto-captions` | Disable forced captions from being automatically enabled. | 18.19.35 |
-| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | 18.19.35 |
-| `disable-player-popup-panels` | Disables panels from appearing automatically when going into fullscreen (playlist or live chat). | 18.19.35 |
-| `disable-shorts-on-startup` | Disables playing YouTube Shorts when launching YouTube. | 18.19.35 |
-| `disable-zoom-haptics` | Disables haptics when zooming. | all |
-| `enable-debugging` | Adds debugging options. | all |
-| `external-downloads` | Adds support to download and save YouTube videos using an external app. | 18.19.35 |
-| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | 18.19.35 |
-| `hide-ads` | Removes general ads. | 18.19.35 |
-| `hide-album-cards` | Hides the album cards below the artist description. | 18.19.35 |
-| `hide-autoplay-button` | Hides the autoplay button in the video player. | 18.19.35 |
-| `hide-breaking-news-shelf` | Hides the breaking news shelf on the homepage tab. | 18.19.35 |
-| `hide-captions-button` | Hides the captions button on video player. | 18.19.35 |
-| `hide-cast-button` | Hides the cast button in the video player. | all |
-| `hide-crowdfunding-box` | Hides the crowdfunding box between the player and video description. | 18.19.35 |
-| `hide-email-address` | Hides the email address in the account switcher. | 18.19.35 |
-| `hide-endscreen-cards` | Hides the suggested video cards at the end of a video in fullscreen. | 18.19.35 |
-| `hide-filter-bar` | Hides the filter bar in video feeds. | 18.19.35 |
-| `hide-floating-microphone-button` | Hides the floating microphone button which appears in search. | 18.19.35 |
-| `hide-info-cards` | Hides info cards in videos. | 18.19.35 |
-| `hide-layout-components` | Hides general layout components. | 18.19.35 |
-| `hide-load-more-button` | Hides the button under videos that loads similar videos. | 18.19.35 |
-| `hide-player-buttons` | Adds the option to hide video player previous and next buttons. | 18.19.35 |
-| `hide-player-overlay` | Hides the dark background overlay from the player when player controls are visible. | all |
-| `hide-seekbar` | Hides the seekbar. | 18.19.35 |
-| `hide-shorts-components` | Hides components from YouTube Shorts. | 18.19.35 |
-| `hide-timestamp` | Hides timestamp in video player. | 18.19.35 |
-| `hide-video-action-buttons` | Adds the options to hide action buttons under a video. | 18.19.35 |
-| `hide-watch-in-vr` | Hides the option to watch in VR from the player settings flyout panel. | 18.19.35 |
-| `hide-watermark` | Hides creator's watermarks on videos. | 18.19.35 |
-| `minimized-playback` | Enables minimized and background playback. | 18.19.35 |
-| `navigation-buttons` | Adds options to hide or change navigation buttons. | 18.19.35 |
-| `old-quality-layout` | Enables the original video quality flyout in the video player settings. | 18.19.35 |
-| `open-links-externally` | Open links outside of the app directly in your browser. | 18.19.35 |
-| `premium-heading` | Shows premium branding on the home screen. | all |
-| `remember-video-quality` | Adds the ability to remember the video quality you chose in the video quality flyout. | 18.19.35 |
-| `remove-player-controls-background` | Removes the background from the video player controls. | 18.19.35 |
-| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | 18.19.35 |
-| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | 18.19.35 |
-| `sponsorblock` | Integrates SponsorBlock which allows skipping video segments such as sponsored content. | 18.19.35 |
-| `spoof-app-version` | Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI. | 18.19.35 |
-| `swipe-controls` | Adds volume and brightness swipe controls. | 18.19.35 |
-| `tablet-mini-player` | Enables the tablet mini player layout. | 18.19.35 |
-| `theme` | Applies a custom theme. | all |
-| `vanced-microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. | 18.19.35 |
-| `video-ads` | Removes ads in the video player. | 18.19.35 |
-| `video-speed` | Adds custom video speeds and ability to remember the playback speed you chose in the video playback speed flyout. | 18.19.35 |
-| `wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 18.19.35 |
-</details>
-
-### [📦 `com.google.android.apps.youtube.music`](https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.music)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `background-play` | Enables playing music in the background. | all |
-| `bypass-certificate-checks` | Bypasses certificate checks which prevent YouTube Music from working on Android Auto. | all |
-| `codecs-unlock` | Adds more audio codec options. The new audio codecs usually result in better audio quality. | all |
-| `compact-header` | Hides the music category bar at the top of the homepage. | all |
-| `exclusive-audio-playback` | Enables the option to play music without video. | all |
-| `hide-get-premium` | Removes all "Get Premium" evidences from the avatar menu. | all |
-| `minimized-playback-music` | Enables minimized playback on Kids music. | all |
-| `music-video-ads` | Removes ads in the music player. | all |
-| `upgrade-button-remover` | Removes the upgrade tab from the pivot bar. | all |
-| `vanced-microg-support` | Allows YouTube Music ReVanced to run without root and under a different package name. | all |
-</details>
-
-### [📦 `com.ss.android.ugc.trill`](https://play.google.com/store/apps/details?id=com.ss.android.ugc.trill)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `disable-login-requirement` | Do not force login. | all |
-| `downloads` | Removes download restrictions and changes the default path to download to. | all |
-| `feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
-| `fix-google-login` | Allows logging in with a Google account. | all |
-| `hide-ads` | Removes ads from TikTok. | all |
-| `playback-speed` | Enables the playback speed option for all videos. | all |
-| `settings` | Adds ReVanced settings to TikTok. | all |
-| `show-seekbar` | Shows progress bar for all video. | all |
-| `sim-spoof` | Spoofs the information which is retrieved from the sim-card. | all |
-</details>
-
-### [📦 `com.zhiliaoapp.musically`](https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `disable-login-requirement` | Do not force login. | all |
-| `downloads` | Removes download restrictions and changes the default path to download to. | all |
-| `feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
-| `fix-google-login` | Allows logging in with a Google account. | all |
-| `hide-ads` | Removes ads from TikTok. | all |
-| `playback-speed` | Enables the playback speed option for all videos. | all |
-| `settings` | Adds ReVanced settings to TikTok. | all |
-| `show-seekbar` | Shows progress bar for all video. | all |
-| `sim-spoof` | Spoofs the information which is retrieved from the sim-card. | all |
-</details>
-
-### [📦 `tv.twitch.android.app`](https://play.google.com/store/apps/details?id=tv.twitch.android.app)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `auto-claim-channel-points` | Automatically claim Channel Points. | 15.4.1 |
-| `block-audio-ads` | Blocks audio ads in streams and VODs. | 15.4.1 |
-| `block-embedded-ads` | Blocks embedded stream ads using services like TTV.lol or PurpleAdBlocker. | 15.4.1 |
-| `block-video-ads` | Blocks video ads in streams and VODs. | 15.4.1 |
-| `debug-mode` | Enables Twitch's internal debugging mode. | all |
-| `settings` | Adds settings menu to Twitch. | all |
-| `show-deleted-messages` | Shows deleted chat messages behind a clickable spoiler. | 15.4.1 |
-</details>
-
-### [📦 `com.reddit.frontpage`](https://play.google.com/store/apps/details?id=com.reddit.frontpage)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `disable-screenshot-popup` | Disables the popup that shows up when taking a screenshot. | all |
-| `hide-ads` | Removes ads from the Reddit. | all |
-| `premium-icon-reddit` | Unlocks premium Reddit app icons. | all |
-| `sanitize-sharing-links` | Removes (tracking) query parameters from the URLs when sharing links. | all |
-</details>
-
-### [📦 `com.twitter.android`](https://play.google.com/store/apps/details?id=com.twitter.android)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `dynamic-color` | Replaces the default Twitter Blue with the users Material You palette. | all |
-| `hide-ads` | Hides ads. | all |
-| `hide-recommended-users` | Hides recommended users. | all |
-| `hide-views-stats` | Hides the view stats under tweets. | 9.71.0-release.0 |
-</details>
-
-### [📦 `com.facebook.orca`](https://play.google.com/store/apps/details?id=com.facebook.orca)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `disable-switching-emoji-to-sticker-in-message-input-field` | Disables switching from emoji to sticker search mode in message input field | all |
-| `disable-typing-indicator` | Disables the indicator while typing a message | all |
-| `hide-inbox-ads` | Hides ads in inbox. | all |
-</details>
-
-### [📦 `com.laurencedawson.reddit_sync`](https://play.google.com/store/apps/details?id=com.laurencedawson.reddit_sync)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://redditsync/auth". | all |
-| `disable-ads` | Disables ads. | all |
-</details>
-
-### [📦 `com.spotify.music`](https://play.google.com/store/apps/details?id=com.spotify.music)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-premium-navbar` | Removes the premium tab from the navbar. | all |
-| `spotify-theme` | Applies a custom theme. | all |
-</details>
-
-### [📦 `com.sony.songpal.mdr`](https://play.google.com/store/apps/details?id=com.sony.songpal.mdr)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-badge-tab` | Removes the badge tab from the activity tab. | all |
-| `remove-notification-badge` | Removes the red notification badge from the activity tab. | all |
-</details>
-
-### [📦 `at.gv.bmf.bmf2go`](https://play.google.com/store/apps/details?id=at.gv.bmf.bmf2go)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-bootloader-detection` | Removes the check for an unlocked bootloader. | all |
-| `remove-root-detection` | Removes the check for root permissions. | all |
-</details>
-
-### [📦 `at.gv.oe.app`](https://play.google.com/store/apps/details?id=at.gv.oe.app)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-root-detection` | Removes the check for root permissions and unlocked bootloader. | all |
-| `spoof-signature` | Spoofs the signature of the app. | all |
-</details>
-
-### [📦 `ml.docilealligator.infinityforreddit`](https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforreddit)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "infinity://localhost". | all |
-</details>
-
-### [📦 `me.ccrama.redditslide`](https://play.google.com/store/apps/details?id=me.ccrama.redditslide)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://www.ccrama.me". | all |
-</details>
-
-### [📦 `free.reddit.news`](https://play.google.com/store/apps/details?id=free.reddit.news)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "dbrady://relay". | all |
-</details>
-
-### [📦 `reddit.news`](https://play.google.com/store/apps/details?id=reddit.news)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "dbrady://relay". | all |
-</details>
-
-### [📦 `com.onelouder.baconreader`](https://play.google.com/store/apps/details?id=com.onelouder.baconreader)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://baconreader.com/auth". | all |
-</details>
-
-### [📦 `com.onelouder.baconreader.premium`](https://play.google.com/store/apps/details?id=com.onelouder.baconreader.premium)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://baconreader.com/auth". | all |
-</details>
-
-### [📦 `com.rubenmayayo.reddit`](https://play.google.com/store/apps/details?id=com.rubenmayayo.reddit)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://rubenmayayo.com". | all |
-</details>
-
-### [📦 `com.andrewshu.android.reddit`](https://play.google.com/store/apps/details?id=com.andrewshu.android.reddit)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "redditisfun://auth". | all |
-</details>
-
-### [📦 `com.andrewshu.android.redditdonation`](https://play.google.com/store/apps/details?id=com.andrewshu.android.redditdonation)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "redditisfun://auth". | all |
-</details>
-
-### [📦 `com.laurencedawson.reddit_sync.pro`](https://play.google.com/store/apps/details?id=com.laurencedawson.reddit_sync.pro)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://redditsync/auth". | all |
-</details>
-
-### [📦 `com.laurencedawson.reddit_sync.dev`](https://play.google.com/store/apps/details?id=com.laurencedawson.reddit_sync.dev)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `change-oauth-client-id` | Changes the OAuth client ID. The OAuth application type has to be "Installed app" and the redirect URI has to be set to "http://redditsync/auth". | all |
-</details>
-
-### [📦 `com.myprog.hexedit`](https://play.google.com/store/apps/details?id=com.myprog.hexedit)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `disable-ads` | Disables ads in HexEditor. | all |
-</details>
-
-### [📦 `com.spotify.lite`](https://play.google.com/store/apps/details?id=com.spotify.lite)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `enable-on-demand` | Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads. | all |
-</details>
-
-### [📦 `com.nis.app`](https://play.google.com/store/apps/details?id=com.nis.app)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-ads` | Removes ads from Inshorts. | all |
-</details>
-
-### [📦 `com.vanced.android.youtube`](https://play.google.com/store/apps/details?id=com.vanced.android.youtube)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-ads` | Removes general ads. | all |
-</details>
-
-### [📦 `jp.pxv.android`](https://play.google.com/store/apps/details?id=jp.pxv.android)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-ads` | Hides ads. | all |
-</details>
-
-### [📦 `com.instagram.android`](https://play.google.com/store/apps/details?id=com.instagram.android)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-timeline-ads` | Removes ads from the timeline. | 275.0.0.27.98 |
-</details>
-
-### [📦 `com.backdrops.wallpapers`](https://play.google.com/store/apps/details?id=com.backdrops.wallpapers)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `pro-unlock` | Unlocks pro-only functions. | 4.52 |
-</details>
-
-### [📦 `de.dwd.warnapp`](https://play.google.com/store/apps/details?id=de.dwd.warnapp)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `promo-code-unlock` | Disables the validation of promo code. Any code will work to unlock all features. | all |
-</details>
-
-### [📦 `net.binarymode.android.irplus`](https://play.google.com/store/apps/details?id=net.binarymode.android.irplus)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-ads` | Removes all ads from the app. | all |
-</details>
-
-### [📦 `eu.faircode.netguard`](https://play.google.com/store/apps/details?id=eu.faircode.netguard)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-broadcasts-restriction` | Enables starting/stopping NetGuard via broadcasts. | all |
-</details>
-
-### [📦 `com.scb.phone`](https://play.google.com/store/apps/details?id=com.scb.phone)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-debugging-detection` | Removes the USB and wireless debugging checks. | all |
-</details>
-
-### [📦 `com.google.android.apps.recorder`](https://play.google.com/store/apps/details?id=com.google.android.apps.recorder)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `remove-device-restrictions` | Removes restrictions from using the app on any device. | all |
-</details>
-
-### [📦 `com.dci.dev.androidtwelvewidgets`](https://play.google.com/store/apps/details?id=com.dci.dev.androidtwelvewidgets)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-paid-widgets` | Unlocks paid widgets of the app | all |
-</details>
-
-### [📦 `com.microblink.photomath`](https://play.google.com/store/apps/details?id=com.microblink.photomath)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-plus` | Unlocks plus features. | 8.20.0 |
-</details>
-
-### [📦 `io.yuka.android`](https://play.google.com/store/apps/details?id=io.yuka.android)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-premium` | Unlocks premium features. | all |
-</details>
-
-### [📦 `com.teslacoilsw.launcher`](https://play.google.com/store/apps/details?id=com.teslacoilsw.launcher)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-prime` | Unlocks Nova Prime and all functions of the app. | all |
-</details>
-
-### [📦 `org.totschnig.myexpenses`](https://play.google.com/store/apps/details?id=org.totschnig.myexpenses)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks all professional features. | 3.4.9 |
-</details>
-
-### [📦 `ginlemon.iconpackstudio`](https://play.google.com/store/apps/details?id=ginlemon.iconpackstudio)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks all pro features. | all |
-</details>
-
-### [📦 `com.zombodroid.MemeGenerator`](https://play.google.com/store/apps/details?id=com.zombodroid.MemeGenerator)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks pro features. | 4.6377 |
-</details>
-
-### [📦 `co.windyapp.android`](https://play.google.com/store/apps/details?id=co.windyapp.android)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks all pro features. | all |
-</details>
-
-### [📦 `com.vsco.cam`](https://play.google.com/store/apps/details?id=com.vsco.cam)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks pro features. | all |
-</details>
-
-### [📦 `com.wakdev.apps.nfctools.se`](https://play.google.com/store/apps/details?id=com.wakdev.apps.nfctools.se)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks all pro features. | all |
-</details>
-
-### [📦 `com.ithebk.expensemanager`](https://play.google.com/store/apps/details?id=com.ithebk.expensemanager)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks pro features. | all |
-</details>
-
-### [📦 `com.candylink.openvpn`](https://play.google.com/store/apps/details?id=com.candylink.openvpn)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks premium features. | all |
-</details>
-
-### [📦 `tv.trakt.trakt`](https://play.google.com/store/apps/details?id=tv.trakt.trakt)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks pro features. | all |
-</details>
-
-### [📦 `com.awedea.nyx`](https://play.google.com/store/apps/details?id=com.awedea.nyx)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-pro` | Unlocks all pro features. | all |
-</details>
-
-### [📦 `com.ticktick.task`](https://play.google.com/store/apps/details?id=com.ticktick.task)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-themes` | Unlocks all themes that are inaccessible until a certain level is reached. | all |
-</details>
-
-### [📦 `net.dinglisch.android.taskerm`](https://play.google.com/store/apps/details?id=net.dinglisch.android.taskerm)
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `unlock-trial` | Unlocks the trial version. | all |
-</details>
-
-
-
-> Looking for the JSON variant of this? [Click here](patches.json).
-
-## 📝 JSON Format
-
-This section explains the JSON format for the [patches.json](patches.json) file.
-
-The file contains an array of objects, each object representing a patch. The object contains the following properties:
-
-| key | description |
-|-------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `name` | The name of the patch. |
-| `description` | The description of the patch. |
-| `version` | The version of the patch. |
-| `excluded` | Whether the patch is excluded by default. If `true`, the patch must never be included by default. |
-| `options` | An array of options for this patch. |
-| `options.key` | The key of the option. |
-| `options.title` | The title of the option. |
-| `options.description` | The description of the option. |
-| `options.required` | Whether the option is required. |
-| `options.choices?` | An array of choices of the option. This may be `null` if this option has no choices. The element type of this array may be any type. It can be a `String`, `Int` or something else. |
-| `dependencies` | An array of dependencies, which are patch names. |
-| `compatiblePackages` | An array of packages compatible with this patch. |
-| `compatiblePackages.name` | The name of the package. |
-| `compatiblePackages.versions` | An array of versions of the package compatible with this patch. If empty, all versions are seemingly compatible. |
-
-Example:
-
-```json
-[
- {
- "name": "remember-video-quality",
- "description": "Adds the ability to remember the video quality you chose in the video quality flyout.",
- "version": "0.0.1",
- "excluded": false,
- "options": [],
- "dependencies": [
- "integrations",
- "video-id-hook"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": [
- "17.22.36",
- "17.24.35",
- "17.26.35",
- "17.27.39",
- "17.28.34",
- "17.29.34",
- "17.32.35",
- "17.33.42"
- ]
- }
- ]
- },
- {
- "name": "theme",
- "description": "Enables a custom theme.",
- "version": "0.0.1",
- "excluded": false,
- "options": [
- {
- "key": "theme",
- "title": "Theme",
- "description": "Select a theme.",
- "required": true,
- "choices": [
- "Amoled"
- ]
- }
- ],
- "dependencies": [
- "locale-config-fix"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": []
- }
- ]
- },
- {
- "name": "custom-branding",
- "description": "Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).",
- "version": "0.0.1",
- "excluded": false,
- "options": [
- {
- "key": "appName",
- "title": "Application Name",
- "description": "The name of the application it will show on your home screen.",
- "required": true,
- "choices": null
- },
- {
- "key": "appIconPath",
- "title": "Application Icon Path",
- "description": "A path to the icon of the application.",
- "required": false,
- "choices": null
- }
- ],
- "dependencies": [
- "locale-config-fix"
- ],
- "compatiblePackages": [
- {
- "name": "com.google.android.youtube",
- "versions": []
- }
- ]
- }
-]
-```
\ No newline at end of file
+Patches for ReVanced.
diff --git a/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt b/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
index 62667a331a..dfb57d9229 100644
--- a/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
+++ b/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
@@ -19,7 +19,7 @@ internal interface PatchesFileGenerator {
).loadPatches().also {
if (it.isEmpty()) throw IllegalStateException("No patches found")
}.let { bundle ->
- arrayOf(JsonGenerator(), ReadmeGenerator()).forEach { it.generate(bundle) }
+ arrayOf(JsonGenerator()).forEach { it.generate(bundle) }
}
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/meta/ReadmeGenerator.kt b/src/main/kotlin/app/revanced/meta/ReadmeGenerator.kt
deleted file mode 100644
index e8a951eace..0000000000
--- a/src/main/kotlin/app/revanced/meta/ReadmeGenerator.kt
+++ /dev/null
@@ -1,69 +0,0 @@
-package app.revanced.meta
-
-import app.revanced.patcher.data.Context
-import app.revanced.patcher.extensions.PatchExtensions.compatiblePackages
-import app.revanced.patcher.extensions.PatchExtensions.description
-import app.revanced.patcher.extensions.PatchExtensions.patchName
-import app.revanced.patcher.patch.Patch
-import com.unascribed.flexver.FlexVerComparator
-import java.io.File
-
-internal class ReadmeGenerator : PatchesFileGenerator {
- private companion object {
- private const val TABLE_HEADER =
- "| \uD83D\uDC8A Patch | \uD83D\uDCDC Description | \uD83C\uDFF9 Target Version |\n" +
- "|:--------:|:--------------:|:-----------------:|"
- }
-
- override fun generate(bundle: PatchBundlePatches) {
- val output = StringBuilder()
-
- mutableMapOf<String, MutableList<Class<out Patch<Context>>>>()
- .apply {
- for (patch in bundle) {
- patch.compatiblePackages?.forEach { pkg ->
- if (!contains(pkg.name)) put(pkg.name, mutableListOf())
- this[pkg.name]!!.add(patch)
- }
- }
- }
- .entries
- .sortedByDescending { it.value.size }
- .forEach { (`package`, patches) ->
- val mostCommonVersion = buildMap {
- patches.forEach { patch ->
- patch.compatiblePackages?.single { compatiblePackage -> compatiblePackage.name == `package` }?.versions?.let {
- it.forEach { version -> merge(version, 1, Integer::sum) }
- }
- }
- }.let { commonMap ->
- commonMap.maxByOrNull { it.value }?.value?.let {
- commonMap.entries.filter { mostCommon -> mostCommon.value == it }
- .maxOfWith(FlexVerComparator::compare, Map.Entry<String, Int>::key)
- } ?: "all"
- }
-
- output.apply {
- appendLine("### [\uD83D\uDCE6 `${`package`}`](https://play.google.com/store/apps/details?id=${`package`})")
- appendLine("<details>\n")
- appendLine(TABLE_HEADER)
- patches.forEach { patch ->
- val recommendedPatchVersion = if (
- patch.compatiblePackages?.single { it.name == `package` }?.versions?.isNotEmpty() == true
- ) mostCommonVersion else "all"
-
- appendLine(
- "| `${patch.patchName}` " +
- "| ${patch.description} " +
- "| $recommendedPatchVersion |"
- )
- }
- appendLine("</details>\n")
- }
- }
-
- StringBuilder(File("README-template.md").readText())
- .replace(Regex("\\{\\{\\s?table\\s?}}"), output.toString())
- .let(File("README.md")::writeText)
- }
-}
\ No newline at end of file
|
chore
|
remove `ReadmeGenerator`
|
da12508a4693d014e8793a5b92c4a2036c62eb56
|
2024-04-21 04:09:55
|
semantic-release-bot
|
chore(release): 4.7.0-dev.14 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85f5d0ea1b..1a475bd560 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.7.0-dev.14](https://github.com/ReVanced/revanced-patches/compare/v4.7.0-dev.13...v4.7.0-dev.14) (2024-04-20)
+
+
+### Features
+
+* **YT Music - Hide 'Get Music Premium' label:** Remove occurences of label in settings ([#3046](https://github.com/ReVanced/revanced-patches/issues/3046)) ([10e170a](https://github.com/ReVanced/revanced-patches/commit/10e170a7302fdb585efee663ca13c814aea46c54))
+
# [4.7.0-dev.13](https://github.com/ReVanced/revanced-patches/compare/v4.7.0-dev.12...v4.7.0-dev.13) (2024-04-18)
diff --git a/gradle.properties b/gradle.properties
index b939a7e0c0..c27a904327 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.7.0-dev.13
+version = 4.7.0-dev.14
|
chore
|
4.7.0-dev.14 [skip ci]
|
47fc9fe74d62e5d25e92a2579ad1a3e6e5749056
|
2022-12-29 22:14:25
|
semantic-release-bot
|
chore(release): 2.148.0-dev.5 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d31d4fd86..64f6e6ad42 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.148.0-dev.5](https://github.com/revanced/revanced-patches/compare/v2.148.0-dev.4...v2.148.0-dev.5) (2022-12-29)
+
+
+### Features
+
+* **youtube:** `hide-breaking-news-shelf` patch ([#1381](https://github.com/revanced/revanced-patches/issues/1381)) ([38a9877](https://github.com/revanced/revanced-patches/commit/38a987744fbb49c2b7d5d0e69297e95f5ee405c4))
+
# [2.148.0-dev.4](https://github.com/revanced/revanced-patches/compare/v2.148.0-dev.3...v2.148.0-dev.4) (2022-12-29)
diff --git a/README.md b/README.md
index bb6db602b7..c71eaea65b 100644
--- a/README.md
+++ b/README.md
@@ -28,6 +28,7 @@ The official Patch bundle provided by ReVanced and the community.
| `hide-album-cards` | Hides the album cards below the artist description. | 17.49.37 |
| `hide-artist-card` | Hides the artist card below the searchbar. | 17.49.37 |
| `hide-autoplay-button` | Hides the autoplay button in the video player. | 17.49.37 |
+| `hide-breaking-news-shelf` | Hides the breaking news shelf on the homepage tab. | 17.49.37 |
| `hide-captions-button` | Hides the captions button on video player. | 17.49.37 |
| `hide-cast-button` | Hides the cast button in the video player. | all |
| `hide-create-button` | Hides the create button in the navigation bar. | 17.49.37 |
diff --git a/gradle.properties b/gradle.properties
index 4d0872fc69..71069d6212 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.148.0-dev.4
+version = 2.148.0-dev.5
diff --git a/patches.json b/patches.json
index a3ec1cb06e..12ee0f5160 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-embedded-ads","description":"Blocks embedded steam ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option in the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"open-links-directly","description":"Bypasses URL redirects and opens links directly inside YouTube app.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":true,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"unlock-license","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","fix-playback"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]}]
\ No newline at end of file
+[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-embedded-ads","description":"Blocks embedded steam ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-breaking-news-shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","breaking-news-shelf-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option in the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"open-links-directly","description":"Bypasses URL redirects and opens links directly inside YouTube app.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":true,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"unlock-license","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","fix-playback"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37"]}]}]
\ No newline at end of file
|
chore
|
2.148.0-dev.5 [skip ci]
|
e9c946008ee912652d288e515b83b52ae2d239d8
|
2022-06-01 05:20:01
|
oSumAtrIX
|
fix: missing extension method `doRecursively`
| false
|
diff --git a/src/main/kotlin/app/revanced/extensions/Extensions.kt b/src/main/kotlin/app/revanced/extensions/Extensions.kt
index 8b7e5e20f2..7797d890ca 100644
--- a/src/main/kotlin/app/revanced/extensions/Extensions.kt
+++ b/src/main/kotlin/app/revanced/extensions/Extensions.kt
@@ -2,6 +2,7 @@ package app.revanced.extensions
import app.revanced.patcher.util.smali.toInstruction
import org.jf.dexlib2.builder.MutableMethodImplementation
+import org.w3c.dom.Node
internal fun MutableMethodImplementation.injectHideCall(
index: Int,
@@ -13,6 +14,11 @@ internal fun MutableMethodImplementation.injectHideCall(
)
}
+internal fun Node.doRecursively(action: (Node) -> Unit) {
+ action(this)
+ for (i in 0 until this.childNodes.length) this.childNodes.item(i).doRecursively(action)
+}
+
internal fun String.startsWithAny(vararg prefix: String): Boolean {
for (_prefix in prefix)
if (this.startsWith(_prefix))
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/mapping/patch/ResourceIdMappingProviderResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/mapping/patch/ResourceIdMappingProviderResourcePatch.kt
index bb11d59116..656a5b6416 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/mapping/patch/ResourceIdMappingProviderResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/mapping/patch/ResourceIdMappingProviderResourcePatch.kt
@@ -1,5 +1,6 @@
package app.revanced.patches.youtube.misc.mapping.patch
+import app.revanced.extensions.doRecursively
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
@@ -7,7 +8,6 @@ import app.revanced.patcher.data.implementation.ResourceData
import app.revanced.patcher.patch.implementation.ResourcePatch
import app.revanced.patcher.patch.implementation.misc.PatchResult
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
-import app.revanced.patches.youtube.ad.general.resource.util.Extensions.doRecursively
import org.w3c.dom.Element
@Name("resource-id-mapping-provider-resource-patch-dependency")
|
fix
|
missing extension method `doRecursively`
|
d053014d6be1c8a3b08e87234bf18b89d21b5c9e
|
2023-06-18 22:21:21
|
semantic-release-bot
|
chore(release): 2.178.0-dev.5 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 98cfc12a3e..ddb185404a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.178.0-dev.5](https://github.com/revanced/revanced-patches/compare/v2.178.0-dev.4...v2.178.0-dev.5) (2023-06-18)
+
+
+### Features
+
+* **youtube/hide-layout-components:** separate hiding expandable chips and chapters ([3fb1ce9](https://github.com/revanced/revanced-patches/commit/3fb1ce9f9af150b784e42aaf5b419bb123c08375))
+
# [2.178.0-dev.4](https://github.com/revanced/revanced-patches/compare/v2.178.0-dev.3...v2.178.0-dev.4) (2023-06-18)
diff --git a/gradle.properties b/gradle.properties
index e6b9f30da3..29733a965b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.178.0-dev.4
+version = 2.178.0-dev.5
|
chore
|
2.178.0-dev.5 [skip ci]
|
2da508689c68be80220993528a05c678dea68d1c
|
2022-10-27 02:24:00
|
semantic-release-bot
|
chore(release): 2.92.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e996d6afb8..63c6384bf0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.92.0](https://github.com/revanced/revanced-patches/compare/v2.91.0...v2.92.0) (2022-10-26)
+
+
+### Features
+
+* **youtube/hide-mix-playlists:** hide in video suggestions ([#854](https://github.com/revanced/revanced-patches/issues/854)) ([acde5f0](https://github.com/revanced/revanced-patches/commit/acde5f066053ca3d58ca09fc2a6a1381ba27d84b))
+
# [2.91.0](https://github.com/revanced/revanced-patches/compare/v2.90.0...v2.91.0) (2022-10-26)
diff --git a/README.md b/README.md
index db9ec567e0..96c67f8545 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ The official Patch bundle provided by ReVanced and the community.
| `hide-email-address` | Hides the email address in the account switcher. | 17.36.37 |
| `tablet-mini-player` | Enables the tablet mini player layout. | 17.36.37 |
| `hide-watermark` | Hides creator's watermarks on videos. | 17.36.37 |
-| `hide-my-mix` | Removes mix playlists from the feed. | 17.40.41 |
+| `hide-my-mix` | Hides mix playlists. | 17.40.41 |
| `custom-branding` | Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). | all |
| `premium-heading` | Shows premium branding on the home screen. | all |
| `old-quality-layout` | Enables the original quality flyout menu. | 17.36.37 |
diff --git a/gradle.properties b/gradle.properties
index 6957d15fbf..8992abbc3a 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.91.0
+version = 2.92.0
diff --git a/patches.json b/patches.json
index f6ffe67ad1..467c7912c6 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"comments","description":"Hides comments components below the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-my-mix","description":"Removes mix playlists from the feed.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.32.39","17.34.36","17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings","general-resource-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]}]
\ No newline at end of file
+[{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"comments","description":"Hides comments components below the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.32.39","17.34.36","17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings","general-resource-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]}]
\ No newline at end of file
|
chore
|
2.92.0 [skip ci]
|
561a202bfffc5fcdbab1793f39548d2dae7c8b6b
|
2024-06-08 22:03:11
|
semantic-release-bot
|
chore(release): 4.10.0-dev.3 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 930d20dd59..355e2293c4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.10.0-dev.3](https://github.com/ReVanced/revanced-patches/compare/v4.10.0-dev.2...v4.10.0-dev.3) (2024-06-08)
+
+
+### Features
+
+* **Boost For Reddit:** Add `Fix /s/ links` patch ([#3154](https://github.com/ReVanced/revanced-patches/issues/3154)) ([5fa9fd2](https://github.com/ReVanced/revanced-patches/commit/5fa9fd2dfef43838d7311a967a3e805256a5d116))
+
# [4.10.0-dev.2](https://github.com/ReVanced/revanced-patches/compare/v4.10.0-dev.1...v4.10.0-dev.2) (2024-06-08)
diff --git a/gradle.properties b/gradle.properties
index d97c7ab742..72cd71e50b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.10.0-dev.2
+version = 4.10.0-dev.3
|
chore
|
4.10.0-dev.3 [skip ci]
|
7e1bdab520dba65682f018f819c0b7d9783f94ca
|
2024-11-06 21:49:07
|
Zain
|
feat(YouTube - Player flyout menu): Hide sleep timer (#3637)
| false
|
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/components/PlayerFlyoutMenuItemsFilter.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/components/PlayerFlyoutMenuItemsFilter.java
index 3469bbb856..2b0d3c814e 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/components/PlayerFlyoutMenuItemsFilter.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/components/PlayerFlyoutMenuItemsFilter.java
@@ -71,6 +71,10 @@ public PlayerFlyoutMenuItemsFilter() {
Settings.HIDE_AUDIO_TRACK_MENU,
"yt_outline_person_radar"
),
+ new ByteArrayFilterGroup(
+ Settings.HIDE_PLAYER_FLYOUT_MENU_SLEEP_TIMER,
+ "yt_outline_moon_z_"
+ ),
new ByteArrayFilterGroup(
Settings.HIDE_WATCH_IN_VR_MENU,
"yt_outline_vr"
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
index 89cd7e25c7..52fe03290d 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
@@ -187,6 +187,7 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_MORE_INFO_MENU = new BooleanSetting("revanced_hide_player_flyout_more_info", TRUE);
public static final BooleanSetting HIDE_LOCK_SCREEN_MENU = new BooleanSetting("revanced_hide_player_flyout_lock_screen", FALSE);
public static final BooleanSetting HIDE_AUDIO_TRACK_MENU = new BooleanSetting("revanced_hide_player_flyout_audio_track", FALSE);
+ public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_SLEEP_TIMER = new BooleanSetting("revanced_hide_player_flyout_sleep_timer", FALSE);
public static final BooleanSetting HIDE_WATCH_IN_VR_MENU = new BooleanSetting("revanced_hide_player_flyout_watch_in_vr", TRUE);
public static final BooleanSetting HIDE_VIDEO_QUALITY_MENU_FOOTER = new BooleanSetting("revanced_hide_video_quality_menu_footer", FALSE);
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/HidePlayerFlyoutMenuPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/HidePlayerFlyoutMenuPatch.kt
index 9062a5331b..3dc281f742 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/HidePlayerFlyoutMenuPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/HidePlayerFlyoutMenuPatch.kt
@@ -52,6 +52,7 @@ val hidePlayerFlyoutMenuPatch = bytecodePatch(
SwitchPreference("revanced_hide_player_flyout_more_info"),
SwitchPreference("revanced_hide_player_flyout_audio_track"),
SwitchPreference("revanced_hide_player_flyout_watch_in_vr"),
+ SwitchPreference("revanced_hide_player_flyout_sleep_timer"),
SwitchPreference("revanced_hide_video_quality_menu_footer"),
),
),
diff --git a/patches/src/main/resources/addresources/values/strings.xml b/patches/src/main/resources/addresources/values/strings.xml
index 9dde2e8f35..7fda77ff62 100644
--- a/patches/src/main/resources/addresources/values/strings.xml
+++ b/patches/src/main/resources/addresources/values/strings.xml
@@ -513,6 +513,10 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_hide_player_flyout_additional_settings_title">Hide Additional settings</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_on">Additional settings menu is hidden</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_off">Additional settings menu is shown</string>
+ <!-- 'Sleep timer' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_sleep_timer_title">Hide Sleep timer</string>
+ <string name="revanced_hide_player_flyout_sleep_timer_summary_on">Sleep timer menu is hidden</string>
+ <string name="revanced_hide_player_flyout_sleep_timer_summary_off">Sleep timer menu is shown</string>
<!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_loop_video_title">Hide Loop video</string>
<string name="revanced_hide_player_flyout_loop_video_summary_on">Loop video menu is hidden</string>
|
feat
|
Hide sleep timer (#3637)
|
0c7490cbaf367d5029373096c41661c5112bfe53
|
2023-11-17 01:01:58
|
oSumAtrIX
|
feat(YouTube - Vanced MicroG support): Allow changing package name
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
index 500ef7e976..4d13723d5d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
@@ -4,6 +4,7 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.all.misc.packagename.ChangePackageNamePatch
import app.revanced.patches.shared.fingerprints.WatchWhileActivityFingerprint
import app.revanced.patches.youtube.layout.buttons.cast.HideCastButtonPatch
import app.revanced.patches.youtube.misc.fix.playback.ClientSpoofPatch
@@ -16,6 +17,7 @@ import app.revanced.util.microg.MicroGBytecodeHelper
name = "Vanced MicroG support",
description = "Allows YouTube to run without root and under a different package name with Vanced MicroG.",
dependencies = [
+ ChangePackageNamePatch::class,
MicroGResourcePatch::class,
HideCastButtonPatch::class,
ClientSpoofPatch::class
@@ -50,18 +52,20 @@ object MicroGBytecodePatch : BytecodePatch(
)
) {
override fun execute(context: BytecodeContext) {
+ val packageName = ChangePackageNamePatch.setOrGetFallbackPackageName(REVANCED_PACKAGE_NAME)
+
// apply common microG patch
MicroGBytecodeHelper.patchBytecode(
context, arrayOf(
MicroGBytecodeHelper.packageNameTransform(
PACKAGE_NAME,
- REVANCED_PACKAGE_NAME
+ packageName
)
),
MicroGBytecodeHelper.PrimeMethodTransformationData(
PrimeFingerprint,
PACKAGE_NAME,
- REVANCED_PACKAGE_NAME
+ packageName
),
listOf(
ServiceCheckFingerprint,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGResourcePatch.kt
index 43f0575728..c38cb0ba28 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGResourcePatch.kt
@@ -3,6 +3,7 @@ package app.revanced.patches.youtube.misc.microg
import app.revanced.patcher.data.ResourceContext
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.all.misc.packagename.ChangePackageNamePatch
import app.revanced.patches.shared.settings.preference.impl.Preference
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.youtube.misc.microg.shared.Constants.PACKAGE_NAME
@@ -15,7 +16,12 @@ import app.revanced.util.microg.Constants.MICROG_VENDOR
import app.revanced.util.microg.MicroGManifestHelper
import app.revanced.util.microg.MicroGResourceHelper
-@Patch(dependencies = [SettingsPatch::class])
+@Patch(
+ dependencies = [
+ SettingsPatch::class,
+ ChangePackageNamePatch::class
+ ]
+)
object MicroGResourcePatch : ResourcePatch() {
override fun execute(context: ResourceContext) {
SettingsPatch.addPreference(
@@ -25,13 +31,16 @@ object MicroGResourcePatch : ResourcePatch() {
Preference.Intent("$MICROG_VENDOR.android.gms", "", "org.microg.gms.ui.SettingsActivity")
)
)
- SettingsPatch.renameIntentsTargetPackage(REVANCED_PACKAGE_NAME)
+
+ val packageName = ChangePackageNamePatch.setOrGetFallbackPackageName(REVANCED_PACKAGE_NAME)
+
+ SettingsPatch.renameIntentsTargetPackage(packageName)
// update manifest
MicroGResourceHelper.patchManifest(
context,
PACKAGE_NAME,
- REVANCED_PACKAGE_NAME,
+ packageName,
REVANCED_APP_NAME
)
|
feat
|
Allow changing package name
|
f7352feb6e9604162b52072d74310b9e3067bc69
|
2023-08-28 01:11:04
|
oSumAtrIX
|
feat: Restore previous release
| false
|
diff --git a/build.gradle.kts b/build.gradle.kts
index 8a3149d6c5..88bcaec7bd 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -4,17 +4,15 @@ plugins {
group = "app.revanced"
-val githubUsername: String = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
-val githubPassword: String = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
-
repositories {
mavenCentral()
mavenLocal()
+ google()
maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
credentials {
- username = githubUsername
- password = githubPassword
+ username = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
+ password = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
}
}
// Required for FlexVer-Java
@@ -27,15 +25,15 @@ repositories {
}
dependencies {
- implementation("app.revanced:revanced-patcher:11.0.4")
- implementation("app.revanced:multidexlib2:2.5.3-a3836654")
- // Required for meta
+ implementation("app.revanced:revanced-patcher:14.0.0")
+ implementation("com.android.tools.smali:smali:3.0.3")
+ // Required because build fails without it.
+ // TODO: Find a way to remove this dependency.
+ implementation("com.google.guava:guava:32.1.2-jre")
+ // Used in JsonGenerator.
implementation("com.google.code.gson:gson:2.10.1")
- // Required for FlexVer-Java
- implementation("com.unascribed:flexver-java:1.0.2")
-
// A dependency to the Android library unfortunately fails the build,
- // which is why this is required for the patch change-oauth-client-id
+ // which is why this is required for the patch change-oauth-client-id.
compileOnly(project("dummy"))
}
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 62f495dfed..ac72c34e8a 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/src/main/kotlin/app/revanced/extensions/Extensions.kt b/src/main/kotlin/app/revanced/extensions/Extensions.kt
index e90fbdcfe3..226f4b143d 100644
--- a/src/main/kotlin/app/revanced/extensions/Extensions.kt
+++ b/src/main/kotlin/app/revanced/extensions/Extensions.kt
@@ -1,25 +1,26 @@
package app.revanced.extensions
-import app.revanced.patcher.extensions.MethodFingerprintExtensions.name
+import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.extensions.MethodFingerprintExtensions.name
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import app.revanced.patcher.patch.PatchResultError
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.WideLiteralInstruction
-import org.jf.dexlib2.util.MethodUtil
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.WideLiteralInstruction
+import com.android.tools.smali.dexlib2.util.MethodUtil
import org.w3c.dom.Node
-// TODO: populate this to all patches
/**
- * Convert a [MethodFingerprint] to a [PatchResultError].
+ * The [PatchException] of failing to resolve a [MethodFingerprint].
*
- * @return A [PatchResultError] for the [MethodFingerprint].
+ * @return The [PatchException].
*/
-internal fun MethodFingerprint.toErrorResult() = PatchResultError("Failed to resolve $name")
+val MethodFingerprint.exception
+ get() = PatchException("Failed to resolve $name")
/**
* Find the [MutableMethod] from a given [Method] in a [MutableClass].
@@ -27,27 +28,27 @@ internal fun MethodFingerprint.toErrorResult() = PatchResultError("Failed to res
* @param method The [Method] to find.
* @return The [MutableMethod].
*/
-internal fun MutableClass.findMutableMethodOf(method: Method) = this.methods.first {
+fun MutableClass.findMutableMethodOf(method: Method) = this.methods.first {
MethodUtil.methodSignaturesMatch(it, method)
}
/**
- * apply a transform to all methods of the class
+ * apply a transform to all methods of the class.
*
- * @param transform the transformation function. original method goes in, transformed method goes out
+ * @param transform the transformation function. original method goes in, transformed method goes out.
*/
-internal fun MutableClass.transformMethods(transform: MutableMethod.() -> MutableMethod) {
+fun MutableClass.transformMethods(transform: MutableMethod.() -> MutableMethod) {
val transformedMethods = methods.map { it.transform() }
methods.clear()
methods.addAll(transformedMethods)
}
-internal fun Node.doRecursively(action: (Node) -> Unit) {
+fun Node.doRecursively(action: (Node) -> Unit) {
action(this)
for (i in 0 until this.childNodes.length) this.childNodes.item(i).doRecursively(action)
}
-internal fun MutableMethod.injectHideViewCall(
+fun MutableMethod.injectHideViewCall(
insertIndex: Int,
viewRegister: Int,
classDescriptor: String,
@@ -57,7 +58,13 @@ internal fun MutableMethod.injectHideViewCall(
"invoke-static { v$viewRegister }, $classDescriptor->$targetMethod(Landroid/view/View;)V"
)
-internal fun Method.findIndexForIdResource(resourceName: String): Int {
+/**
+ * Find the index of the first constant instruction with the id of the given resource name.
+ *
+ * @param resourceName the name of the resource to find the id for.
+ * @return the index of the first constant instruction with the id of the given resource name, or -1 if not found.
+ */
+fun Method.findIndexForIdResource(resourceName: String): Int {
fun getIdResourceId(resourceName: String) = ResourceMappingPatch.resourceMappings.single {
it.type == "id" && it.name == resourceName
}.id
@@ -66,6 +73,8 @@ internal fun Method.findIndexForIdResource(resourceName: String): Int {
}
/**
+ * Find the index of the first constant instruction with the given value.
+ *
* @return the first constant instruction with the value, or -1 if not found.
*/
fun Method.indexOfFirstConstantInstructionValue(constantValue: Long): Int {
@@ -77,8 +86,23 @@ fun Method.indexOfFirstConstantInstructionValue(constantValue: Long): Int {
}
/**
+ * Check if the method contains a constant with the given value.
+ *
* @return if the method contains a constant with the given value.
*/
fun Method.containsConstantInstructionValue(constantValue: Long): Boolean {
return indexOfFirstConstantInstructionValue(constantValue) >= 0
}
+
+/**
+ * Traverse the class hierarchy starting from the given root class.
+ *
+ * @param targetClass the class to start traversing the class hierarchy from.
+ * @param callback function that is called for every class in the hierarchy.
+ */
+fun BytecodeContext.traverseClassHierarchy(targetClass: MutableClass, callback: MutableClass.() -> Unit) {
+ callback(targetClass)
+ this.findClass(targetClass.superclass ?: return)?.mutableClass?.let {
+ traverseClassHierarchy(it, callback)
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/meta/JsonGenerator.kt b/src/main/kotlin/app/revanced/meta/JsonGenerator.kt
index cebf57d91e..3be7793f8a 100644
--- a/src/main/kotlin/app/revanced/meta/JsonGenerator.kt
+++ b/src/main/kotlin/app/revanced/meta/JsonGenerator.kt
@@ -6,7 +6,6 @@ import app.revanced.patcher.extensions.PatchExtensions.description
import app.revanced.patcher.extensions.PatchExtensions.include
import app.revanced.patcher.extensions.PatchExtensions.options
import app.revanced.patcher.extensions.PatchExtensions.patchName
-import app.revanced.patcher.extensions.PatchExtensions.version
import app.revanced.patcher.patch.PatchOption
import com.google.gson.GsonBuilder
import java.io.File
@@ -17,7 +16,6 @@ internal class JsonGenerator : PatchesFileGenerator {
JsonPatch(
it.patchName,
it.description ?: "This patch has no description.",
- it.version ?: "0.0.0",
!it.include,
it.options?.map { option ->
JsonPatch.Option(
@@ -48,7 +46,6 @@ internal class JsonGenerator : PatchesFileGenerator {
private class JsonPatch(
val name: String,
val description: String,
- val version: String,
val excluded: Boolean,
val options: Array<Option>,
val dependencies: Array<String>,
diff --git a/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt b/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
index dfb57d9229..23c1d100f2 100644
--- a/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
+++ b/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt
@@ -1,25 +1,22 @@
package app.revanced.meta
-import app.revanced.patcher.data.Context
-import app.revanced.patcher.patch.Patch
-import app.revanced.patcher.util.patch.PatchBundle
+import app.revanced.patcher.PatchBundleLoader
+import app.revanced.patcher.patch.PatchClass
import java.io.File
-internal typealias PatchBundlePatches = List<Class<out Patch<Context>>>
+internal typealias PatchBundlePatches = List<PatchClass>
internal interface PatchesFileGenerator {
fun generate(bundle: PatchBundlePatches)
private companion object {
@JvmStatic
- fun main(args: Array<String>) = PatchBundle.Jar(
- File("build/libs/").listFiles()!!.first {
- it.name.startsWith("revanced-patches-") && it.name.endsWith(".jar")
- }.absolutePath
- ).loadPatches().also {
- if (it.isEmpty()) throw IllegalStateException("No patches found")
+ fun main(args: Array<String>) = PatchBundleLoader.Jar(
+ File("build/libs/").listFiles { it -> it.name.endsWith(".jar") }!!.first()
+ ).also { loader ->
+ if (loader.isEmpty()) throw IllegalStateException("No patches found")
}.let { bundle ->
- arrayOf(JsonGenerator()).forEach { it.generate(bundle) }
+ arrayOf(JsonGenerator()).forEach { generator -> generator.generate(bundle) }
}
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/all/activity/exportall/patch/ExportAllActivitiesPatch.kt b/src/main/kotlin/app/revanced/patches/all/activity/exportall/patch/ExportAllActivitiesPatch.kt
index b80fb24289..4d67cdeb2f 100644
--- a/src/main/kotlin/app/revanced/patches/all/activity/exportall/patch/ExportAllActivitiesPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/activity/exportall/patch/ExportAllActivitiesPatch.kt
@@ -1,10 +1,8 @@
-package app.revanced.patches.all.activity.exportAll.patch
+package app.revanced.patches.all.activity.exportall.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
@@ -12,7 +10,7 @@ import app.revanced.patcher.patch.annotations.Patch
@Name("Export all activities")
@Description("Makes all app activities exportable.")
class ExportAllActivitiesPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor["AndroidManifest.xml"].use { editor ->
val document = editor.file
val activities = document.getElementsByTagName("activity")
@@ -33,8 +31,6 @@ class ExportAllActivitiesPatch : ResourcePatch {
}
}
}
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/all/connectivity/wifi/spoof/patch/SpoofWifiPatch.kt b/src/main/kotlin/app/revanced/patches/all/connectivity/wifi/spoof/patch/SpoofWifiPatch.kt
index 7bf2652867..f6637c4393 100644
--- a/src/main/kotlin/app/revanced/patches/all/connectivity/wifi/spoof/patch/SpoofWifiPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/connectivity/wifi/spoof/patch/SpoofWifiPatch.kt
@@ -6,16 +6,16 @@ import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.util.patch.*
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
import java.util.*
@Patch(false)
@Name("Spoof wifi connection")
@Description("Spoofs an existing Wi-Fi connection.")
@RequiresIntegrations
-internal class SpoofWifiPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
+class SpoofWifiPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
private companion object {
const val INTEGRATIONS_CLASS_DESCRIPTOR_PREFIX = "Lapp/revanced/all/connectivity/wifi/spoof/SpoofWifiPatch"
diff --git a/src/main/kotlin/app/revanced/patches/all/interaction/gestures/patch/PredictiveBackGesturePatch.kt b/src/main/kotlin/app/revanced/patches/all/interaction/gestures/patch/PredictiveBackGesturePatch.kt
index 412487660c..22763c67f0 100644
--- a/src/main/kotlin/app/revanced/patches/all/interaction/gestures/patch/PredictiveBackGesturePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/interaction/gestures/patch/PredictiveBackGesturePatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.all.interaction.gestures.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
@@ -12,7 +10,7 @@ import app.revanced.patcher.patch.annotations.Patch
@Name("Predictive back gesture")
@Description("Enables the predictive back gesture introduced on Android 13.")
class PredictiveBackGesturePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor["AndroidManifest.xml"].use { editor ->
val document = editor.file
@@ -25,8 +23,6 @@ class PredictiveBackGesturePatch : ResourcePatch {
}
}
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt
index e575ad086b..441dc24a51 100644
--- a/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt
@@ -9,9 +9,9 @@ import org.w3c.dom.Element
@Patch(false)
@Name("Enable android debugging")
-@Description("Enables Android debugging capabilities.")
+@Description("Enables Android debugging capabilities. This can slow down the app.")
class EnableAndroidDebuggingPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor["AndroidManifest.xml"].use { dom ->
val applicationNode = dom
.file
@@ -21,8 +21,6 @@ class EnableAndroidDebuggingPatch : ResourcePatch {
// set application as debuggable
applicationNode.setAttribute("android:debuggable", "true")
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/all/misc/network/patch/OverrideCertificatePinningPatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/network/patch/OverrideCertificatePinningPatch.kt
new file mode 100644
index 0000000000..5d571dbef5
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/all/misc/network/patch/OverrideCertificatePinningPatch.kt
@@ -0,0 +1,75 @@
+package app.revanced.patches.all.misc.network.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.ResourceContext
+import app.revanced.patcher.patch.ResourcePatch
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.all.misc.debugging.patch.EnableAndroidDebuggingPatch
+import org.w3c.dom.Element
+import java.io.File
+
+@Patch(false)
+@Name("Override certificate pinning")
+@Description("Overrides certificate pinning, allowing to inspect traffic via a proxy.")
+@DependsOn([EnableAndroidDebuggingPatch::class])
+class OverrideCertificatePinningPatch : ResourcePatch {
+ override fun execute(context: ResourceContext) {
+ val resXmlDirectory = context["res/xml"]
+
+ // Add android:networkSecurityConfig="@xml/network_security_config" and the "networkSecurityConfig" attribute if it does not exist.
+ context.xmlEditor["AndroidManifest.xml"].use { editor ->
+ val document = editor.file
+ val applicationNode = document.getElementsByTagName("application").item(0) as Element
+
+ if (!applicationNode.hasAttribute("networkSecurityConfig")) {
+ document.createAttribute("android:networkSecurityConfig")
+ .apply { value = "@xml/network_security_config" }.let(applicationNode.attributes::setNamedItem)
+ }
+ }
+
+ // In case the file does not exist create the "network_security_config.xml" file.
+ File(resXmlDirectory, "network_security_config.xml").apply {
+ if (!exists()) {
+ createNewFile()
+ writeText(
+ """
+ <?xml version="1.0" encoding="utf-8"?>
+ <network-security-config>
+ <base-config cleartextTrafficPermitted="true">
+ <trust-anchors>
+ <certificates src="system" />
+ <certificates
+ src="user"
+ overridePins="true" />
+ </trust-anchors>
+ </base-config>
+ <debug-overrides>
+ <trust-anchors>
+ <certificates src="system" />
+ <certificates
+ src="user"
+ overridePins="true" />
+ </trust-anchors>
+ </debug-overrides>
+ </network-security-config>
+ """
+ )
+ } else {
+ // If the file already exists.
+ readText().let { text ->
+ if (!text.contains("<certificates src=\"user\" />")) {
+ writeText(
+ text.replace(
+ "<trust-anchors>",
+ "<trust-anchors>\n<certificates src=\"user\" overridePins=\"true\" />\n<certificates src=\"system\" />"
+ )
+ )
+ }
+ }
+
+ }
+ }
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt
index 0709e75c44..8498ee694f 100644
--- a/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt
@@ -9,30 +9,32 @@ import org.w3c.dom.Element
@Patch(false)
@Name("Change package name")
-@Description("Changes the package name.")
+@Description("Changes the package name. Appends \".revanced\" to the package name by default.")
class ChangePackageNamePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
- packageName?.let { packageName ->
- val packageNameRegex = Regex("^[a-z]\\w*(\\.[a-z]\\w*)+\$")
- if (!packageName.matches(packageNameRegex))
- return PatchResultError("Invalid package name")
+ override fun execute(context: ResourceContext) {
+ val packageNameToUse = packageName ?: getDefaultPackageName(context)
- var originalPackageName: String
- context.xmlEditor["AndroidManifest.xml"].use { editor ->
- val manifest = editor.file.getElementsByTagName("manifest").item(0) as Element
- originalPackageName = manifest.getAttribute("package")
- }
+ val packageNameRegex = Regex("^[a-z]\\w*(\\.[a-z]\\w*)+\$")
+ if (!packageNameToUse.matches(packageNameRegex))
+ throw PatchException("Invalid package name")
- if (!originalPackageName.matches(packageNameRegex))
- return PatchResultError("Failed to get the original package name")
+ val originalPackageName = getOriginalPackageName(context)
- context["AndroidManifest.xml"].apply {
- readText().replace(originalPackageName, packageName).let(::writeText)
- }
+ context["AndroidManifest.xml"].apply {
+ readText().replace(originalPackageName, packageNameToUse).let(::writeText)
+ }
+ }
- } ?: return PatchResultError("No package name provided")
+ private fun getDefaultPackageName(context: ResourceContext): String {
+ val originalPackageName = getOriginalPackageName(context)
+ return "$originalPackageName.revanced"
+ }
- return PatchResultSuccess()
+ private fun getOriginalPackageName(context: ResourceContext): String {
+ context.xmlEditor["AndroidManifest.xml"].use { editor ->
+ val manifest = editor.file.getElementsByTagName("manifest").item(0) as Element
+ return manifest.getAttribute("package")
+ }
}
companion object : OptionsContainer() {
@@ -41,7 +43,7 @@ class ChangePackageNamePatch : ResourcePatch {
key = "packageName",
default = null,
title = "Package name",
- description = "The name of the package to rename of the app.",
+ description = "The name of the package to rename the app to.",
)
)
}
diff --git a/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/bytecode/patch/RemoveCaptureRestrictionPatch.kt b/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/bytecode/patch/RemoveCaptureRestrictionPatch.kt
index 499f262bcf..7e372798b3 100644
--- a/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/bytecode/patch/RemoveCaptureRestrictionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/bytecode/patch/RemoveCaptureRestrictionPatch.kt
@@ -7,17 +7,20 @@ import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.all.screencapture.removerestriction.resource.patch.RemoveCaptureRestrictionResourcePatch
-import app.revanced.util.patch.*
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.Instruction
+import app.revanced.util.patch.AbstractTransformInstructionsPatch
+import app.revanced.util.patch.IMethodCall
+import app.revanced.util.patch.Instruction35cInfo
+import app.revanced.util.patch.filterMapInstruction35c
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
@Patch(false)
@Name("Remove screen capture restriction")
@Description("Removes the restriction of capturing audio from apps that normally wouldn't allow it.")
@DependsOn([RemoveCaptureRestrictionResourcePatch::class])
@RequiresIntegrations
-internal class RemoveCaptureRestrictionPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
+class RemoveCaptureRestrictionPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
// Information about method calls we want to replace
enum class MethodCall(
override val definedClassName: String,
diff --git a/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/resource/patch/RemoveCaptureRestrictionResourcePatch.kt b/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/resource/patch/RemoveCaptureRestrictionResourcePatch.kt
index 4efd191e26..880b32c375 100644
--- a/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/resource/patch/RemoveCaptureRestrictionResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/screencapture/removerestriction/resource/patch/RemoveCaptureRestrictionResourcePatch.kt
@@ -2,14 +2,12 @@ package app.revanced.patches.all.screencapture.removerestriction.resource.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import org.w3c.dom.Element
@Description("Sets allowAudioPlaybackCapture in manifest to true.")
internal class RemoveCaptureRestrictionResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
// create an xml editor instance
context.xmlEditor["AndroidManifest.xml"].use { dom ->
// get the application node
@@ -21,7 +19,5 @@ internal class RemoveCaptureRestrictionResourcePatch : ResourcePatch {
// set allowAudioPlaybackCapture attribute to true
applicationNode.setAttribute("android:allowAudioPlaybackCapture", "true")
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/all/screenshot/removerestriction/patch/RemoveScreenshotRestrictionPatch.kt b/src/main/kotlin/app/revanced/patches/all/screenshot/removerestriction/patch/RemoveScreenshotRestrictionPatch.kt
index 9f096e799b..05c49282b0 100644
--- a/src/main/kotlin/app/revanced/patches/all/screenshot/removerestriction/patch/RemoveScreenshotRestrictionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/screenshot/removerestriction/patch/RemoveScreenshotRestrictionPatch.kt
@@ -5,17 +5,19 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
-import app.revanced.util.patch.*
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.Instruction
-import java.util.*
+import app.revanced.util.patch.AbstractTransformInstructionsPatch
+import app.revanced.util.patch.IMethodCall
+import app.revanced.util.patch.Instruction35cInfo
+import app.revanced.util.patch.filterMapInstruction35c
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
@Patch(false)
@Name("Remove screenshot restriction")
@Description("Removes the restriction of taking screenshots in apps that normally wouldn't allow it.")
@RequiresIntegrations
-internal class RemoveScreenshotRestrictionPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
+class RemoveScreenshotRestrictionPatch : AbstractTransformInstructionsPatch<Instruction35cInfo>() {
private companion object {
const val INTEGRATIONS_CLASS_DESCRIPTOR_PREFIX =
diff --git a/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/fingerprints/ProUnlockFingerprint.kt b/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/fingerprints/ProUnlockFingerprint.kt
index 2835fc0b2f..252e030810 100644
--- a/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/fingerprints/ProUnlockFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/fingerprints/ProUnlockFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.backdrops.misc.pro.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object ProUnlockFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/patch/ProUnlockPatch.kt b/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/patch/ProUnlockPatch.kt
index ed9af58723..2c5d8ed5ce 100644
--- a/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/patch/ProUnlockPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/backdrops/misc/pro/patch/ProUnlockPatch.kt
@@ -1,18 +1,16 @@
package app.revanced.patches.backdrops.misc.pro.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.backdrops.misc.pro.annotations.ProUnlockCompatibility
import app.revanced.patches.backdrops.misc.pro.fingerprints.ProUnlockFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("Pro unlock")
@@ -21,7 +19,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
class ProUnlockPatch : BytecodePatch(
listOf(ProUnlockFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ProUnlockFingerprint.result?.let { result ->
val registerIndex = result.scanResult.patternScanResult!!.endIndex - 1
@@ -35,8 +33,6 @@ class ProUnlockPatch : BytecodePatch(
)
}
- } ?: return ProUnlockFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw ProUnlockFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/candylinkvpn/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/candylinkvpn/patch/UnlockProPatch.kt
index c15c69348d..c1eb4b7f6f 100644
--- a/src/main/kotlin/app/revanced/patches/candylinkvpn/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/candylinkvpn/patch/UnlockProPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.candylinkvpn.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.candylinkvpn.annotations.UnlockProCompatibility
import app.revanced.patches.candylinkvpn.fingerprints.IsPremiumPurchasedFingerprint
@@ -19,15 +17,13 @@ import app.revanced.patches.candylinkvpn.fingerprints.IsPremiumPurchasedFingerpr
class UnlockProPatch : BytecodePatch(
listOf(IsPremiumPurchasedFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsPremiumPurchasedFingerprint.result?.mutableMethod?.addInstructions(
0,
"""
const/4 v0, 0x1
return v0
"""
- ) ?: return IsPremiumPurchasedFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw IsPremiumPurchasedFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/IsUserSuperMethodFingerprint.kt b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/IsUserSuperMethodFingerprint.kt
new file mode 100644
index 0000000000..8ee88fdcee
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/IsUserSuperMethodFingerprint.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.duolingo.unlocksuper.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object IsUserSuperMethodFingerprint : MethodFingerprint(
+ returnType = "Ljava/lang/Object",
+ parameters = listOf("Ljava/lang/Object"),
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ strings = listOf("user"),
+ opcodes = listOf(Opcode.IGET_BOOLEAN),
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/UserSerializationMethodFingerprint.kt b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/UserSerializationMethodFingerprint.kt
new file mode 100644
index 0000000000..2d8bcdda14
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/fingerprints/UserSerializationMethodFingerprint.kt
@@ -0,0 +1,20 @@
+package app.revanced.patches.duolingo.unlocksuper.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object UserSerializationMethodFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
+ strings = listOf(
+ "betaStatus",
+ "coachOutfit",
+ "globalAmbassadorStatus",
+ ),
+ opcodes = listOf(
+ Opcode.MOVE_FROM16,
+ Opcode.IPUT_BOOLEAN,
+ ),
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/patch/UnlockDuolingoSuperPatch.kt b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/patch/UnlockDuolingoSuperPatch.kt
new file mode 100644
index 0000000000..c02228f2b1
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/duolingo/unlocksuper/patch/UnlockDuolingoSuperPatch.kt
@@ -0,0 +1,64 @@
+package app.revanced.patches.duolingo.unlocksuper.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Package
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.getInstructions
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.PatchException
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
+import app.revanced.patches.duolingo.unlocksuper.fingerprints.IsUserSuperMethodFingerprint
+import app.revanced.patches.duolingo.unlocksuper.fingerprints.UserSerializationMethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction22c
+import com.android.tools.smali.dexlib2.iface.reference.Reference
+
+@Patch
+@Name("Unlock Duolingo Super")
+@Description("Unlocks Duolingo Super features.")
+@Compatibility([Package("com.duolingo")])
+class UnlockDuolingoSuperPatch : BytecodePatch(
+ listOf(UserSerializationMethodFingerprint, IsUserSuperMethodFingerprint)
+) {
+
+ /* First find the reference to the isUserSuper field, then patch the instruction that assigns it to false.
+ * This strategy is used because the method that sets the isUserSuper field is difficult to fingerprint reliably.
+ */
+ override fun execute(context: BytecodeContext) {
+ // Find the reference to the isUserSuper field.
+ val isUserSuperReference = IsUserSuperMethodFingerprint
+ .result
+ ?.mutableMethod
+ ?.getInstructions()
+ ?.filterIsInstance<BuilderInstruction22c>()
+ ?.firstOrNull { it.opcode == Opcode.IGET_BOOLEAN }
+ ?.reference
+ ?: throw IsUserSuperMethodFingerprint.exception
+
+ // Patch the instruction that assigns isUserSuper to true.
+ UserSerializationMethodFingerprint
+ .result
+ ?.mutableMethod
+ ?.apply {
+ replaceInstructions(
+ indexOfReference(isUserSuperReference) - 1,
+ "const/4 v2, 0x1"
+ )
+ }
+ ?: throw UserSerializationMethodFingerprint.exception
+ }
+
+ private companion object {
+ private fun MutableMethod.indexOfReference(reference: Reference) = getInstructions()
+ .filterIsInstance<BuilderInstruction22c>()
+ .filter { it.opcode == Opcode.IPUT_BOOLEAN }.indexOfFirst { it.reference == reference }.let {
+ if (it == -1) throw PatchException("Could not find index of instruction with supplied reference.")
+ else it
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/BootStateFingerprint.kt b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/BootStateFingerprint.kt
index 082ca3121d..b1956358a3 100644
--- a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/BootStateFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/BootStateFingerprint.kt
@@ -1,8 +1,8 @@
package app.revanced.patches.finanzonline.detection.bootloader.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
// Located @ at.gv.bmf.bmf2go.taxequalization.tools.utils.AttestationHelper#isBootStateOk (3.0.1)
object BootStateFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/CreateKeyFingerprint.kt b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/CreateKeyFingerprint.kt
index dcfcb0b8e5..62df653279 100644
--- a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/CreateKeyFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/fingerprints/CreateKeyFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.finanzonline.detection.bootloader.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
// Located @ at.gv.bmf.bmf2go.taxequalization.tools.utils.AttestationHelper#createKey (3.0.1)
object CreateKeyFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/patch/BootloaderDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/patch/BootloaderDetectionPatch.kt
index 61ed8c5758..6864d96355 100644
--- a/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/patch/BootloaderDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/finanzonline/detection/bootloader/patch/BootloaderDetectionPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.finanzonline.detection.bootloader.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.finanzonline.detection.bootloader.fingerprints.BootStateFingerprint
import app.revanced.patches.finanzonline.detection.bootloader.fingerprints.CreateKeyFingerprint
@@ -21,7 +19,7 @@ import app.revanced.patches.finanzonline.detection.shared.annotations.DetectionC
class BootloaderDetectionPatch : BytecodePatch(
listOf(CreateKeyFingerprint, BootStateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
arrayOf(CreateKeyFingerprint, BootStateFingerprint).forEach { fingerprint ->
fingerprint.result?.mutableMethod?.addInstructions(
0,
@@ -29,9 +27,7 @@ class BootloaderDetectionPatch : BytecodePatch(
const/4 v0, 0x1
return v0
"""
- ) ?: return fingerprint.toErrorResult()
+ ) ?: throw fingerprint.exception
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/fingerprints/RootDetectionFingerprint.kt b/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/fingerprints/RootDetectionFingerprint.kt
index 8c0bb011d8..73af27868e 100644
--- a/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/fingerprints/RootDetectionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/fingerprints/RootDetectionFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.finanzonline.detection.root.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
// Located @ at.gv.bmf.bmf2go.taxequalization.tools.utils.RootDetection#isRooted (3.0.1)
object RootDetectionFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/patch/RootDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/patch/RootDetectionPatch.kt
index a7a0066146..35ebdfe323 100644
--- a/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/patch/RootDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/finanzonline/detection/root/patch/RootDetectionPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.finanzonline.detection.root.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.finanzonline.detection.root.fingerprints.RootDetectionFingerprint
import app.revanced.patches.finanzonline.detection.shared.annotations.DetectionCompatibility
@@ -19,15 +17,13 @@ import app.revanced.patches.finanzonline.detection.shared.annotations.DetectionC
class RootDetectionPatch : BytecodePatch(
listOf(RootDetectionFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
RootDetectionFingerprint.result?.mutableMethod?.addInstructions(
0,
"""
sget-object v0, Ljava/lang/Boolean;->FALSE:Ljava/lang/Boolean;
return-object v0
"""
- ) ?: return RootDetectionFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw RootDetectionFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt b/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt
index 6e408c06ca..f505efbac1 100644
--- a/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt
+++ b/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.googlerecorder.restrictions.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
@@ -10,11 +10,9 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.googlerecorder.restrictions.fingerprints.OnApplicationCreateFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("Remove device restrictions")
@@ -23,7 +21,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
class RemoveDeviceRestrictions : BytecodePatch(
listOf(OnApplicationCreateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
OnApplicationCreateFingerprint.result?.let {
val featureStringIndex = it.scanResult.stringsScanResult!!.matches.first().index
@@ -36,8 +34,6 @@ class RemoveDeviceRestrictions : BytecodePatch(
// Override "isPixelDevice()" to return true.
addInstruction(featureStringIndex, "const/4 v$featureAvailableRegister, 0x1")
}
- } ?: return OnApplicationCreateFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw OnApplicationCreateFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/hexeditor/ad/patch/HexEditorAdsPatch.kt b/src/main/kotlin/app/revanced/patches/hexeditor/ad/patch/HexEditorAdsPatch.kt
index e5ad20d55b..84d4dbf955 100644
--- a/src/main/kotlin/app/revanced/patches/hexeditor/ad/patch/HexEditorAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/hexeditor/ad/patch/HexEditorAdsPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.hexeditor.ad.annotations.HexEditorAdsCompatibility
import app.revanced.patches.hexeditor.ad.fingerprints.PrimaryAdsFingerprint
@@ -20,7 +18,7 @@ class HexEditorAdsPatch : BytecodePatch(
PrimaryAdsFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = PrimaryAdsFingerprint.result!!.mutableMethod
method.replaceInstructions(
@@ -30,7 +28,5 @@ class HexEditorAdsPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/iconpackstudio/misc/pro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/iconpackstudio/misc/pro/patch/UnlockProPatch.kt
index bb866bfff5..13d8c8490f 100644
--- a/src/main/kotlin/app/revanced/patches/iconpackstudio/misc/pro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/iconpackstudio/misc/pro/patch/UnlockProPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.iconpackstudio.misc.pro.annotations.UnlockProCompatibility
import app.revanced.patches.iconpackstudio.misc.pro.fingerprints.CheckProFingerprint
@@ -20,7 +18,7 @@ class UnlockProPatch : BytecodePatch(
CheckProFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = CheckProFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -29,7 +27,5 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/idaustria/detection/root/fingerprints/RootDetectionFingerprint.kt b/src/main/kotlin/app/revanced/patches/idaustria/detection/root/fingerprints/RootDetectionFingerprint.kt
index 185a9e5ad8..359d90db02 100644
--- a/src/main/kotlin/app/revanced/patches/idaustria/detection/root/fingerprints/RootDetectionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/idaustria/detection/root/fingerprints/RootDetectionFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.idaustria.detection.root.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object RootDetectionFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/idaustria/detection/root/patch/RootDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/idaustria/detection/root/patch/RootDetectionPatch.kt
index 04c486bbcc..f7edc70c25 100644
--- a/src/main/kotlin/app/revanced/patches/idaustria/detection/root/patch/RootDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/idaustria/detection/root/patch/RootDetectionPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.idaustria.detection.root.fingerprints.RootDetectionFingerprint
import app.revanced.patches.idaustria.detection.shared.annotations.DetectionCompatibility
@@ -18,8 +16,6 @@ import app.revanced.patches.idaustria.detection.shared.annotations.DetectionComp
class RootDetectionPatch : BytecodePatch(
listOf(RootDetectionFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) =
RootDetectionFingerprint.result!!.mutableMethod.addInstruction(0, "return-void")
- return PatchResultSuccess()
- }
}
diff --git a/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/fingerprints/SpoofSignatureFingerprint.kt b/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/fingerprints/SpoofSignatureFingerprint.kt
index c11b2e0b6f..461f818b9f 100644
--- a/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/fingerprints/SpoofSignatureFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/fingerprints/SpoofSignatureFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.idaustria.detection.signature.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object SpoofSignatureFingerprint : MethodFingerprint(
"L",
diff --git a/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/patch/SpoofSignaturePatch.kt b/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/patch/SpoofSignaturePatch.kt
index 6c1c229b7c..295855048f 100644
--- a/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/patch/SpoofSignaturePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/idaustria/detection/signature/patch/SpoofSignaturePatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.idaustria.detection.shared.annotations.DetectionCompatibility
import app.revanced.patches.idaustria.detection.signature.fingerprints.SpoofSignatureFingerprint
@@ -32,7 +30,7 @@ class SpoofSignaturePatch : BytecodePatch(
"bf42c121d620ddfb7914f7a95c713d9e1c1b7bdb4a03d618e40cf7e9e235c0b5687e03b7ab3,publicExponent=10001}"
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SpoofSignatureFingerprint.result!!.mutableMethod.addInstructions(
0,
"""
@@ -40,6 +38,5 @@ class SpoofSignaturePatch : BytecodePatch(
return-object v0
"""
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/inshorts/ad/patch/InshortsAdsPatch.kt b/src/main/kotlin/app/revanced/patches/inshorts/ad/patch/InshortsAdsPatch.kt
index a0b314e750..8b48bcd415 100644
--- a/src/main/kotlin/app/revanced/patches/inshorts/ad/patch/InshortsAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/inshorts/ad/patch/InshortsAdsPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.inshorts.ad.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.inshorts.ad.annotations.HideAdsCompatibility
import app.revanced.patches.inshorts.ad.fingerprints.InshortsAdsFingerprint
@@ -19,7 +17,7 @@ import app.revanced.patches.inshorts.ad.fingerprints.InshortsAdsFingerprint
class HideAdsPatch : BytecodePatch(
listOf(InshortsAdsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
InshortsAdsFingerprint.result?.let { result ->
result.apply {
mutableMethod.addInstruction(
@@ -29,8 +27,6 @@ class HideAdsPatch : BytecodePatch(
"""
)
}
- } ?: return InshortsAdsFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw InshortsAdsFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ShowAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ShowAdFingerprint.kt
index 55d2dafe50..5e936ce16b 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ShowAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ShowAdFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.instagram.patches.ads.timeline.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ShowAdFingerprint : MethodFingerprint(
"Z",
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/GenericMediaAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/GenericMediaAdFingerprint.kt
index f4988a1358..ebfc11bde5 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/GenericMediaAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/GenericMediaAdFingerprint.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object GenericMediaAdFingerprint : MediaAdFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/MediaAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/MediaAdFingerprint.kt
index b31290f703..ef0d12a118 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/MediaAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/MediaAdFingerprint.kt
@@ -2,10 +2,10 @@ package app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
abstract class MediaAdFingerprint(
returnType: String? = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/PaidPartnershipAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/PaidPartnershipAdFingerprint.kt
index 0f10168c66..db31e5e450 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/PaidPartnershipAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/PaidPartnershipAdFingerprint.kt
@@ -1,8 +1,8 @@
package app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
object PaidPartnershipAdFingerprint : MediaAdFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/ShoppingAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/ShoppingAdFingerprint.kt
index 28bd08a2ec..643ffad9a7 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/ShoppingAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/fingerprints/ads/ShoppingAdFingerprint.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object ShoppingAdFingerprint : MediaAdFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/patch/HideTimelineAdsPatch.kt b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/patch/HideTimelineAdsPatch.kt
index 3090f5be09..a8b2cc699a 100644
--- a/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/patch/HideTimelineAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/instagram/patches/ads/timeline/patch/HideTimelineAdsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.instagram.patches.ads.timeline.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.instagram.patches.ads.timeline.fingerprints.MediaFingerprint
@@ -18,8 +16,8 @@ import app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads.Gene
import app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads.MediaAdFingerprint
import app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads.PaidPartnershipAdFingerprint
import app.revanced.patches.instagram.patches.ads.timeline.fingerprints.ads.ShoppingAdFingerprint
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("Hide timeline ads")
@@ -32,19 +30,19 @@ class HideTimelineAdsPatch : BytecodePatch(
PaidPartnershipAdFingerprint // Unlike the other ads this one is resolved from all classes.
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// region Resolve required methods to check for ads.
- ShowAdFingerprint.result ?: return ShowAdFingerprint.toErrorResult()
+ ShowAdFingerprint.result ?: throw ShowAdFingerprint.exception
- PaidPartnershipAdFingerprint.result ?: return PaidPartnershipAdFingerprint.toErrorResult()
+ PaidPartnershipAdFingerprint.result ?: throw PaidPartnershipAdFingerprint.exception
MediaFingerprint.result?.let {
GenericMediaAdFingerprint.resolve(context, it.classDef)
ShoppingAdFingerprint.resolve(context, it.classDef)
return@let
- } ?: return MediaFingerprint.toErrorResult()
+ } ?: throw MediaFingerprint.exception
// endregion
@@ -99,7 +97,5 @@ class HideTimelineAdsPatch : BytecodePatch(
// endregion
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt b/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt
index 061606b1c4..063b0ae70a 100644
--- a/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/irplus/ad/fingerprints/IrplusAdsFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.irplus.ad.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IrplusAdsFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt b/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt
index c4e93e7c12..a138d5fd91 100644
--- a/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/irplus/ad/patch/IrplusAdsPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.irplus.ad.annotations.IrplusAdsCompatibility
import app.revanced.patches.irplus.ad.fingerprints.IrplusAdsFingerprint
@@ -19,13 +17,11 @@ import app.revanced.patches.irplus.ad.fingerprints.IrplusAdsFingerprint
class IrplusAdsPatch : BytecodePatch(
listOf(IrplusAdsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = IrplusAdsFingerprint.result!!.mutableMethod
// By overwriting the second parameter of the method,
// the view which holds the advertisement is removed.
method.addInstruction(0, "const/4 p2, 0x0")
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/login/annotations/DisableMandatoryLoginCompatibility.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/annotations/DisableMandatoryLoginCompatibility.kt
new file mode 100644
index 0000000000..edc9e68962
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/annotations/DisableMandatoryLoginCompatibility.kt
@@ -0,0 +1,8 @@
+package app.revanced.patches.lightroom.misc.login.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility([Package("com.adobe.lrmobile",)])
+@Target(AnnotationTarget.CLASS)
+internal annotation class DisableMandatoryLoginCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/login/fingerprint/IsLoggedInFingerprint.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/fingerprint/IsLoggedInFingerprint.kt
new file mode 100644
index 0000000000..7e56d8d02f
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/fingerprint/IsLoggedInFingerprint.kt
@@ -0,0 +1,19 @@
+package app.revanced.patches.lightroom.misc.login.fingerprint
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object IsLoggedInFingerprint : MethodFingerprint(
+ returnType = "Z",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC or AccessFlags.FINAL,
+ opcodes = listOf(
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.SGET_OBJECT,
+ Opcode.IF_NE,
+ Opcode.CONST_4,
+ Opcode.GOTO
+ )
+)
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/login/patch/DisableMandatoryLoginPatch.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/patch/DisableMandatoryLoginPatch.kt
new file mode 100644
index 0000000000..b1317bb071
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/login/patch/DisableMandatoryLoginPatch.kt
@@ -0,0 +1,23 @@
+package app.revanced.patches.lightroom.misc.login.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.lightroom.misc.login.annotations.DisableMandatoryLoginCompatibility
+import app.revanced.patches.lightroom.misc.login.fingerprint.IsLoggedInFingerprint
+
+@Patch
+@Name("Disable mandatory login")
+@DisableMandatoryLoginCompatibility
+class DisableMandatoryLoginPatch : BytecodePatch(listOf(IsLoggedInFingerprint)) {
+ override fun execute(context: BytecodeContext) {
+ IsLoggedInFingerprint.result?.mutableMethod?.apply {
+ val index = implementation!!.instructions.lastIndex - 1
+ // Set isLoggedIn = true.
+ replaceInstruction(index, "const/4 v0, 0x1")
+ } ?: throw IsLoggedInFingerprint.exception
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/annotations/UnlockPremiumCompatibility.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/annotations/UnlockPremiumCompatibility.kt
new file mode 100644
index 0000000000..1c03bff621
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/annotations/UnlockPremiumCompatibility.kt
@@ -0,0 +1,8 @@
+package app.revanced.patches.lightroom.misc.premium.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility([Package("com.adobe.lrmobile")])
+@Target(AnnotationTarget.CLASS)
+internal annotation class UnlockPremiumCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/fingerprint/HasPurchasedFingerprint.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/fingerprint/HasPurchasedFingerprint.kt
new file mode 100644
index 0000000000..31bef22848
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/fingerprint/HasPurchasedFingerprint.kt
@@ -0,0 +1,18 @@
+package app.revanced.patches.lightroom.misc.premium.fingerprint
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object HasPurchasedFingerprint : MethodFingerprint(
+ returnType = "Z",
+ accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
+ strings = listOf("isPurchaseDoneRecently = true, access platform profile present? = "),
+ opcodes = listOf(
+ Opcode.SGET_OBJECT,
+ Opcode.CONST_4,
+ Opcode.CONST_4,
+ Opcode.CONST_4,
+ )
+)
diff --git a/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/patch/UnlockPremiumPatch.kt b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/patch/UnlockPremiumPatch.kt
new file mode 100644
index 0000000000..f71cc2a95b
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/lightroom/misc/premium/patch/UnlockPremiumPatch.kt
@@ -0,0 +1,23 @@
+package app.revanced.patches.lightroom.misc.premium.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.lightroom.misc.premium.annotations.UnlockPremiumCompatibility
+import app.revanced.patches.lightroom.misc.premium.fingerprint.HasPurchasedFingerprint
+
+@Patch
+@Name("Unlock premium")
+@Description("Unlocks premium features.")
+@UnlockPremiumCompatibility
+class UnlockPremiumPatch : BytecodePatch(listOf(HasPurchasedFingerprint)) {
+ override fun execute(context: BytecodeContext) {
+ // Set hasPremium = true.
+ HasPurchasedFingerprint.result?.mutableMethod?.replaceInstruction(2, "const/4 v2, 0x1")
+ ?: throw HasPurchasedFingerprint.exception
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/fingerprint/LicenseValidationFingerprint.kt b/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/fingerprint/LicenseValidationFingerprint.kt
index 9de66ac2a6..d6454e7054 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/fingerprint/LicenseValidationFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/fingerprint/LicenseValidationFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.memegenerator.detection.license.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object LicenseValidationFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/patch/LicenseValidationPatch.kt b/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/patch/LicenseValidationPatch.kt
index 34b11e4862..337d3e171e 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/patch/LicenseValidationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/detection/license/patch/LicenseValidationPatch.kt
@@ -1,19 +1,17 @@
package app.revanced.patches.memegenerator.detection.license.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.memegenerator.detection.license.fingerprint.LicenseValidationFingerprint
@Description("Disables Firebase license validation.")
class LicenseValidationPatch : BytecodePatch(
listOf(LicenseValidationFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
LicenseValidationFingerprint.result?.apply {
mutableMethod.replaceInstructions(
0,
@@ -22,8 +20,6 @@ class LicenseValidationPatch : BytecodePatch(
return p0
"""
)
- } ?: throw LicenseValidationFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw LicenseValidationFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/fingerprint/VerifySignatureFingerprint.kt b/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/fingerprint/VerifySignatureFingerprint.kt
index bc8cdc9fb1..10ea37f9bb 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/fingerprint/VerifySignatureFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/fingerprint/VerifySignatureFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.memegenerator.detection.signature.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2)
object VerifySignatureFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/patch/SignatureVerificationPatch.kt b/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/patch/SignatureVerificationPatch.kt
index 3105311b6a..47b056daf5 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/patch/SignatureVerificationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/detection/signature/patch/SignatureVerificationPatch.kt
@@ -1,19 +1,17 @@
package app.revanced.patches.memegenerator.detection.signature.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.memegenerator.detection.signature.fingerprint.VerifySignatureFingerprint
@Description("Disables detection of incorrect signature.")
class SignatureVerificationPatch : BytecodePatch(
listOf(VerifySignatureFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
VerifySignatureFingerprint.result?.apply {
mutableMethod.replaceInstructions(
0,
@@ -22,8 +20,6 @@ class SignatureVerificationPatch : BytecodePatch(
return p0
"""
)
- } ?: throw VerifySignatureFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw VerifySignatureFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/fingerprint/IsFreeVersionFingerprint.kt b/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/fingerprint/IsFreeVersionFingerprint.kt
index 19f08da0e2..d601f5b3c6 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/fingerprint/IsFreeVersionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/fingerprint/IsFreeVersionFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.memegenerator.misc.pro.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object IsFreeVersionFingerprint : MethodFingerprint(
returnType = "Ljava/lang/Boolean;",
diff --git a/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/patch/UnlockProVersionPatch.kt b/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/patch/UnlockProVersionPatch.kt
index 74ec5da7a1..601e78b240 100644
--- a/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/patch/UnlockProVersionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/memegenerator/misc/pro/patch/UnlockProVersionPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.memegenerator.misc.pro.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.memegenerator.detection.license.patch.LicenseValidationPatch
@@ -28,7 +26,7 @@ class UnlockProVersionPatch : BytecodePatch(
IsFreeVersionFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsFreeVersionFingerprint.result?.apply {
mutableMethod.replaceInstructions(0,
"""
@@ -36,8 +34,6 @@ class UnlockProVersionPatch : BytecodePatch(
return-object p0
"""
)
- } ?: throw IsFreeVersionFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw IsFreeVersionFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/fingerprints/LoadInboxAdsFingerprint.kt b/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/fingerprints/LoadInboxAdsFingerprint.kt
index 3bb5c3a385..7352f1f9db 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/fingerprints/LoadInboxAdsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/fingerprints/LoadInboxAdsFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.messenger.ads.inbox.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object LoadInboxAdsFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/patch/HideInboxAdsPatch.kt b/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/patch/HideInboxAdsPatch.kt
index e2d272125c..6101f4e6f5 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/patch/HideInboxAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/ads/inbox/patch/HideInboxAdsPatch.kt
@@ -1,12 +1,10 @@
package app.revanced.patches.messenger.ads.inbox.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.messenger.ads.inbox.fingerprints.LoadInboxAdsFingerprint
@@ -17,12 +15,10 @@ import app.revanced.patches.messenger.ads.inbox.fingerprints.LoadInboxAdsFingerp
class HideInboxAdsPatch : BytecodePatch(
listOf(LoadInboxAdsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
LoadInboxAdsFingerprint.result?.mutableMethod?.apply {
this.replaceInstruction(0, "return-void")
- } ?: return LoadInboxAdsFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw LoadInboxAdsFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SendTypingIndicatorFingerprint.kt b/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SendTypingIndicatorFingerprint.kt
index cff25ae299..dbaccb39d6 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SendTypingIndicatorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SendTypingIndicatorFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.messenger.inputfield.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.dexbacked.value.DexBackedStringEncodedValue
+import com.android.tools.smali.dexlib2.dexbacked.value.DexBackedStringEncodedValue
object SendTypingIndicatorFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SwitchMessangeInputEmojiButtonFingerprint.kt b/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SwitchMessangeInputEmojiButtonFingerprint.kt
index ef01e1a5ab..67b6713b21 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SwitchMessangeInputEmojiButtonFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/inputfield/fingerprints/SwitchMessangeInputEmojiButtonFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.messenger.inputfield.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object SwitchMessangeInputEmojiButtonFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableSwitchingEmojiToStickerInMessageInputField.kt b/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableSwitchingEmojiToStickerInMessageInputField.kt
index 7aa77e12d6..dee26e289b 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableSwitchingEmojiToStickerInMessageInputField.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableSwitchingEmojiToStickerInMessageInputField.kt
@@ -1,23 +1,21 @@
package app.revanced.patches.messenger.inputfield.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.messenger.inputfield.fingerprints.SwitchMessangeInputEmojiButtonFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("Disable switching emoji to sticker in message input field")
@Description("Disables switching from emoji to sticker search mode in message input field")
@Compatibility([Package("com.facebook.orca")])
class DisableSwitchingEmojiToStickerInMessageInputField : BytecodePatch(listOf(SwitchMessangeInputEmojiButtonFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SwitchMessangeInputEmojiButtonFingerprint.result?.let {
val setStringIndex = it.scanResult.patternScanResult!!.startIndex + 2
@@ -29,8 +27,6 @@ class DisableSwitchingEmojiToStickerInMessageInputField : BytecodePatch(listOf(S
"const-string v$targetRegister, \"expression\""
)
}
- } ?: throw SwitchMessangeInputEmojiButtonFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw SwitchMessangeInputEmojiButtonFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableTypingIndicator.kt b/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableTypingIndicator.kt
index bb75cc1e65..cfd852dad5 100644
--- a/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableTypingIndicator.kt
+++ b/src/main/kotlin/app/revanced/patches/messenger/inputfield/patch/DisableTypingIndicator.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.messenger.inputfield.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
@@ -8,8 +8,6 @@ import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.messenger.inputfield.fingerprints.SendTypingIndicatorFingerprint
@@ -18,10 +16,8 @@ import app.revanced.patches.messenger.inputfield.fingerprints.SendTypingIndicato
@Description("Disables the indicator while typing a message")
@Compatibility([Package("com.facebook.orca")])
class DisableTypingIndicator : BytecodePatch(listOf(SendTypingIndicatorFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SendTypingIndicatorFingerprint.result?.mutableMethod?.replaceInstruction(0, "return-void")
- ?: throw SendTypingIndicatorFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ?: throw SendTypingIndicatorFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/moneymanager/fingerprints/UnlockProFingerprint.kt b/src/main/kotlin/app/revanced/patches/moneymanager/fingerprints/UnlockProFingerprint.kt
index c7b6824a18..b051458df9 100644
--- a/src/main/kotlin/app/revanced/patches/moneymanager/fingerprints/UnlockProFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/moneymanager/fingerprints/UnlockProFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.moneymanager.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object UnlockProFingerprint : MethodFingerprint(
"Z",
diff --git a/src/main/kotlin/app/revanced/patches/moneymanager/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/moneymanager/patch/UnlockProPatch.kt
index 9de5db3fcd..a6bbe51c52 100644
--- a/src/main/kotlin/app/revanced/patches/moneymanager/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/moneymanager/patch/UnlockProPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.moneymanager.annotations.UnlockProCompatibility
import app.revanced.patches.moneymanager.fingerprints.UnlockProFingerprint
@@ -18,7 +16,7 @@ import app.revanced.patches.moneymanager.fingerprints.UnlockProFingerprint
class UnlockProPatch : BytecodePatch(
listOf(UnlockProFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
UnlockProFingerprint.result!!.mutableMethod.addInstructions(
0,
"""
@@ -26,6 +24,5 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsConstructorFingerprint.kt
index dd60e2026e..6832b875c7 100644
--- a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsConstructorFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.ad.video.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
object ShowMusicVideoAdsConstructorFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsFingerprint.kt
index d6d8a138d9..c9230919f5 100644
--- a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.ad.video.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ShowMusicVideoAdsFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf("Z"), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/music/ad/video/patch/MusicVideoAdsPatch.kt b/src/main/kotlin/app/revanced/patches/music/ad/video/patch/MusicVideoAdsPatch.kt
index ea852b9dc6..eca9604cd5 100644
--- a/src/main/kotlin/app/revanced/patches/music/ad/video/patch/MusicVideoAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/ad/video/patch/MusicVideoAdsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.ad.video.fingerprints.ShowMusicVideoAdsConstructorFingerprint
import app.revanced.patches.music.ad.video.fingerprints.ShowMusicVideoAdsFingerprint
@@ -20,7 +18,7 @@ import app.revanced.patches.music.annotations.MusicCompatibility
class MusicVideoAdsPatch : BytecodePatch(
listOf(ShowMusicVideoAdsConstructorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ShowMusicVideoAdsFingerprint.resolve(context, ShowMusicVideoAdsConstructorFingerprint.result!!.classDef)
val result = ShowMusicVideoAdsFingerprint.result!!
@@ -31,7 +29,5 @@ class MusicVideoAdsPatch : BytecodePatch(
const/4 p1, 0x0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/AllCodecsReferenceFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/AllCodecsReferenceFingerprint.kt
index 92f047d54c..2d0084014c 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/AllCodecsReferenceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/AllCodecsReferenceFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.music.audio.codecs.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/CodecsLockFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/CodecsLockFingerprint.kt
index 8ab87777b3..2f99302763 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/CodecsLockFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/codecs/fingerprints/CodecsLockFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.music.audio.codecs.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/codecs/patch/CodecsUnlockPatch.kt b/src/main/kotlin/app/revanced/patches/music/audio/codecs/patch/CodecsUnlockPatch.kt
index 679bdd8b7a..3dd5d59e77 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/codecs/patch/CodecsUnlockPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/codecs/patch/CodecsUnlockPatch.kt
@@ -3,16 +3,13 @@ package app.revanced.patches.music.audio.codecs.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.toInstruction
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.audio.codecs.fingerprints.AllCodecsReferenceFingerprint
import app.revanced.patches.music.audio.codecs.fingerprints.CodecsLockFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
@Patch
@Name("Codecs unlock")
@@ -23,7 +20,7 @@ class CodecsUnlockPatch : BytecodePatch(
CodecsLockFingerprint, AllCodecsReferenceFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val codecsLockResult = CodecsLockFingerprint.result!!
val implementation = codecsLockResult.mutableMethod.implementation!!
@@ -48,7 +45,5 @@ class CodecsUnlockPatch : BytecodePatch(
instructionIndex,
"invoke-static {}, ${allCodecsMethod.definingClass}->${allCodecsMethod.name}()Ljava/util/Set;".toInstruction()
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AudioOnlyEnablerFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AllowExclusiveAudioPlaybackFingerprint.kt
similarity index 56%
rename from src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AudioOnlyEnablerFingerprint.kt
rename to src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AllowExclusiveAudioPlaybackFingerprint.kt
index 29c90b6665..bf604d04c6 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AudioOnlyEnablerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/AllowExclusiveAudioPlaybackFingerprint.kt
@@ -2,17 +2,14 @@ package app.revanced.patches.music.audio.exclusiveaudio.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
-object AudioOnlyEnablerFingerprint: MethodFingerprint(
- "Z", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
- Opcode.IGET_OBJECT,
- Opcode.INVOKE_INTERFACE,
- Opcode.MOVE_RESULT_OBJECT,
- Opcode.IGET_OBJECT,
- Opcode.INVOKE_INTERFACE,
- Opcode.MOVE_RESULT_OBJECT,
+object AllowExclusiveAudioPlaybackFingerprint: MethodFingerprint(
+ "Z",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ listOf(),
+ listOf(
Opcode.INVOKE_VIRTUAL,
Opcode.MOVE_RESULT_OBJECT,
Opcode.CHECK_CAST,
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/ExclusiveAudioFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/ExclusiveAudioFingerprint.kt
index 02eb60adce..cc5b47e7e5 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/ExclusiveAudioFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/fingerprints/ExclusiveAudioFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.music.audio.exclusiveaudio.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/patch/ExclusiveAudioPatch.kt b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/patch/ExclusiveAudioPatch.kt
index c0a1d85d3f..e5801e64d3 100644
--- a/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/patch/ExclusiveAudioPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/patch/ExclusiveAudioPatch.kt
@@ -1,29 +1,31 @@
package app.revanced.patches.music.audio.exclusiveaudio.patch
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
-import app.revanced.patches.music.audio.exclusiveaudio.fingerprints.AudioOnlyEnablerFingerprint
+import app.revanced.patches.music.audio.exclusiveaudio.fingerprints.AllowExclusiveAudioPlaybackFingerprint
@Patch
@Name("Exclusive audio playback")
-@Description("Enables the option to play music without video.")
+@Description("Enables the option to play audio without video.")
@MusicCompatibility
class ExclusiveAudioPatch : BytecodePatch(
- listOf(AudioOnlyEnablerFingerprint)
+ listOf(AllowExclusiveAudioPlaybackFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
- val method = AudioOnlyEnablerFingerprint.result!!.mutableMethod
- method.replaceInstruction(method.implementation!!.instructions.count() - 1, "const/4 v0, 0x1")
- method.addInstruction("return v0")
-
- return PatchResultSuccess()
+ override fun execute(context: BytecodeContext) {
+ AllowExclusiveAudioPlaybackFingerprint.result?.mutableMethod?.apply {
+ addInstructions(
+ 0,
+ """
+ const/4 v0, 0x1
+ return v0
+ """
+ )
+ } ?: throw AllowExclusiveAudioPlaybackFingerprint.exception
}
-}
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/fingerprints/RepeatTrackFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/fingerprints/RepeatTrackFingerprint.kt
new file mode 100644
index 0000000000..e1dfecdba8
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/fingerprints/RepeatTrackFingerprint.kt
@@ -0,0 +1,22 @@
+package app.revanced.patches.music.interaction.permanentrepeat.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object RepeatTrackFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ listOf("L", "L"),
+ listOf(
+ Opcode.CHECK_CAST,
+ Opcode.INVOKE_INTERFACE,
+ Opcode.IGET_OBJECT,
+ Opcode.IGET_OBJECT,
+ Opcode.SGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.IF_NEZ
+ )
+)
diff --git a/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/patch/PermanentRepeatPatch.kt b/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/patch/PermanentRepeatPatch.kt
new file mode 100644
index 0000000000..bba4649c71
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/patch/PermanentRepeatPatch.kt
@@ -0,0 +1,36 @@
+package app.revanced.patches.music.interaction.permanentrepeat.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.util.smali.ExternalLabel
+import app.revanced.patches.music.annotations.MusicCompatibility
+import app.revanced.patches.music.interaction.permanentrepeat.fingerprints.RepeatTrackFingerprint
+
+@Patch(false)
+@Name("Permanent repeat")
+@Description("Permanently remember your repeating preference even if the playlist ends or another track is played.")
+@MusicCompatibility
+class PermanentRepeatPatch : BytecodePatch(
+ listOf(RepeatTrackFingerprint)
+) {
+ override fun execute(context: BytecodeContext) {
+ RepeatTrackFingerprint.result?.let {
+ val startIndex = it.scanResult.patternScanResult!!.endIndex
+ val repeatIndex = startIndex + 3
+
+ it.mutableMethod.apply {
+ addInstructionsWithLabels(
+ startIndex,
+ "goto :repeat",
+ ExternalLabel("repeat", getInstruction(repeatIndex))
+ )
+ }
+ } ?: throw RepeatTrackFingerprint.exception
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/fingerprints/DisableShuffleFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/fingerprints/DisableShuffleFingerprint.kt
new file mode 100644
index 0000000000..8b70475f23
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/fingerprints/DisableShuffleFingerprint.kt
@@ -0,0 +1,20 @@
+package app.revanced.patches.music.interaction.permanentshuffle.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object DisableShuffleFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ listOf(),
+ listOf(
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.SGET_OBJECT,
+ Opcode.IPUT_OBJECT,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL
+ )
+)
diff --git a/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/patch/PermanentShufflePatch.kt b/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/patch/PermanentShufflePatch.kt
new file mode 100644
index 0000000000..3bb5fde34a
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/patch/PermanentShufflePatch.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.music.interaction.permanentshuffle.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.music.annotations.MusicCompatibility
+import app.revanced.patches.music.interaction.permanentshuffle.fingerprints.DisableShuffleFingerprint
+
+@Patch(false)
+@Name("Permanent shuffle")
+@Description("Permanently remember your shuffle preference " +
+ "even if the playlist ends or another track is played.")
+@MusicCompatibility
+class PermanentShuffleTogglePatch : BytecodePatch(
+ listOf(DisableShuffleFingerprint)
+) {
+ override fun execute(context: BytecodeContext) {
+ DisableShuffleFingerprint.result?.mutableMethod?.addInstruction(0, "return-void")
+ ?: throw DisableShuffleFingerprint.exception
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/compactheader/fingerprints/CompactHeaderConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/layout/compactheader/fingerprints/CompactHeaderConstructorFingerprint.kt
index 661c138d75..37e23aa436 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/compactheader/fingerprints/CompactHeaderConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/compactheader/fingerprints/CompactHeaderConstructorFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.layout.compactheader.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object CompactHeaderConstructorFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR, listOf("L", "L", "L", "L", "L"), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/compactheader/patch/CompactHeaderPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/compactheader/patch/CompactHeaderPatch.kt
index 4cea853d6a..bd2cec28ac 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/compactheader/patch/CompactHeaderPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/compactheader/patch/CompactHeaderPatch.kt
@@ -5,12 +5,10 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.layout.compactheader.fingerprints.CompactHeaderConstructorFingerprint
-import org.jf.dexlib2.builder.instruction.BuilderInstruction11x
+import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction11x
@Patch(false)
@Name("Compact header")
@@ -19,7 +17,7 @@ import org.jf.dexlib2.builder.instruction.BuilderInstruction11x
class CompactHeaderPatch : BytecodePatch(
listOf(CompactHeaderConstructorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val result = CompactHeaderConstructorFingerprint.result!!
val method = result.mutableMethod
@@ -31,7 +29,5 @@ class CompactHeaderPatch : BytecodePatch(
invoke-virtual {v${register}, v2}, Landroid/view/View;->setVisibility(I)V
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
index eb3d28a080..706eb6f179 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.layout.minimizedplayback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MinimizedPlaybackManagerFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
index 387e74bbb8..a1f0197e26 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.layout.minimizedplayback.fingerprints.MinimizedPlaybackManagerFingerprint
@@ -18,14 +16,12 @@ import app.revanced.patches.music.layout.minimizedplayback.fingerprints.Minimize
class MinimizedPlaybackPatch : BytecodePatch(
listOf(MinimizedPlaybackManagerFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
MinimizedPlaybackManagerFingerprint.result!!.mutableMethod.addInstruction(
0,
"""
return-void
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumFingerprint.kt
index 5b89674cc6..3608aacd6d 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.layout.premium.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object HideGetPremiumFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumParentFingerprint.kt
index d91ff64a46..fc15c531b8 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/premium/fingerprints/HideGetPremiumParentFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.music.layout.premium.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object HideGetPremiumParentFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/premium/patch/HideGetPremiumPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/premium/patch/HideGetPremiumPatch.kt
index 1852409cab..5a9f09b9e3 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/premium/patch/HideGetPremiumPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/premium/patch/HideGetPremiumPatch.kt
@@ -7,8 +7,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.layout.premium.fingerprints.HideGetPremiumFingerprint
@@ -21,7 +19,7 @@ import app.revanced.patches.music.layout.premium.fingerprints.HideGetPremiumPare
class HideGetPremiumPatch : BytecodePatch(
listOf(HideGetPremiumParentFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val parentResult = HideGetPremiumParentFingerprint.result!!
HideGetPremiumFingerprint.resolve(context, parentResult.classDef)
@@ -43,7 +41,5 @@ class HideGetPremiumPatch : BytecodePatch(
const/16 v0, 0x8
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/fingerprints/PivotBarConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/fingerprints/PivotBarConstructorFingerprint.kt
index e62225b255..63465f00ff 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/fingerprints/PivotBarConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/fingerprints/PivotBarConstructorFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.music.layout.upgradebutton.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/patch/RemoveUpgradeButtonPatch.kt b/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/patch/RemoveUpgradeButtonPatch.kt
index 05b1bb38e1..4a2f13c28a 100644
--- a/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/patch/RemoveUpgradeButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/patch/RemoveUpgradeButtonPatch.kt
@@ -5,26 +5,24 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.toInstructions
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.layout.upgradebutton.fingerprints.PivotBarConstructorFingerprint
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.builder.instruction.BuilderInstruction22t
-import org.jf.dexlib2.iface.instruction.formats.Instruction22c
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction22t
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction22c
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
@Patch
-@Name("Upgrade button remover")
+@Name("Remove upgrade button")
@Description("Removes the upgrade tab from the pivot bar.")
@MusicCompatibility
class RemoveUpgradeButtonPatch : BytecodePatch(
listOf(PivotBarConstructorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val result = PivotBarConstructorFingerprint.result!!
val implementation = result.mutableMethod.implementation!!
@@ -36,7 +34,7 @@ class RemoveUpgradeButtonPatch : BytecodePatch(
val instructionList = """
invoke-interface { v0 }, Ljava/util/List;->size()I
move-result v1
- const/4 v2, 0x3
+ const/4 v2, 0x4
invoke-interface {v0, v2}, Ljava/util/List;->remove(I)Ljava/lang/Object;
iput-object v0, v$register, $pivotBarElementFieldRef
""".toInstructions().toMutableList()
@@ -69,6 +67,5 @@ class RemoveUpgradeButtonPatch : BytecodePatch(
implementation.addInstructions(
endIndex, instructionList
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/androidauto/fingerprints/CheckCertificateFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/misc/androidauto/fingerprints/CheckCertificateFingerprint.kt
index f6ab9dbbbc..fd7d5cfc38 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/androidauto/fingerprints/CheckCertificateFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/androidauto/fingerprints/CheckCertificateFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.music.misc.androidauto.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object CheckCertificateFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/androidauto/patch/BypassCertificateChecksPatch.kt b/src/main/kotlin/app/revanced/patches/music/misc/androidauto/patch/BypassCertificateChecksPatch.kt
index a59c1fc02e..aaf43598da 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/androidauto/patch/BypassCertificateChecksPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/androidauto/patch/BypassCertificateChecksPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.music.misc.androidauto.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.misc.androidauto.fingerprints.CheckCertificateFingerprint
@@ -19,7 +17,7 @@ import app.revanced.patches.music.misc.androidauto.fingerprints.CheckCertificate
class BypassCertificateChecksPatch : BytecodePatch(
listOf(CheckCertificateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CheckCertificateFingerprint.result?.apply {
mutableMethod.addInstructions(
0, """
@@ -27,8 +25,6 @@ class BypassCertificateChecksPatch : BytecodePatch(
return v0
"""
)
- } ?: return CheckCertificateFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CheckCertificateFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
index eaefab9b28..efdc5a7c11 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.music.misc.microg.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object GooglePlayUtilityFingerprint : MethodFingerprint(
"I",
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/ServiceCheckFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/ServiceCheckFingerprint.kt
index dd08331447..5075d5b508 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/ServiceCheckFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/microg/fingerprints/ServiceCheckFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.music.misc.microg.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/bytecode/MicroGBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
index 6956721701..e15d2b5671 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
@@ -4,7 +4,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
@@ -37,27 +36,25 @@ class MicroGBytecodePatch : BytecodePatch(
// - "com.google.android.gms.phenotype.PACKAGE_NAME",
// - "com.google.android.gms.phenotype.UPDATE",
// - "com.google.android.gms.phenotype",
- override fun execute(context: BytecodeContext) =
- // apply common microG patch
- MicroGBytecodeHelper.patchBytecode(
- context,
- arrayOf(
- MicroGBytecodeHelper.packageNameTransform(
- Constants.PACKAGE_NAME,
- Constants.REVANCED_PACKAGE_NAME
- )
- ),
- MicroGBytecodeHelper.PrimeMethodTransformationData(
- PrimeFingerprint,
- MUSIC_PACKAGE_NAME,
- REVANCED_MUSIC_PACKAGE_NAME
- ),
- listOf(
- ServiceCheckFingerprint,
- GooglePlayUtilityFingerprint,
- CastDynamiteModuleFingerprint,
- CastDynamiteModuleV2Fingerprint,
- CastContextFetchFingerprint
+ override fun execute(context: BytecodeContext) = MicroGBytecodeHelper.patchBytecode(
+ context,
+ arrayOf(
+ MicroGBytecodeHelper.packageNameTransform(
+ Constants.PACKAGE_NAME,
+ Constants.REVANCED_PACKAGE_NAME
)
- ).let { PatchResultSuccess() }
+ ),
+ MicroGBytecodeHelper.PrimeMethodTransformationData(
+ PrimeFingerprint,
+ MUSIC_PACKAGE_NAME,
+ REVANCED_MUSIC_PACKAGE_NAME
+ ),
+ listOf(
+ ServiceCheckFingerprint,
+ GooglePlayUtilityFingerprint,
+ CastDynamiteModuleFingerprint,
+ CastDynamiteModuleV2Fingerprint,
+ CastContextFetchFingerprint
+ )
+ )
}
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/resource/MicroGResourcePatch.kt b/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/resource/MicroGResourcePatch.kt
index 89dc28ee9e..bbcfcf4a46 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/resource/MicroGResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/microg/patch/resource/MicroGResourcePatch.kt
@@ -2,8 +2,6 @@ package app.revanced.patches.music.misc.microg.patch.resource
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patches.music.misc.microg.shared.Constants.MUSIC_PACKAGE_NAME
import app.revanced.patches.music.misc.microg.shared.Constants.REVANCED_MUSIC_APP_NAME
@@ -15,7 +13,7 @@ import app.revanced.util.microg.MicroGResourceHelper
@Description("Resource patch to allow YouTube Music ReVanced to run without root and under a different package name.")
class MicroGResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
// update manifest
MicroGResourceHelper.patchManifest(
context,
@@ -30,6 +28,5 @@ class MicroGResourcePatch : ResourcePatch {
SPOOFED_PACKAGE_NAME,
SPOOFED_PACKAGE_SIGNATURE
)
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/fingerprints/BackgroundPlaybackDisableFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/fingerprints/BackgroundPlaybackDisableFingerprint.kt
index fdaea77606..6693fb09ca 100644
--- a/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/fingerprints/BackgroundPlaybackDisableFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/fingerprints/BackgroundPlaybackDisableFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.music.premium.backgroundplay.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
diff --git a/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/patch/BackgroundPlayPatch.kt b/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/patch/BackgroundPlayPatch.kt
index a3404c44cc..3c9fbc0684 100644
--- a/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/patch/BackgroundPlayPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/premium/backgroundplay/patch/BackgroundPlayPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.annotations.MusicCompatibility
import app.revanced.patches.music.premium.backgroundplay.fingerprints.BackgroundPlaybackDisableFingerprint
@@ -18,7 +16,7 @@ import app.revanced.patches.music.premium.backgroundplay.fingerprints.Background
class BackgroundPlayPatch : BytecodePatch(
listOf(BackgroundPlaybackDisableFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
BackgroundPlaybackDisableFingerprint.result!!.mutableMethod.addInstructions(
0,
"""
@@ -26,7 +24,5 @@ class BackgroundPlayPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/patch/UnlockProPatch.kt
index 83b4624be2..ad60a41d42 100644
--- a/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/patch/UnlockProPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.myexpenses.misc.pro.annotations.UnlockProCompatibility
import app.revanced.patches.myexpenses.misc.pro.fingerprints.IsEnabledFingerprint
@@ -20,7 +18,7 @@ class UnlockProPatch : BytecodePatch(
IsEnabledFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = IsEnabledFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -29,7 +27,5 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/netguard/broadcasts/removerestriction/resource/patch/RemoveBroadcastsRestrictionPatch.kt b/src/main/kotlin/app/revanced/patches/netguard/broadcasts/removerestriction/resource/patch/RemoveBroadcastsRestrictionPatch.kt
index 8bd7f6b1e1..90f196a504 100644
--- a/src/main/kotlin/app/revanced/patches/netguard/broadcasts/removerestriction/resource/patch/RemoveBroadcastsRestrictionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/netguard/broadcasts/removerestriction/resource/patch/RemoveBroadcastsRestrictionPatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.netguard.broadcasts.removerestriction.resource.patc
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.netguard.broadcasts.removerestriction.resource.annotations.RemoveBroadcastsRestrictionCompatibility
@@ -15,7 +13,7 @@ import org.w3c.dom.Element
@Description("Enables starting/stopping NetGuard via broadcasts.")
@RemoveBroadcastsRestrictionCompatibility
class RemoveBroadcastsRestrictionPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor["AndroidManifest.xml"].use { dom ->
val applicationNode = dom
.file
@@ -32,7 +30,5 @@ class RemoveBroadcastsRestrictionPatch : ResourcePatch {
}
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/fingerprints/IsLicenseRegisteredFingerprint.kt b/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/fingerprints/IsLicenseRegisteredFingerprint.kt
index fd6089e398..914e0ca3cf 100644
--- a/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/fingerprints/IsLicenseRegisteredFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/fingerprints/IsLicenseRegisteredFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.nfctoolsse.misc.pro.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IsLicenseRegisteredFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/patch/UnlockProPatch.kt
index 7e9ca26000..ce45d1d372 100644
--- a/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/nfctoolsse/misc/pro/patch/UnlockProPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.nfctoolsse.misc.pro.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.nfctoolsse.misc.pro.annotations.UnlockProCompatibility
import app.revanced.patches.nfctoolsse.misc.pro.fingerprints.IsLicenseRegisteredFingerprint
@@ -22,7 +20,7 @@ class UnlockProPatch : BytecodePatch(
IsLicenseRegisteredFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsLicenseRegisteredFingerprint.result?.mutableMethod?.apply {
addInstructions(
0,
@@ -31,9 +29,7 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
- } ?: return IsLicenseRegisteredFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw IsLicenseRegisteredFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/nyx/misc/pro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/nyx/misc/pro/patch/UnlockProPatch.kt
index 3aebe83053..130b53099b 100644
--- a/src/main/kotlin/app/revanced/patches/nyx/misc/pro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/nyx/misc/pro/patch/UnlockProPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.nyx.misc.pro.annotations.UnlockProCompatibility
import app.revanced.patches.nyx.misc.pro.fingerprints.CheckProFingerprint
@@ -20,7 +18,7 @@ class UnlockProPatch : BytecodePatch(
CheckProFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = CheckProFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -29,7 +27,5 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/photomath/detection/signature/fingerprints/CheckSignatureFingerprint.kt b/src/main/kotlin/app/revanced/patches/photomath/detection/signature/fingerprints/CheckSignatureFingerprint.kt
index df2445be7d..3bb7e92f6f 100644
--- a/src/main/kotlin/app/revanced/patches/photomath/detection/signature/fingerprints/CheckSignatureFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/photomath/detection/signature/fingerprints/CheckSignatureFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.photomath.detection.signature.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object CheckSignatureFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/photomath/detection/signature/patch/SignatureDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/photomath/detection/signature/patch/SignatureDetectionPatch.kt
index 5d2d5b03fb..f6bc11609f 100644
--- a/src/main/kotlin/app/revanced/patches/photomath/detection/signature/patch/SignatureDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/photomath/detection/signature/patch/SignatureDetectionPatch.kt
@@ -1,15 +1,13 @@
package app.revanced.patches.photomath.detection.signature.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.photomath.detection.signature.fingerprints.CheckSignatureFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Description("Disables detection of incorrect signature.")
class SignatureDetectionPatch : BytecodePatch(
@@ -17,15 +15,13 @@ class SignatureDetectionPatch : BytecodePatch(
CheckSignatureFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CheckSignatureFingerprint.result?.apply {
val signatureCheckInstruction = mutableMethod.getInstruction(scanResult.patternScanResult!!.endIndex)
val checkRegister = (signatureCheckInstruction as OneRegisterInstruction).registerA
mutableMethod.replaceInstruction(signatureCheckInstruction.location.index, "const/4 v$checkRegister, 0x1")
- } ?: throw CheckSignatureFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CheckSignatureFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/fingerprints/IsPlusUnlockedFingerprint.kt b/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/fingerprints/IsPlusUnlockedFingerprint.kt
index 9f9dddffaf..26dc4f0136 100644
--- a/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/fingerprints/IsPlusUnlockedFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/fingerprints/IsPlusUnlockedFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.photomath.misc.unlockplus.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IsPlusUnlockedFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/patch/UnlockPlusPatch.kt b/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/patch/UnlockPlusPatch.kt
index b0dc015bdc..6d76eb0ed2 100644
--- a/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/patch/UnlockPlusPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/photomath/misc/unlockplus/patch/UnlockPlusPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.photomath.misc.unlockplus.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.photomath.detection.signature.patch.SignatureDetectionPatch
@@ -24,7 +22,7 @@ class UnlockPlusPatch : BytecodePatch(
IsPlusUnlockedFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsPlusUnlockedFingerprint.result?.mutableMethod?.apply {
addInstructions(
0,
@@ -33,9 +31,7 @@ class UnlockPlusPatch : BytecodePatch(
return v0
"""
)
- } ?: return IsPlusUnlockedFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw IsPlusUnlockedFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/pixiv/ads/fingerprints/IsNotPremiumFingerprint.kt b/src/main/kotlin/app/revanced/patches/pixiv/ads/fingerprints/IsNotPremiumFingerprint.kt
index 453ec7fe30..cd827cd416 100644
--- a/src/main/kotlin/app/revanced/patches/pixiv/ads/fingerprints/IsNotPremiumFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/pixiv/ads/fingerprints/IsNotPremiumFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.pixiv.ads.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IsNotPremiumFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/pixiv/ads/patch/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/pixiv/ads/patch/HideAdsPatch.kt
index d2d975aa94..df9d3591f5 100644
--- a/src/main/kotlin/app/revanced/patches/pixiv/ads/patch/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/pixiv/ads/patch/HideAdsPatch.kt
@@ -1,12 +1,10 @@
package app.revanced.patches.pixiv.ads.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.pixiv.ads.fingerprints.IsNotPremiumFingerprint
@@ -15,7 +13,7 @@ import app.revanced.patches.pixiv.ads.fingerprints.IsNotPremiumFingerprint
@Description("Hides ads.")
@Compatibility([Package("jp.pxv.android")])
class HideAdsPatch : BytecodePatch(listOf(IsNotPremiumFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Always return false in the "isNotPremium" method which normally returns !this.accountManager.isPremium.
// However, this is not the method that controls the user's premium status.
// Instead, this method is used to determine whether ads should be shown.
@@ -25,8 +23,6 @@ class HideAdsPatch : BytecodePatch(listOf(IsNotPremiumFingerprint)) {
const/4 v0, 0x0
return v0
"""
- ) ?: return IsNotPremiumFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw IsNotPremiumFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/patch/HideBannerPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/patch/HideBannerPatch.kt
index 11df0eded3..e4fb8aa04f 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/patch/HideBannerPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/patch/HideBannerPatch.kt
@@ -3,14 +3,12 @@ package app.revanced.patches.reddit.ad.banner.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
@Name("Hide subreddit banner")
@Description("Hides banner ads from comments on subreddits.")
class HideBannerPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor[RESOURCE_FILE_PATH].use {
it.file.getElementsByTagName("merge").item(0).childNodes.apply {
val attributes = arrayOf("height", "width")
@@ -30,8 +28,6 @@ class HideBannerPatch : ResourcePatch {
}
}
}
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/comments/patch/HideCommentAdsPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/comments/patch/HideCommentAdsPatch.kt
index 7c307e0b45..372903e99e 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/ad/comments/patch/HideCommentAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/ad/comments/patch/HideCommentAdsPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.ad.comments.fingerprints.HideCommentAdsFingerprint
@Name("Hide comment ads")
@@ -14,7 +12,7 @@ import app.revanced.patches.reddit.ad.comments.fingerprints.HideCommentAdsFinger
class HideCommentAdsPatch : BytecodePatch(
listOf(HideCommentAdsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = HideCommentAdsFingerprint.result!!.mutableMethod
// Returns a blank object instead of the comment ad.
method.addInstructions(
@@ -25,6 +23,5 @@ class HideCommentAdsPatch : BytecodePatch(
return-object v0
"""
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/NewAdPostFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/NewAdPostFingerprint.kt
index 130aba52b6..5657bb988b 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/NewAdPostFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/NewAdPostFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.reddit.ad.general.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object NewAdPostFingerprint : MethodFingerprint(
opcodes = listOf(Opcode.INVOKE_VIRTUAL),
diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/general/patch/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/general/patch/HideAdsPatch.kt
index 3fb1c21402..4ad4658382 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/ad/general/patch/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/ad/general/patch/HideAdsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.annotations.RequiresIntegrations
@@ -16,11 +14,11 @@ import app.revanced.patches.reddit.ad.comments.patch.HideCommentAdsPatch
import app.revanced.patches.reddit.ad.general.annotations.HideAdsCompatibility
import app.revanced.patches.reddit.ad.general.fingerprints.AdPostFingerprint
import app.revanced.patches.reddit.ad.general.fingerprints.NewAdPostFingerprint
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.instruction.formats.Instruction22c
-import org.jf.dexlib2.iface.reference.FieldReference
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction22c
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Patch
@Name("Hide ads")
@@ -31,7 +29,7 @@ import org.jf.dexlib2.iface.reference.MethodReference
class HideAdsPatch : BytecodePatch(
listOf(AdPostFingerprint, NewAdPostFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// region Filter promoted ads (does not work in popular or latest feed)
AdPostFingerprint.result?.mutableMethod?.apply {
@@ -78,8 +76,6 @@ class HideAdsPatch : BytecodePatch(
}
// endregion
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/AbstractSpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/AbstractSpoofClientPatch.kt
index 972b6dd5a3..3121dcb132 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/AbstractSpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/AbstractSpoofClientPatch.kt
@@ -1,11 +1,14 @@
package app.revanced.patches.reddit.customclients
import android.os.Environment
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.*
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.OptionsContainer
+import app.revanced.patcher.patch.PatchException
+import app.revanced.patcher.patch.PatchOption
import java.io.File
abstract class AbstractSpoofClientPatch(
@@ -17,13 +20,13 @@ abstract class AbstractSpoofClientPatch(
addAll(clientIdFingerprints)
userAgentFingerprints?.let(::addAll)
}) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
if (options.clientId == null) {
// Ensure device runs Android.
try {
Class.forName("android.os.Environment")
} catch (e: ClassNotFoundException) {
- return PatchResultError("No client ID provided")
+ throw PatchException("No client ID provided")
}
File(Environment.getExternalStorageDirectory(), "reddit_client_id_revanced.txt").also {
@@ -31,29 +34,23 @@ abstract class AbstractSpoofClientPatch(
val error = """
In order to use this patch, you need to provide a client ID.
- You can do this by creating a file at ${it.absolutePath} with the client ID as its content.
+ You can do that by creating a file at ${it.absolutePath} with the client ID as its content.
Alternatively, you can provide the client ID using patch options.
You can get your client ID from https://www.reddit.com/prefs/apps.
The application type has to be "Installed app" and the redirect URI has to be set to "$redirectUri".
""".trimIndent()
- return PatchResultError(error)
+ throw PatchException(error)
}.let { options.clientId = it.readText().trim() }
}
fun List<MethodFingerprint>?.executePatch(
- patch: List<MethodFingerprintResult>.(BytecodeContext) -> PatchResult
- ) {
- when (val result = this?.map { it.result ?: throw it.toErrorResult() }?.patch(context)) {
- is PatchResultError -> throw result
- }
- }
+ patch: List<MethodFingerprintResult>.(BytecodeContext) -> Unit
+ ) = this?.map { it.result ?: throw it.exception }?.patch(context)
clientIdFingerprints.executePatch { patchClientId(context) }
userAgentFingerprints.executePatch { patchUserAgent(context) }
-
- return PatchResultSuccess()
}
/**
@@ -62,7 +59,7 @@ abstract class AbstractSpoofClientPatch(
* @param context The current [BytecodeContext].
*
*/
- abstract fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult
+ abstract fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext)
/**
* Patch the user agent. The fingerprints are guaranteed to be in the same order as in [userAgentFingerprints].
@@ -70,8 +67,7 @@ abstract class AbstractSpoofClientPatch(
* @param context The current [BytecodeContext].
*/
// Not every client needs to patch the user agent.
- open fun List<MethodFingerprintResult>.patchUserAgent(context: BytecodeContext): PatchResult =
- PatchResultSuccess()
+ open fun List<MethodFingerprintResult>.patchUserAgent(context: BytecodeContext) {}
companion object Options {
open class SpoofClientOptionsContainer : OptionsContainer() {
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/SpoofClientPatch.kt
index 39b197c49f..18f2a95390 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/SpoofClientPatch.kt
@@ -7,13 +7,11 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.baconreader.api.fingerprints.GetAuthorizationUrlFingerprint
import app.revanced.patches.reddit.customclients.baconreader.api.fingerprints.RequestTokenFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@SpoofClientAnnotation
@@ -30,7 +28,7 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
"http://baconreader.com/auth", Options, listOf(GetAuthorizationUrlFingerprint, RequestTokenFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
fun MethodFingerprintResult.patch(replacementString: String) {
val clientIdIndex = scanResult.stringsScanResult!!.matches.first().index
@@ -48,8 +46,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
// Patch client id for access token request.
last().patch(clientId!!)
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/api/patch/SpoofClientPatch.kt
index 1f721e55f3..52bef8513d 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/api/patch/SpoofClientPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.boostforreddit.api.fingerprints.GetClientIdFingerprint
@@ -20,7 +18,7 @@ import app.revanced.patches.reddit.customclients.boostforreddit.api.fingerprints
class SpoofClientPatch : AbstractSpoofClientPatch(
"http://rubenmayayo.com", Options, listOf(GetClientIdFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
first().mutableMethod.addInstructions(
0,
"""
@@ -28,8 +26,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
return-object v0
"""
)
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/api/patch/SpoofClientPatch.kt
index 88c3469816..180ff89317 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/api/patch/SpoofClientPatch.kt
@@ -7,13 +7,11 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.infinityforreddit.api.fingerprints.GetHttpBasicAuthHeaderFingerprint
import app.revanced.patches.reddit.customclients.infinityforreddit.api.fingerprints.LoginActivityOnCreateFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@SpoofClientAnnotation
@Description("Spoofs the client in order to allow logging in. " +
@@ -25,7 +23,7 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
Options,
listOf(GetHttpBasicAuthHeaderFingerprint, LoginActivityOnCreateFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
forEach {
val clientIdIndex = it.scanResult.stringsScanResult!!.matches.first().index
it.mutableMethod.apply {
@@ -37,8 +35,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
)
}
}
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/fingerprints/IsAdFreeUserFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/fingerprints/IsAdFreeUserFingerprint.kt
index 4c625220d2..585a26e473 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/fingerprints/IsAdFreeUserFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/fingerprints/IsAdFreeUserFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.reddit.customclients.joeyforreddit.ads.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IsAdFreeUserFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/patch/DisableAdsPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/patch/DisableAdsPatch.kt
index 7b0c565da3..ca3de93e2e 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/patch/DisableAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/ads/patch/DisableAdsPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.reddit.customclients.joeyforreddit.ads.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.customclients.joeyforreddit.ads.fingerprints.IsAdFreeUserFingerprint
@@ -19,15 +17,13 @@ import app.revanced.patches.reddit.customclients.joeyforreddit.detection.piracy.
@DependsOn([DisablePiracyDetectionPatch::class])
@Compatibility([Package("o.o.joey")])
class DisableAdsPatch : BytecodePatch(listOf(IsAdFreeUserFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsAdFreeUserFingerprint.result?.mutableMethod?.addInstructions(
0,
"""
const/4 v0, 0x1
return v0
"""
- ) ?: return IsAdFreeUserFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw IsAdFreeUserFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/fingerprints/GetClientIdFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/fingerprints/GetClientIdFingerprint.kt
index 861bb0dd73..f245a94973 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/fingerprints/GetClientIdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/fingerprints/GetClientIdFingerprint.kt
@@ -1,8 +1,8 @@
package app.revanced.patches.reddit.customclients.joeyforreddit.api.fingerprints
import app.revanced.patcher.extensions.or
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
object GetClientIdFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/patch/SpoofClientPatch.kt
index 8bd8ce6d00..a147e0e1eb 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/api/patch/SpoofClientPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
@@ -31,7 +29,7 @@ import app.revanced.patches.reddit.customclients.joeyforreddit.detection.piracy.
class SpoofClientPatch : AbstractSpoofClientPatch(
"https://127.0.0.1:65023/authorize_callback", Options, listOf(GetClientIdFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
first().mutableMethod.addInstructions(
0,
"""
@@ -39,8 +37,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
return-object v0
"""
)
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
index dfd1d4afc4..930f22ed24 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.reddit.customclients.joeyforreddit.detection.piracy
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object PiracyDetectionFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
index b2935fa854..360fa7d792 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/joeyforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
@@ -1,22 +1,18 @@
package app.revanced.patches.reddit.customclients.joeyforreddit.detection.piracy.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.joeyforreddit.detection.piracy.fingerprints.PiracyDetectionFingerprint
class DisablePiracyDetectionPatch : BytecodePatch(listOf(PiracyDetectionFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
PiracyDetectionFingerprint.result?.mutableMethod?.addInstruction(
0,
"""
return-void
"""
- ) ?: return PiracyDetectionFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw PiracyDetectionFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/fingerprints/GetUserAgentFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/fingerprints/GetUserAgentFingerprint.kt
index 24609d686c..54852443a0 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/fingerprints/GetUserAgentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/fingerprints/GetUserAgentFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.reddit.customclients.redditisfun.api.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object GetUserAgentFingerprint : MethodFingerprint(
"Ljava/lang/String;",
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/patch/SpoofClientPatch.kt
index b5228a2a8f..386c5da6e8 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/redditisfun/api/patch/SpoofClientPatch.kt
@@ -9,14 +9,12 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult.MethodFingerprintScanResult.StringsScanResult.StringMatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.redditisfun.api.fingerprints.BasicAuthorizationFingerprint
import app.revanced.patches.reddit.customclients.redditisfun.api.fingerprints.BuildAuthorizationStringFingerprint
import app.revanced.patches.reddit.customclients.redditisfun.api.fingerprints.GetUserAgentFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@SpoofClientAnnotation
@Description("Spoofs the client in order to allow logging in. " +
@@ -29,7 +27,7 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
listOf(BuildAuthorizationStringFingerprint, BasicAuthorizationFingerprint),
listOf(GetUserAgentFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
/**
* Replaces a one register instruction with a const-string instruction
* at the index returned by [getReplacementIndex].
@@ -53,23 +51,20 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
// Path basic authorization.
last().replaceWith("$clientId:") { last().index + 7 }
-
- return PatchResultSuccess()
}
- override fun List<MethodFingerprintResult>.patchUserAgent(context: BytecodeContext): PatchResult {
- // Use a random number as the user agent string.
- val randomUserAgent = (0..100000).random()
+ override fun List<MethodFingerprintResult>.patchUserAgent(context: BytecodeContext) {
+ // Use a random user agent.
+ val randomName = (0..100000).random()
+ val userAgent = "android:app.revanced.$randomName:v1.0.0 (by /u/revanced)"
first().mutableMethod.addInstructions(
0,
"""
- const-string v0, "$randomUserAgent"
- return-object v0
- """
+ const-string v0, "$userAgent"
+ return-object v0
+ """
)
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/relayforreddit/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/relayforreddit/api/patch/SpoofClientPatch.kt
index 9c4fdfe543..f4f6869eaf 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/relayforreddit/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/relayforreddit/api/patch/SpoofClientPatch.kt
@@ -7,15 +7,13 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.relayforreddit.api.fingerprints.GetLoggedInBearerTokenFingerprint
import app.revanced.patches.reddit.customclients.relayforreddit.api.fingerprints.GetLoggedOutBearerTokenFingerprint
import app.revanced.patches.reddit.customclients.relayforreddit.api.fingerprints.GetRefreshTokenFingerprint
import app.revanced.patches.reddit.customclients.relayforreddit.api.fingerprints.LoginActivityClientIdFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@SpoofClientAnnotation
@Description("Spoofs the client in order to allow logging in. " +
@@ -32,7 +30,7 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
GetRefreshTokenFingerprint
)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
forEach {
val clientIdIndex = it.scanResult.stringsScanResult!!.matches.first().index
it.mutableMethod.apply {
@@ -44,8 +42,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
)
}
}
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/slide/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/slide/api/patch/SpoofClientPatch.kt
index b218291695..5c187cb25d 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/slide/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/slide/api/patch/SpoofClientPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.boostforreddit.api.fingerprints.GetClientIdFingerprint
@@ -20,7 +18,7 @@ import app.revanced.patches.reddit.customclients.boostforreddit.api.fingerprints
class SpoofClientPatch : AbstractSpoofClientPatch(
"http://www.ccrama.me", Options, listOf(GetClientIdFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
first().mutableMethod.addInstructions(
0,
"""
@@ -28,8 +26,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
return-object v0
"""
)
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/fingerprints/IsAdsEnabledFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/fingerprints/IsAdsEnabledFingerprint.kt
index 40c98bc2ba..2c150d1e5c 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/fingerprints/IsAdsEnabledFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/fingerprints/IsAdsEnabledFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.reddit.customclients.syncforreddit.ads.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object IsAdsEnabledFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/patch/DisableAdsPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/patch/DisableAdsPatch.kt
index 367ca8f90d..91460a4200 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/patch/DisableAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/ads/patch/DisableAdsPatch.kt
@@ -1,12 +1,10 @@
package app.revanced.patches.reddit.customclients.syncforreddit.ads.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.customclients.syncforreddit.ads.fingerprints.IsAdsEnabledFingerprint
@@ -17,7 +15,7 @@ import app.revanced.patches.reddit.customclients.syncforreddit.detection.piracy.
@DependsOn([DisablePiracyDetectionPatch::class])
@Compatibility([Package("com.laurencedawson.reddit_sync")])
class DisableAdsPatch : BytecodePatch(listOf(IsAdsEnabledFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsAdsEnabledFingerprint.result?.mutableMethod?.apply {
addInstructions(
0,
@@ -26,9 +24,7 @@ class DisableAdsPatch : BytecodePatch(listOf(IsAdsEnabledFingerprint)) {
return v0
"""
)
- } ?: return IsAdsEnabledFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw IsAdsEnabledFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/annoyances/startup/patch/DisableSyncForLemmyBottomSheetPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/annoyances/startup/patch/DisableSyncForLemmyBottomSheetPatch.kt
index e47e6ea013..41bc706bd6 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/annoyances/startup/patch/DisableSyncForLemmyBottomSheetPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/annoyances/startup/patch/DisableSyncForLemmyBottomSheetPatch.kt
@@ -7,8 +7,6 @@ import app.revanced.patcher.annotation.Package
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.customclients.syncforreddit.annoyances.startup.fingerprints.MainActivityOnCreate
@@ -23,13 +21,11 @@ import app.revanced.patches.reddit.customclients.syncforreddit.annoyances.startu
]
)
class DisableSyncForLemmyBottomSheetPatch : BytecodePatch(listOf(MainActivityOnCreate)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
MainActivityOnCreate.result?.mutableMethod?.apply {
val showBottomSheetIndex = implementation!!.instructions.lastIndex - 1
removeInstruction(showBottomSheetIndex)
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/api/patch/SpoofClientPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/api/patch/SpoofClientPatch.kt
index 2f1ec7a1bb..7c329de376 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/api/patch/SpoofClientPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/api/patch/SpoofClientPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.reddit.customclients.syncforreddit.api.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Package
@@ -10,17 +10,15 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.reddit.customclients.AbstractSpoofClientPatch
import app.revanced.patches.reddit.customclients.SpoofClientAnnotation
import app.revanced.patches.reddit.customclients.syncforreddit.api.fingerprints.GetAuthorizationStringFingerprint
import app.revanced.patches.reddit.customclients.syncforreddit.api.fingerprints.GetBearerTokenFingerprint
import app.revanced.patches.reddit.customclients.syncforreddit.detection.piracy.patch.DisablePiracyDetectionPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.StringReference
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
import java.util.*
@SpoofClientAnnotation
@@ -38,7 +36,7 @@ import java.util.*
class SpoofClientPatch : AbstractSpoofClientPatch(
"http://redditsync/auth", Options, listOf(GetAuthorizationStringFingerprint)
) {
- override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext): PatchResult {
+ override fun List<MethodFingerprintResult>.patchClientId(context: BytecodeContext) {
forEach { fingerprintResult ->
fingerprintResult.also { result ->
GetBearerTokenFingerprint.also { it.resolve(context, result.classDef) }.result?.mutableMethod?.apply {
@@ -50,7 +48,7 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
return-object v0
"""
)
- } ?: return GetBearerTokenFingerprint.toErrorResult()
+ } ?: throw GetBearerTokenFingerprint.exception
}.let {
val occurrenceIndex = it.scanResult.stringsScanResult!!.matches.first().index
@@ -71,8 +69,6 @@ class SpoofClientPatch : AbstractSpoofClientPatch(
}
}
}
-
- return PatchResultSuccess()
}
companion object Options : AbstractSpoofClientPatch.Options.SpoofClientOptionsContainer()
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
index f420ce16b7..6251c8b29f 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/fingerprints/PiracyDetectionFingerprint.kt
@@ -2,9 +2,9 @@ package app.revanced.patches.reddit.customclients.syncforreddit.detection.piracy
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
object PiracyDetectionFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
index f0d7306034..5ce7fb0bf0 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/syncforreddit/detection/piracy/patch/DisablePiracyDetectionPatch.kt
@@ -4,13 +4,11 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.reddit.customclients.syncforreddit.detection.piracy.fingerprints.PiracyDetectionFingerprint
@Description("Disables detection of modified versions.")
class DisablePiracyDetectionPatch : BytecodePatch(listOf(PiracyDetectionFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Do not return an error if the fingerprint is not resolved.
// This is fine because new versions of the target app do not need this patch.
PiracyDetectionFingerprint.result?.mutableMethod?.apply {
@@ -21,7 +19,5 @@ class DisablePiracyDetectionPatch : BytecodePatch(listOf(PiracyDetectionFingerpr
"""
)
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/reddit/layout/disablescreenshotpopup/patch/DisableScreenshotPopupPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/layout/disablescreenshotpopup/patch/DisableScreenshotPopupPatch.kt
index 740252f29a..f59c020781 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/layout/disablescreenshotpopup/patch/DisableScreenshotPopupPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/layout/disablescreenshotpopup/patch/DisableScreenshotPopupPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.reddit.layout.disablescreenshotpopup.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.layout.disablescreenshotpopup.annotations.DisableScreenshotPopupCompatibility
import app.revanced.patches.reddit.layout.disablescreenshotpopup.fingerprints.DisableScreenshotPopupFingerprint
@@ -19,10 +17,8 @@ import app.revanced.patches.reddit.layout.disablescreenshotpopup.fingerprints.Di
class DisableScreenshotPopupPatch : BytecodePatch(
listOf(DisableScreenshotPopupFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
DisableScreenshotPopupFingerprint.result?.mutableMethod?.addInstruction(0, "return-void")
- ?: return DisableScreenshotPopupFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ?: throw DisableScreenshotPopupFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/patch/PremiumIconPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/patch/PremiumIconPatch.kt
index 8233d8115e..6f4c62a1c3 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/patch/PremiumIconPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/patch/PremiumIconPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.layout.premiumicon.annotations.PremiumIconCompatibility
import app.revanced.patches.reddit.layout.premiumicon.fingerprints.PremiumIconFingerprint
@@ -20,7 +18,7 @@ class PremiumIconPatch : BytecodePatch(
PremiumIconFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = PremiumIconFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -29,6 +27,5 @@ class PremiumIconPatch : BytecodePatch(
return v0
"""
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/patch/SanitizeUrlQueryPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/patch/SanitizeUrlQueryPatch.kt
index cb1735b856..94404f0789 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/patch/SanitizeUrlQueryPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/patch/SanitizeUrlQueryPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.reddit.misc.tracking.url.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.reddit.misc.tracking.url.annotations.SanitizeUrlQueryCompatibility
import app.revanced.patches.reddit.misc.tracking.url.fingerprints.ShareLinkFormatterFingerprint
@@ -19,14 +17,12 @@ import app.revanced.patches.reddit.misc.tracking.url.fingerprints.ShareLinkForma
class SanitizeUrlQueryPatch : BytecodePatch(
listOf(ShareLinkFormatterFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ShareLinkFormatterFingerprint.result?.mutableMethod?.addInstructions(
0,
"return-object p0"
- ) ?: return ShareLinkFormatterFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ ) ?: throw ShareLinkFormatterFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/patch/RemoveDebuggingDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/patch/RemoveDebuggingDetectionPatch.kt
index 026b31554f..387caf2d21 100644
--- a/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/patch/RemoveDebuggingDetectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/patch/RemoveDebuggingDetectionPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.scbeasy.detection.debugging.annotations.RemoveDebuggingDetectionCompatibility
import app.revanced.patches.scbeasy.detection.debugging.fingerprints.DebuggingDetectionFingerprint
@@ -18,7 +16,7 @@ import app.revanced.patches.scbeasy.detection.debugging.fingerprints.DebuggingDe
class RemoveDebuggingDetectionPatch : BytecodePatch(
listOf(DebuggingDetectionFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
DebuggingDetectionFingerprint.result!!.mutableMethod.addInstructions(
0,
"""
@@ -26,6 +24,5 @@ class RemoveDebuggingDetectionPatch : BytecodePatch(
return v0
"""
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/shared/fingerprints/LayoutConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/shared/fingerprints/LayoutConstructorFingerprint.kt
new file mode 100644
index 0000000000..ad843e9f74
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/shared/fingerprints/LayoutConstructorFingerprint.kt
@@ -0,0 +1,12 @@
+package app.revanced.patches.shared.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+object LayoutConstructorFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = emptyList(),
+ strings = listOf("1.0x")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/shared/fingerprints/WatchWhileActivityFingerprint.kt b/src/main/kotlin/app/revanced/patches/shared/fingerprints/WatchWhileActivityFingerprint.kt
index 9aec2409af..eab3705263 100644
--- a/src/main/kotlin/app/revanced/patches/shared/fingerprints/WatchWhileActivityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/fingerprints/WatchWhileActivityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.shared.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object WatchWhileActivityFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
index bff3bd1997..378cfc30d3 100644
--- a/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
@@ -5,13 +5,11 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint.RegisterResolver
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
@Description("Applies mandatory patches to implement the ReVanced integrations into the application.")
abstract class AbstractIntegrationsPatch(
@@ -40,7 +38,7 @@ abstract class AbstractIntegrationsPatch(
strings,
customFingerprint
) {
- fun invoke(integrationsDescriptor: String): PatchResult {
+ fun invoke(integrationsDescriptor: String) {
result?.mutableMethod?.let { method ->
val contextRegister = contextRegisterResolver(method)
@@ -49,9 +47,7 @@ abstract class AbstractIntegrationsPatch(
"sput-object v$contextRegister, " +
"$integrationsDescriptor->context:Landroid/content/Context;"
)
- } ?: return PatchResultError("Could not find hook target fingerprint.")
-
- return PatchResultSuccess()
+ } ?: throw PatchException("Could not find hook target fingerprint.")
}
interface RegisterResolver : (Method) -> Int {
@@ -59,20 +55,11 @@ abstract class AbstractIntegrationsPatch(
}
}
- override fun execute(context: BytecodeContext): PatchResult {
- if (context.findClass(integrationsDescriptor) == null) return MISSING_INTEGRATIONS
-
- for (hook in hooks) hook.invoke(integrationsDescriptor).let {
- if (it is PatchResultError) return it
- }
-
- return PatchResultSuccess()
- }
-
- private companion object {
- val MISSING_INTEGRATIONS = PatchResultError(
- "Integrations have not been merged yet. " +
- "This patch can not succeed without merging the integrations."
+ override fun execute(context: BytecodeContext) {
+ if (context.findClass(integrationsDescriptor) == null) throw PatchException(
+ "Integrations have not been merged yet. This patch can not succeed without merging the integrations."
)
+
+ for (hook in hooks) hook.invoke(integrationsDescriptor)
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/shared/mapping/misc/patch/ResourceMappingPatch.kt b/src/main/kotlin/app/revanced/patches/shared/mapping/misc/patch/ResourceMappingPatch.kt
index ea00c7832f..62d1043c40 100644
--- a/src/main/kotlin/app/revanced/patches/shared/mapping/misc/patch/ResourceMappingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/mapping/misc/patch/ResourceMappingPatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.shared.mapping.misc.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import org.w3c.dom.Element
import java.util.*
@@ -19,7 +17,7 @@ class ResourceMappingPatch : ResourcePatch {
private val threadPoolExecutor = Executors.newFixedThreadPool(THREAD_COUNT)
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
// save the file in memory to concurrently read from
val resourceXmlFile = context["res/values/public.xml"].readBytes()
@@ -59,8 +57,6 @@ class ResourceMappingPatch : ResourcePatch {
.awaitTermination(Long.MAX_VALUE, TimeUnit.SECONDS)
resourceMappings = mappings
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/fingerprints/CanScrollVerticallyFingerprint.kt b/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/fingerprints/CanScrollVerticallyFingerprint.kt
index c58581081e..f96e2d9d08 100644
--- a/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/fingerprints/CanScrollVerticallyFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/fingerprints/CanScrollVerticallyFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.shared.misc.fix.verticalscroll.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object CanScrollVerticallyFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/patch/VerticalScrollPatch.kt b/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/patch/VerticalScrollPatch.kt
index f33bb09b3c..cea86414e8 100644
--- a/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/patch/VerticalScrollPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/misc/fix/verticalscroll/patch/VerticalScrollPatch.kt
@@ -1,23 +1,21 @@
package app.revanced.patches.shared.misc.fix.verticalscroll.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.shared.misc.fix.verticalscroll.annotations.VerticalScrollCompatibility
import app.revanced.patches.shared.misc.fix.verticalscroll.fingerprints.CanScrollVerticallyFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Description("Fixes issues with refreshing the feed when the first component is of type EmptyComponent.")
@VerticalScrollCompatibility
class VerticalScrollPatch : BytecodePatch(
listOf(CanScrollVerticallyFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CanScrollVerticallyFingerprint.result?.let {
it.mutableMethod.apply {
val moveResultIndex = it.scanResult.patternScanResult!!.endIndex
@@ -29,8 +27,6 @@ class VerticalScrollPatch : BytecodePatch(
"const/4 v$moveResultRegister, 0x0"
)
}
- } ?: return CanScrollVerticallyFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CanScrollVerticallyFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/BasePreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/BasePreference.kt
index 09fe4bc61e..4fc84105d8 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/BasePreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/BasePreference.kt
@@ -12,7 +12,7 @@ import org.w3c.dom.Element
* @param tag The tag of the preference.
* @param summary The summary of the preference.
*/
-internal abstract class BasePreference(
+abstract class BasePreference(
val key: String?,
val title: StringResource,
val summary: StringResource? = null,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/BaseResource.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/BaseResource.kt
index 61a9b35a29..682ccb33ae 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/BaseResource.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/BaseResource.kt
@@ -9,7 +9,7 @@ import org.w3c.dom.Element
* @param name The name of the resource.
* @param tag The tag of the resource.
*/
-internal abstract class BaseResource(
+abstract class BaseResource(
val name: String,
val tag: String
) {
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/DefaultBasePreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/DefaultBasePreference.kt
index 64d35878ca..9371d48f8c 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/DefaultBasePreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/DefaultBasePreference.kt
@@ -12,7 +12,7 @@ import org.w3c.dom.Document
* @param summary The summary of the preference.
* @param default The default value of the preference.
*/
-internal abstract class DefaultBasePreference<T>(
+abstract class DefaultBasePreference<T>(
key: String?,
title: StringResource,
summary: StringResource? = null,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
index 9db57cff00..fa5e12f3ce 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
@@ -10,7 +10,7 @@ import org.w3c.dom.Document
* @param name The name of the array resource.
* @param items The items of the array resource.
*/
-internal class ArrayResource(
+class ArrayResource(
name: String,
val items: List<StringResource>
) : BaseResource(name, "string-array") {
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ListPreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ListPreference.kt
index 3df3c87e90..37181267fa 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ListPreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ListPreference.kt
@@ -15,7 +15,7 @@ import org.w3c.dom.Document
* @param summary The summary of the list preference.
* @param default The default entry value of the list preference.
*/
-internal class ListPreference(
+class ListPreference(
key: String,
title: StringResource,
val entries: ArrayResource,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/NonInteractivePreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/NonInteractivePreference.kt
index c97913c2a1..eb16067c23 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/NonInteractivePreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/NonInteractivePreference.kt
@@ -15,7 +15,7 @@ import org.w3c.dom.Element
* @param title The title of the preference.
* @param summary The summary of the text preference.
*/
-internal class NonInteractivePreference(
+class NonInteractivePreference(
title: StringResource,
summary: StringResource,
) : BasePreference(null, title, summary, "Preference") {
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/Preference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/Preference.kt
index 2ada5625d6..463a1fce28 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/Preference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/Preference.kt
@@ -12,7 +12,7 @@ import org.w3c.dom.Document
* @param summary The summary of the text preference.
* @param intent The intent of the preference.
*/
-internal class Preference(
+class Preference(
key: String,
title: StringResource,
summary: StringResource,
@@ -33,7 +33,7 @@ internal class Preference(
})
}
- internal class Intent(
+ class Intent(
internal val targetPackage: String,
internal val data: String,
internal val targetClass: String
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceCategory.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceCategory.kt
index 56e02f45d6..633e8d7849 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceCategory.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceCategory.kt
@@ -11,7 +11,7 @@ import org.w3c.dom.Document
* @param title The title of the preference.
* @param preferences Child preferences of this category.
*/
-internal open class PreferenceCategory(
+open class PreferenceCategory(
key: String,
title: StringResource,
var preferences: List<BasePreference>,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceScreen.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceScreen.kt
index e6bf32d439..e0e435b23f 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceScreen.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/PreferenceScreen.kt
@@ -13,7 +13,7 @@ import org.w3c.dom.Document
* @param preferences Child preferences of this screen.
* @param summary The summary of the text preference.
*/
-internal open class PreferenceScreen(
+open class PreferenceScreen(
key: String,
title: StringResource,
var preferences: List<BasePreference>,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/StringResource.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/StringResource.kt
index 7934b12704..b3cd839723 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/StringResource.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/StringResource.kt
@@ -11,7 +11,7 @@ import org.w3c.dom.Document
* @param value The value of the string.
* @param formatted If the string is formatted. If false, the attribute will be set.
*/
-internal class StringResource(
+class StringResource(
name: String,
val value: String,
val formatted: Boolean = true
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/SwitchPreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/SwitchPreference.kt
index 5a9e6778ee..a24b6dfa9c 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/SwitchPreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/SwitchPreference.kt
@@ -18,7 +18,7 @@ import org.w3c.dom.Element
* @param userDialogMessage The message to show in a dialog when the user toggles the preference.
* @param default The default value of the switch.
*/
-internal class SwitchPreference(
+class SwitchPreference(
key: String, title: StringResource,
val summaryOn: StringResource,
val summaryOff: StringResource,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/TextPreference.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/TextPreference.kt
index 5895a5e6e1..aaac8c5c01 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/TextPreference.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/TextPreference.kt
@@ -13,7 +13,7 @@ import org.w3c.dom.Document
* @param summary The summary of the text preference.
* @param default The default value of the text preference.
*/
-internal class TextPreference(
+class TextPreference(
key: String?,
title: StringResource,
summary: StringResource?,
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/resource/patch/AbstractSettingsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/shared/settings/resource/patch/AbstractSettingsResourcePatch.kt
index a86ed1beec..3819be0dd9 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/resource/patch/AbstractSettingsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/resource/patch/AbstractSettingsResourcePatch.kt
@@ -1,10 +1,8 @@
package app.revanced.patches.shared.settings.resource.patch
-import app.revanced.patcher.data.DomFileEditor
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
+import app.revanced.patcher.util.DomFileEditor
import app.revanced.patches.shared.settings.preference.BasePreference
import app.revanced.patches.shared.settings.preference.BaseResource
import app.revanced.patches.shared.settings.preference.addPreference
@@ -26,7 +24,7 @@ abstract class AbstractSettingsResourcePatch(
private val preferenceFileName: String,
private val sourceDirectory: String,
) : ResourcePatch, Closeable {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
/*
* used for self-restart
* TODO: do this only, when necessary
@@ -51,8 +49,6 @@ abstract class AbstractSettingsResourcePatch(
stringsEditor = context.xmlEditor["res/values/strings.xml"]
arraysEditor = context.xmlEditor["res/values/arrays.xml"]
revancedPreferencesEditor = context.xmlEditor["res/xml/$preferenceFileName.xml"]
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/util/AbstractPreferenceScreen.kt b/src/main/kotlin/app/revanced/patches/shared/settings/util/AbstractPreferenceScreen.kt
index a17b9c381b..30402f5a73 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/util/AbstractPreferenceScreen.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/util/AbstractPreferenceScreen.kt
@@ -6,7 +6,7 @@ import app.revanced.patches.shared.settings.preference.impl.PreferenceScreen
import app.revanced.patches.shared.settings.preference.impl.StringResource
import java.io.Closeable
-internal abstract class AbstractPreferenceScreen(
+abstract class AbstractPreferenceScreen(
private val root: MutableList<Screen> = mutableListOf()
) : Closeable {
diff --git a/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/fingerprints/OnReadyFingerprint.kt b/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/fingerprints/OnReadyFingerprint.kt
new file mode 100644
index 0000000000..22e625b681
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/fingerprints/OnReadyFingerprint.kt
@@ -0,0 +1,15 @@
+package app.revanced.patches.solidexplorer2.functionality.filesize.fingerprints
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+
+object OnReadyFingerprint : MethodFingerprint(
+ opcodes = listOf(
+ Opcode.CONST_WIDE_32, // Constant storing the 2MB limit
+ Opcode.CMP_LONG,
+ Opcode.IF_LEZ,
+ ),
+ customFingerprint = { methodDef, _ ->
+ methodDef.definingClass == "Lpl/solidexplorer/plugins/texteditor/TextEditor;" && methodDef.name == "onReady"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/patch/RemoveFileSizeLimitPatch.kt b/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/patch/RemoveFileSizeLimitPatch.kt
new file mode 100644
index 0000000000..3fed6f5381
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/solidexplorer2/functionality/filesize/patch/RemoveFileSizeLimitPatch.kt
@@ -0,0 +1,27 @@
+package app.revanced.patches.solidexplorer2.functionality.filesize.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Package
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.solidexplorer2.functionality.filesize.fingerprints.OnReadyFingerprint
+import com.android.tools.smali.dexlib2.iface.instruction.ThreeRegisterInstruction
+
+@Patch
+@Name("Remove file size limit")
+@Description("Allows opening files larger than 2 MB in the text editor.")
+@Compatibility([Package("pl.solidexplorer2")])
+class RemoveFileSizeLimitPatch : BytecodePatch(listOf(OnReadyFingerprint)) {
+ override fun execute(context: BytecodeContext) = OnReadyFingerprint.result?.let { result ->
+ val cmpIndex = result.scanResult.patternScanResult!!.startIndex + 1
+ val cmpResultRegister = result.mutableMethod.getInstruction<ThreeRegisterInstruction>(cmpIndex).registerA
+
+ result.mutableMethod.replaceInstruction(cmpIndex, "const/4 v${cmpResultRegister}, 0x0")
+ } ?: throw OnReadyFingerprint.exception
+}
diff --git a/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/CreateTabsFingerprint.kt b/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/CreateTabsFingerprint.kt
index 59f82c3aa9..b85e7464ad 100644
--- a/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/CreateTabsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/CreateTabsFingerprint.kt
@@ -2,10 +2,10 @@ package app.revanced.patches.songpal.badge.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.songpal.badge.patch.BadgeTabPatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
// Located @ ub.i0.h#p (9.5.0)
object CreateTabsFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/ShowNotificationFingerprint.kt b/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/ShowNotificationFingerprint.kt
index d480430de4..02920a8ef7 100644
--- a/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/ShowNotificationFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/songpal/badge/fingerprints/ShowNotificationFingerprint.kt
@@ -2,11 +2,11 @@ package app.revanced.patches.songpal.badge.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.songpal.badge.fingerprints.ShowNotificationFingerprint.expectedReference
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
-import org.jf.dexlib2.immutable.reference.ImmutableMethodReference
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.immutable.reference.ImmutableMethodReference
// Located @ com.sony.songpal.mdr.vim.activity.MdrRemoteBaseActivity.e#run (9.5.0)
object ShowNotificationFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/songpal/badge/patch/BadgeTabPatch.kt b/src/main/kotlin/app/revanced/patches/songpal/badge/patch/BadgeTabPatch.kt
index d4f7ffbdbf..9e00514e65 100644
--- a/src/main/kotlin/app/revanced/patches/songpal/badge/patch/BadgeTabPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/songpal/badge/patch/BadgeTabPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.songpal.badge.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.songpal.badge.annotations.BadgeCompatibility
import app.revanced.patches.songpal.badge.fingerprints.CreateTabsFingerprint
@@ -20,7 +18,7 @@ import app.revanced.patches.songpal.badge.fingerprints.CreateTabsFingerprint
class BadgeTabPatch : BytecodePatch(
listOf(CreateTabsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CreateTabsFingerprint.result?.mutableMethod?.apply {
removeInstructions(0, 2)
@@ -52,9 +50,7 @@ class BadgeTabPatch : BytecodePatch(
"""
)
- } ?: return CreateTabsFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CreateTabsFingerprint.exception
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/songpal/badge/patch/RemoveNotificationBadgePatch.kt b/src/main/kotlin/app/revanced/patches/songpal/badge/patch/RemoveNotificationBadgePatch.kt
index 59f626eb80..3794339a85 100644
--- a/src/main/kotlin/app/revanced/patches/songpal/badge/patch/RemoveNotificationBadgePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/songpal/badge/patch/RemoveNotificationBadgePatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.songpal.badge.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.songpal.badge.annotations.BadgeCompatibility
import app.revanced.patches.songpal.badge.fingerprints.ShowNotificationFingerprint
@@ -19,11 +17,9 @@ import app.revanced.patches.songpal.badge.fingerprints.ShowNotificationFingerpri
class RemoveNotificationBadgePatch : BytecodePatch(
listOf(ShowNotificationFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ShowNotificationFingerprint.result?.mutableMethod?.apply {
addInstructions(0, "return-void")
- } ?: return ShowNotificationFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw ShowNotificationFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/spotify/layout/theme/patch/ThemePatch.kt b/src/main/kotlin/app/revanced/patches/spotify/layout/theme/patch/ThemePatch.kt
index 356a2d9e8e..c90b93ff7e 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/layout/theme/patch/ThemePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/layout/theme/patch/ThemePatch.kt
@@ -3,7 +3,9 @@ package app.revanced.patches.spotify.layout.theme.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.*
+import app.revanced.patcher.patch.OptionsContainer
+import app.revanced.patcher.patch.PatchOption
+import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.spotify.layout.theme.annotations.ThemeCompatibility
import org.w3c.dom.Element
@@ -13,7 +15,7 @@ import org.w3c.dom.Element
@Description("Applies a custom theme.")
@ThemeCompatibility
class ThemePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor["res/values/colors.xml"].use { editor ->
val resourcesNode = editor.file.getElementsByTagName("resources").item(0) as Element
@@ -28,8 +30,6 @@ class ThemePatch : ResourcePatch {
}
}
}
-
- return PatchResultSuccess()
}
companion object : OptionsContainer() {
diff --git a/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/fingerprints/OnDemandFingerprint.kt b/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/fingerprints/OnDemandFingerprint.kt
index 099eaa438a..1295793448 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/fingerprints/OnDemandFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/fingerprints/OnDemandFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.spotify.lite.ondemand.fingerprints
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(2)
object OnDemandFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/patch/OnDemandPatch.kt b/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/patch/OnDemandPatch.kt
index 0ee130dfbb..7ab6ff29a2 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/patch/OnDemandPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/lite/ondemand/patch/OnDemandPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.spotify.lite.ondemand.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.spotify.lite.ondemand.annotations.OnDemandCompatibility
import app.revanced.patches.spotify.lite.ondemand.fingerprints.OnDemandFingerprint
@@ -21,12 +19,11 @@ class OnDemandPatch : BytecodePatch(
OnDemandFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
OnDemandFingerprint.result?.apply {
val insertIndex = scanResult.patternScanResult!!.endIndex - 1
// Spoof a premium account
mutableMethod.addInstruction(insertIndex, "const/4 v0, 0x2")
- } ?: return OnDemandFingerprint.toErrorResult()
- return PatchResultSuccess()
+ } ?: throw OnDemandFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/spotify/premium_navbar_tab/patch/PremiumNavbarTabPatch.kt b/src/main/kotlin/app/revanced/patches/spotify/premium_navbar_tab/patch/PremiumNavbarTabPatch.kt
index 5c3376d636..a8126057c2 100644
--- a/src/main/kotlin/app/revanced/patches/spotify/premium_navbar_tab/patch/PremiumNavbarTabPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/spotify/premium_navbar_tab/patch/PremiumNavbarTabPatch.kt
@@ -6,16 +6,14 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.spotify.premium_navbar_tab.annotations.PremiumNavbarTabCompatibility
import app.revanced.patches.spotify.premium_navbar_tab.fingerprints.AddPremiumNavbarTabFingerprint
import app.revanced.patches.spotify.premium_navbar_tab.fingerprints.AddPremiumNavbarTabParentFingerprint
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.WideLiteralInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.WideLiteralInstruction
@Patch
@Name("Hide premium navbar")
@@ -27,7 +25,7 @@ class PremiumNavbarTabPatch : BytecodePatch(
AddPremiumNavbarTabParentFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val parentResult = AddPremiumNavbarTabParentFingerprint.result!!
AddPremiumNavbarTabFingerprint.resolve(context, parentResult.classDef)
@@ -55,7 +53,5 @@ class PremiumNavbarTabPatch : BytecodePatch(
if (--removeAmount == 0) break
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/strava/subscription/fingerprints/GetSubscribedFingerprint.kt b/src/main/kotlin/app/revanced/patches/strava/subscription/fingerprints/GetSubscribedFingerprint.kt
new file mode 100644
index 0000000000..a0f6ff393b
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/strava/subscription/fingerprints/GetSubscribedFingerprint.kt
@@ -0,0 +1,11 @@
+package app.revanced.patches.strava.subscription.fingerprints
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+
+object GetSubscribedFingerprint : MethodFingerprint(
+ opcodes = listOf(Opcode.IGET_BOOLEAN),
+ customFingerprint = { methodDef, classDef ->
+ classDef.type.endsWith("SubscriptionDetailResponse;") && methodDef.name == "getSubscribed"
+ }
+)
diff --git a/src/main/kotlin/app/revanced/patches/strava/subscription/patch/UnlockSubscriptionPatch.kt b/src/main/kotlin/app/revanced/patches/strava/subscription/patch/UnlockSubscriptionPatch.kt
new file mode 100644
index 0000000000..42a462e348
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/strava/subscription/patch/UnlockSubscriptionPatch.kt
@@ -0,0 +1,23 @@
+package app.revanced.patches.strava.subscription.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Package
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.strava.subscription.fingerprints.GetSubscribedFingerprint
+
+@Patch
+@Name("Unlock subscription features")
+@Description("Unlocks \"Matched Runs\" and \"Segment Efforts\".")
+@Compatibility([Package("com.strava", ["320.12"])])
+class UnlockSubscriptionPatch : BytecodePatch(listOf(GetSubscribedFingerprint)) {
+ override fun execute(context: BytecodeContext) = GetSubscribedFingerprint.result?.let { result ->
+ val isSubscribedIndex = result.scanResult.patternScanResult!!.startIndex
+ result.mutableMethod.replaceInstruction(isSubscribedIndex, "const/4 v0, 0x1")
+ } ?: throw GetSubscribedFingerprint.exception
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/ticktick/misc/themeunlock/patch/UnlockThemePatch.kt b/src/main/kotlin/app/revanced/patches/ticktick/misc/themeunlock/patch/UnlockThemePatch.kt
index c7e5023e6c..e7ff2319aa 100644
--- a/src/main/kotlin/app/revanced/patches/ticktick/misc/themeunlock/patch/UnlockThemePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/ticktick/misc/themeunlock/patch/UnlockThemePatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.ticktick.misc.themeunlock.annotations.UnlockThemesCompatibility
import app.revanced.patches.ticktick.misc.themeunlock.fingerprints.CheckLockedThemesFingerprint
@@ -23,7 +21,7 @@ class UnlockProPatch : BytecodePatch(
SetThemeFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val lockedThemesMethod = CheckLockedThemesFingerprint.result!!.mutableMethod
lockedThemesMethod.addInstructions(
0,
@@ -35,7 +33,5 @@ class UnlockProPatch : BytecodePatch(
val setThemeMethod = SetThemeFingerprint.result!!.mutableMethod
setThemeMethod.removeInstructions(0, 10)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/ad/patch/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/ad/patch/HideAdsPatch.kt
index 84fedb65c3..975672dc6c 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/ad/patch/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/ad/patch/HideAdsPatch.kt
@@ -5,17 +5,15 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.tiktok.ad.annotations.HideAdsCompatibility
import app.revanced.patches.tiktok.ad.fingerprints.ConvertHelpFeedItemListFingerprint
import app.revanced.patches.tiktok.ad.fingerprints.FeedItemListCloneFingerprint
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
-import org.jf.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
@Patch
@Name("Hide ads")
@@ -27,7 +25,7 @@ class HideAdsPatch : BytecodePatch(
ConvertHelpFeedItemListFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
listOf(
FeedItemListCloneFingerprint,
ConvertHelpFeedItemListFingerprint
@@ -48,8 +46,7 @@ class HideAdsPatch : BytecodePatch(
)
return@forEach
}
- return PatchResultError("Can not find required instruction.")
+ throw PatchException("Can not find required instruction.")
}
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/fingerprints/FeedApiServiceLIZFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/fingerprints/FeedApiServiceLIZFingerprint.kt
index 30854e0c34..a305ff53dd 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/fingerprints/FeedApiServiceLIZFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/fingerprints/FeedApiServiceLIZFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.feedfilter.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object FeedApiServiceLIZFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC or AccessFlags.SYNTHETIC,
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/patch/FeedFilterPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/patch/FeedFilterPatch.kt
index 21fb62f1f9..d75b5032c7 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/patch/FeedFilterPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/feedfilter/patch/FeedFilterPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.tiktok.feedfilter.annotations.FeedFilterCompatibility
@@ -14,8 +12,8 @@ import app.revanced.patches.tiktok.feedfilter.fingerprints.FeedApiServiceLIZFing
import app.revanced.patches.tiktok.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.tiktok.misc.settings.fingerprints.SettingsStatusLoadFingerprint
import app.revanced.patches.tiktok.misc.settings.patch.SettingsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -28,7 +26,7 @@ class FeedFilterPatch : BytecodePatch(
SettingsStatusLoadFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = FeedApiServiceLIZFingerprint.result!!.mutableMethod
for ((index, instruction) in method.implementation!!.instructions.withIndex()) {
if (instruction.opcode != Opcode.RETURN_OBJECT) continue
@@ -44,6 +42,5 @@ class FeedFilterPatch : BytecodePatch(
0,
"invoke-static {}, Lapp/revanced/tiktok/settingsmenu/SettingsStatus;->enableFeedFilter()V"
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt
index d5219ff3cf..457603c96b 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.interaction.downloads.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object ACLCommonShareFingerprint : MethodFingerprint(
"I",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt
index a0e29c6a2d..774ffd45ff 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint2.kt
@@ -4,7 +4,7 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
@Name("Acl common share get show type")
@DownloadsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt
index df0c093cd8..3102f378b1 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/ACLCommonShareFingerprint3.kt
@@ -4,7 +4,7 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.tiktok.interaction.downloads.annotations.DownloadsCompatibility
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
@Name("Acl common share get transcode")
@DownloadsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/DownloadPathParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/DownloadPathParentFingerprint.kt
index 8daff09e4b..dd71a308bb 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/DownloadPathParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/fingerprints/DownloadPathParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.interaction.downloads.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object DownloadPathParentFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt
index 9fc217eaae..50d954ab16 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/downloads/patch/DownloadsPatch.kt
@@ -3,16 +3,13 @@ package app.revanced.patches.tiktok.interaction.downloads.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
@@ -24,10 +21,10 @@ import app.revanced.patches.tiktok.interaction.downloads.fingerprints.DownloadPa
import app.revanced.patches.tiktok.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.tiktok.misc.settings.fingerprints.SettingsStatusLoadFingerprint
import app.revanced.patches.tiktok.misc.settings.patch.SettingsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.StringReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -43,7 +40,7 @@ class DownloadsPatch : BytecodePatch(
SettingsStatusLoadFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method1 = ACLCommonShareFingerprint.result!!.mutableMethod
method1.replaceInstructions(
0,
@@ -89,7 +86,7 @@ class DownloadsPatch : BytecodePatch(
targetOffset = index + 1
break
}
- if (targetOffset == -1) return PatchResultError("Can not find download path uri method.")
+ if (targetOffset == -1) throw PatchException("Can not find download path uri method.")
//Change videos' download path.
val downloadUriMethod = context
.toMethodWalker(DownloadPathParentFingerprint.result!!.method)
@@ -125,6 +122,5 @@ class DownloadsPatch : BytecodePatch(
0,
"invoke-static {}, Lapp/revanced/tiktok/settingsmenu/SettingsStatus;->enableDownload()V"
)
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/ShouldShowSeekBarFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/ShouldShowSeekBarFingerprint.kt
new file mode 100644
index 0000000000..d13cfe33ae
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/fingerprints/ShouldShowSeekBarFingerprint.kt
@@ -0,0 +1,9 @@
+package app.revanced.patches.tiktok.interaction.seekbar.fingerprints
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+
+object ShouldShowSeekBarFingerprint : MethodFingerprint(
+ strings = listOf(
+ "can not show seekbar, state: 1, not in resume"
+ ),
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/ShowSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/ShowSeekbarPatch.kt
index f0cf943595..85bbe3378c 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/ShowSeekbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/seekbar/patch/ShowSeekbarPatch.kt
@@ -1,18 +1,15 @@
package app.revanced.patches.tiktok.interaction.seekbar.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
-import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.tiktok.interaction.seekbar.annotations.ShowSeekbarCompatibility
import app.revanced.patches.tiktok.interaction.seekbar.fingerprints.SetSeekBarShowTypeFingerprint
-import org.jf.dexlib2.iface.instruction.formats.Instruction22t
+import app.revanced.patches.tiktok.interaction.seekbar.fingerprints.ShouldShowSeekBarFingerprint
@Patch
@Name("Show seekbar")
@@ -21,11 +18,21 @@ import org.jf.dexlib2.iface.instruction.formats.Instruction22t
class ShowSeekbarPatch : BytecodePatch(
listOf(
SetSeekBarShowTypeFingerprint,
+ ShouldShowSeekBarFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
+ ShouldShowSeekBarFingerprint.result?.mutableMethod?.apply {
+ addInstructions(
+ 0,
+ """
+ const/4 v0, 0x1
+ return v0
+ """
+ )
+ }
SetSeekBarShowTypeFingerprint.result?.mutableMethod?.apply {
- val typeRegister = getInstruction<Instruction22t>(1).registerB
+ val typeRegister = implementation!!.registerCount - 1
addInstructions(
0,
@@ -33,8 +40,7 @@ class ShowSeekbarPatch : BytecodePatch(
const/16 v$typeRegister, 0x64
"""
)
- } ?: return SetSeekBarShowTypeFingerprint.toErrorResult()
- return PatchResultSuccess()
+ } ?: throw SetSeekBarShowTypeFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/fingerprints/SpeedControlParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/fingerprints/SpeedControlParentFingerprint.kt
index 2a395194b3..21508a928a 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/fingerprints/SpeedControlParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/fingerprints/SpeedControlParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.interaction.speed.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object SpeedControlParentFingerprint : MethodFingerprint(
returnType = "L",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/patch/PlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/patch/PlaybackSpeedPatch.kt
index f0a1c9eece..8e0fb52772 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/patch/PlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/interaction/speed/patch/PlaybackSpeedPatch.kt
@@ -3,16 +3,13 @@ package app.revanced.patches.tiktok.interaction.speed.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.tiktok.interaction.speed.annotations.PlaybackSpeedCompatibility
import app.revanced.patches.tiktok.interaction.speed.fingerprints.SpeedControlParentFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
@Patch
@Name("Playback speed")
@@ -23,7 +20,7 @@ class PlaybackSpeedPatch : BytecodePatch(
SpeedControlParentFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val parentMethod = SpeedControlParentFingerprint.result!!.mutableMethod
val parentMethodInstructions = parentMethod.implementation!!.instructions
for ((index, instruction) in parentMethodInstructions.withIndex()) {
@@ -41,6 +38,5 @@ class PlaybackSpeedPatch : BytecodePatch(
)
break
}
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/annotations/IntegrationsCompatibility.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/annotations/IntegrationsCompatibility.kt
deleted file mode 100644
index 4ece97d66b..0000000000
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/annotations/IntegrationsCompatibility.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package app.revanced.patches.tiktok.misc.integrations.annotations
-
-import app.revanced.patcher.annotation.Compatibility
-import app.revanced.patcher.annotation.Package
-
-@Compatibility(
- [
- Package("com.ss.android.ugc.trill"),
- Package("com.zhiliaoapp.musically")
- ]
-)
-@Target(AnnotationTarget.CLASS)
-internal annotation class IntegrationsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/patch/IntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/patch/IntegrationsPatch.kt
index 8d777bc690..9761c0f12a 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/patch/IntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/integrations/patch/IntegrationsPatch.kt
@@ -3,11 +3,9 @@ package app.revanced.patches.tiktok.misc.integrations.patch
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch
-import app.revanced.patches.tiktok.misc.integrations.annotations.IntegrationsCompatibility
import app.revanced.patches.tiktok.misc.integrations.fingerprints.InitFingerprint
@Name("Integrations")
-@IntegrationsCompatibility
@RequiresIntegrations
class IntegrationsPatch : AbstractIntegrationsPatch(
"Lapp/revanced/tiktok/utils/ReVancedUtils;",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/disablerequirement/patch/DisableLoginRequirementPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/disablerequirement/patch/DisableLoginRequirementPatch.kt
index 51c02a321b..c34ead1521 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/disablerequirement/patch/DisableLoginRequirementPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/disablerequirement/patch/DisableLoginRequirementPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.tiktok.misc.login.disablerequirement.annotations.DisableLoginRequirementCompatibility
import app.revanced.patches.tiktok.misc.login.disablerequirement.fingerprints.MandatoryLoginServiceFingerprint
@@ -22,7 +20,7 @@ class DisableLoginRequirementPatch : BytecodePatch(
MandatoryLoginServiceFingerprint2
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
listOf(
MandatoryLoginServiceFingerprint,
MandatoryLoginServiceFingerprint2
@@ -36,6 +34,5 @@ class DisableLoginRequirementPatch : BytecodePatch(
"""
)
}
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleAuthAvailableFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleAuthAvailableFingerprint.kt
index 24dd8a7ded..ba1c009340 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleAuthAvailableFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleAuthAvailableFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.misc.login.fixgoogle.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object GoogleAuthAvailableFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleOneTapAuthAvailableFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleOneTapAuthAvailableFingerprint.kt
index fb677fcb60..253dbdf215 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleOneTapAuthAvailableFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/fingerprints/GoogleOneTapAuthAvailableFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.tiktok.misc.login.fixgoogle.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object GoogleOneTapAuthAvailableFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/patch/FixGoogleLoginPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/patch/FixGoogleLoginPatch.kt
index c1f31787a1..d6916bad08 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/patch/FixGoogleLoginPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/login/fixgoogle/patch/FixGoogleLoginPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.tiktok.misc.login.fixgoogle.annotations.FixGoogleLoginCompatibility
import app.revanced.patches.tiktok.misc.login.fixgoogle.fingerprints.GoogleAuthAvailableFingerprint
@@ -22,7 +20,7 @@ class FixGoogleLoginPatch : BytecodePatch(
GoogleAuthAvailableFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
listOf(
GoogleOneTapAuthAvailableFingerprint,
GoogleAuthAvailableFingerprint
@@ -37,6 +35,5 @@ class FixGoogleLoginPatch : BytecodePatch(
)
}
}
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/fingerprints/AddSettingsEntryFingerprint.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/fingerprints/AddSettingsEntryFingerprint.kt
index ca0e8129e5..25e3aa53bc 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/fingerprints/AddSettingsEntryFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/fingerprints/AddSettingsEntryFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.tiktok.misc.settings.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object AddSettingsEntryFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/patch/SettingsPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/patch/SettingsPatch.kt
index 633cf1e31b..dfa3c2368e 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/patch/SettingsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/settings/patch/SettingsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.tiktok.misc.settings.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,17 +8,15 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.tiktok.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.tiktok.misc.settings.annotations.SettingsCompatibility
import app.revanced.patches.tiktok.misc.settings.fingerprints.*
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.builder.instruction.BuilderInstruction35c
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction35c
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
@Patch
@DependsOn([IntegrationsPatch::class])
@@ -33,12 +31,12 @@ class SettingsPatch : BytecodePatch(
SettingsEntryInfoFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Find the class name of classes which construct a settings entry
val settingsButtonClass = SettingsEntryFingerprint.result?.classDef?.type?.toClassName()
- ?: return SettingsEntryFingerprint.toErrorResult()
+ ?: throw SettingsEntryFingerprint.exception
val settingsButtonInfoClass = SettingsEntryInfoFingerprint.result?.classDef?.type?.toClassName()
- ?: return SettingsEntryInfoFingerprint.toErrorResult()
+ ?: throw SettingsEntryInfoFingerprint.exception
// Create a settings entry for 'revanced settings' and add it to settings fragment
AddSettingsEntryFingerprint.result?.apply {
@@ -66,7 +64,7 @@ class SettingsPatch : BytecodePatch(
"""
)
}
- } ?: return AddSettingsEntryFingerprint.toErrorResult()
+ } ?: throw AddSettingsEntryFingerprint.exception
// Initialize the settings menu once the replaced setting entry is clicked.
AdPersonalizationActivityOnCreateFingerprint.result?.mutableMethod?.apply {
@@ -87,9 +85,7 @@ class SettingsPatch : BytecodePatch(
""",
ExternalLabel("notrevanced", getInstruction(initializeSettingsIndex))
)
- } ?: return AdPersonalizationActivityOnCreateFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw AdPersonalizationActivityOnCreateFingerprint.exception
}
private fun String.toClassName(): String {
diff --git a/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/patch/SpoofSimPatch.kt b/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/patch/SpoofSimPatch.kt
index cc9d2987f6..3227faf11e 100644
--- a/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/patch/SpoofSimPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/patch/SpoofSimPatch.kt
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
@@ -17,10 +15,10 @@ import app.revanced.patches.tiktok.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.tiktok.misc.settings.fingerprints.SettingsStatusLoadFingerprint
import app.revanced.patches.tiktok.misc.settings.patch.SettingsPatch
import app.revanced.patches.tiktok.misc.spoof.sim.annotations.SpoofSimCompatibility
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Patch(false)
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -39,7 +37,7 @@ class SpoofSimPatch : BytecodePatch() {
)
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Find all api call to check sim information
buildMap {
context.classes.forEach { classDef ->
@@ -89,8 +87,6 @@ class SpoofSimPatch : BytecodePatch() {
"invoke-static {}, Lapp/revanced/tiktok/settingsmenu/SettingsStatus;->enableSimSpoof()V"
)
}
-
- return PatchResultSuccess()
}
// Patch Android API and return fake sim information
diff --git a/src/main/kotlin/app/revanced/patches/trakt/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/trakt/patch/UnlockProPatch.kt
index d185635234..0d5254a028 100644
--- a/src/main/kotlin/app/revanced/patches/trakt/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/trakt/patch/UnlockProPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.trakt.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.trakt.annotations.UnlockProCompatibility
import app.revanced.patches.trakt.fingerprints.IsVIPEPFingerprint
@@ -22,20 +20,18 @@ import app.revanced.patches.trakt.fingerprints.RemoteUserFingerprint
class UnlockProPatch : BytecodePatch(
listOf(RemoteUserFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
RemoteUserFingerprint.result?.classDef?.let { remoteUserClass ->
arrayOf(IsVIPFingerprint, IsVIPEPFingerprint).onEach { fingerprint ->
// Resolve both fingerprints on the same class.
if (!fingerprint.resolve(context, remoteUserClass))
- throw fingerprint.toErrorResult()
+ throw fingerprint.exception
}.forEach { fingerprint ->
// Return true for both VIP check methods.
fingerprint.result?.mutableMethod?.addInstructions(0, RETURN_TRUE_INSTRUCTIONS)
- ?: return fingerprint.toErrorResult()
+ ?: throw fingerprint.exception
}
- } ?: return RemoteUserFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw RemoteUserFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/twelvewidgets/unlock/patch/UnlockPaidWidgetsPatch.kt b/src/main/kotlin/app/revanced/patches/twelvewidgets/unlock/patch/UnlockPaidWidgetsPatch.kt
index 715eba4313..665ba9f6ce 100644
--- a/src/main/kotlin/app/revanced/patches/twelvewidgets/unlock/patch/UnlockPaidWidgetsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twelvewidgets/unlock/patch/UnlockPaidWidgetsPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.twelvewidgets.unlock.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.twelvewidgets.unlock.fingerprints.*
@@ -25,7 +23,7 @@ class UnlockPaidWidgetsPatch : BytecodePatch(
WeatherWidgetUnlockFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
listOf(
AgendaDaysWidgetUnlockFingerprint,
CalendarBigWidgetUnlockFingerprint,
@@ -34,7 +32,7 @@ class UnlockPaidWidgetsPatch : BytecodePatch(
ScreentimeSmallWidgetUnlockFingerprint,
WeatherWidgetUnlockFingerprint
).map { fingerprint ->
- fingerprint.result?.mutableMethod ?: return fingerprint.toErrorResult()
+ fingerprint.result?.mutableMethod ?: throw fingerprint.exception
}.forEach { method ->
method.apply {
removeInstructions(4, 3)
@@ -48,7 +46,5 @@ class UnlockPaidWidgetsPatch : BytecodePatch(
)
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/ad/audio/patch/AudioAdsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/ad/audio/patch/AudioAdsPatch.kt
index c9f22061a0..79c8539d17 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/ad/audio/patch/AudioAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/ad/audio/patch/AudioAdsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -26,7 +24,7 @@ import app.revanced.patches.twitch.misc.settings.bytecode.patch.SettingsPatch
class AudioAdsPatch : BytecodePatch(
listOf(AudioAdsPresenterPlayFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Block playAds call
with(AudioAdsPresenterPlayFingerprint.result!!) {
mutableMethod.addInstructionsWithLabels(
@@ -59,7 +57,5 @@ class AudioAdsPatch : BytecodePatch(
default = true,
)
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/ad/embedded/patch/EmbeddedAdsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/ad/embedded/patch/EmbeddedAdsPatch.kt
index 1c61a7adb7..bc586883c9 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/ad/embedded/patch/EmbeddedAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/ad/embedded/patch/EmbeddedAdsPatch.kt
@@ -6,9 +6,7 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.MethodFingerprintExtensions.name
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.ArrayResource
@@ -28,8 +26,8 @@ import app.revanced.patches.twitch.misc.settings.bytecode.patch.SettingsPatch
class EmbeddedAdsPatch : BytecodePatch(
listOf(CreateUsherClientFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
- val result = CreateUsherClientFingerprint.result ?: return PatchResultError("${CreateUsherClientFingerprint.name} not found")
+ override fun execute(context: BytecodeContext) {
+ val result = CreateUsherClientFingerprint.result ?: throw PatchException("${CreateUsherClientFingerprint.name} not found")
// Inject OkHttp3 application interceptor
result.mutableMethod.addInstructions(
@@ -70,7 +68,5 @@ class EmbeddedAdsPatch : BytecodePatch(
SettingsPatch.addString("revanced_embedded_ads_service_unavailable", "%s is unavailable. Ads may show. Try switching to another ad block service in settings.")
SettingsPatch.addString("revanced_embedded_ads_service_failed", "%s server returned an error. Ads may show. Try switching to another ad block service in settings.")
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/ad/video/patch/VideoAdsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/ad/video/patch/VideoAdsPatch.kt
index 9f21b2589c..12ab6178ea 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/ad/video/patch/VideoAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/ad/video/patch/VideoAdsPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.twitch.ad.video.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -36,7 +34,7 @@ class VideoAdsPatch : AbstractAdPatch(
GetReadyToShowAdFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
/* Amazon ads SDK */
context.blockMethods(
"Lcom/amazon/ads/video/player/AdsManagerImpl;",
@@ -97,7 +95,7 @@ class VideoAdsPatch : AbstractAdPatch(
""",
ExternalLabel(skipLabelName, mutableMethod.getInstruction(0))
)
- } ?: return CheckAdEligibilityLambdaFingerprint.toErrorResult()
+ } ?: throw CheckAdEligibilityLambdaFingerprint.exception
GetReadyToShowAdFingerprint.result?.apply {
val adFormatDeclined = "Ltv/twitch/android/shared/display/ads/theatre/StreamDisplayAdsPresenter\$Action\$AdFormatDeclined;"
@@ -112,7 +110,7 @@ class VideoAdsPatch : AbstractAdPatch(
""",
ExternalLabel(skipLabelName, mutableMethod.getInstruction(0))
)
- } ?: return GetReadyToShowAdFingerprint.toErrorResult()
+ } ?: throw GetReadyToShowAdFingerprint.exception
// Spoof showAds JSON field
ContentConfigShowAdsFingerprint.result?.apply {
@@ -123,7 +121,7 @@ class VideoAdsPatch : AbstractAdPatch(
return v0
"""
)
- } ?: return ContentConfigShowAdsFingerprint.toErrorResult()
+ } ?: throw ContentConfigShowAdsFingerprint.exception
SettingsPatch.PreferenceScreen.ADS.CLIENT_SIDE.addPreferences(
SwitchPreference(
@@ -143,7 +141,5 @@ class VideoAdsPatch : AbstractAdPatch(
default = true
)
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/fingerprints/DeletedMessageClickableSpanCtorFingerprint.kt b/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/fingerprints/DeletedMessageClickableSpanCtorFingerprint.kt
index 49e02dd7a1..fbbf32d9d9 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/fingerprints/DeletedMessageClickableSpanCtorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/fingerprints/DeletedMessageClickableSpanCtorFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.twitch.chat.antidelete.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object DeletedMessageClickableSpanCtorFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/patch/ShowDeletedMessagesPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/patch/ShowDeletedMessagesPatch.kt
index 5ba5bfd87c..caea459254 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/patch/ShowDeletedMessagesPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/chat/antidelete/patch/ShowDeletedMessagesPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.twitch.chat.antidelete.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -41,7 +39,7 @@ class ShowDeletedMessagesPatch : BytecodePatch(
if-eqz $register, :no_spoiler
"""
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Spoiler mode: Force set hasModAccess member to true in constructor
DeletedMessageClickableSpanCtorFingerprint.result?.mutableMethod?.apply {
addInstructionsWithLabels(
@@ -53,11 +51,11 @@ class ShowDeletedMessagesPatch : BytecodePatch(
""",
ExternalLabel("no_spoiler", getInstruction(implementation!!.instructions.lastIndex))
)
- } ?: return DeletedMessageClickableSpanCtorFingerprint.toErrorResult()
+ } ?: throw DeletedMessageClickableSpanCtorFingerprint.exception
// Spoiler mode: Disable setHasModAccess setter
SetHasModAccessFingerprint.result?.mutableMethod?.addInstruction(0, "return-void")
- ?: return SetHasModAccessFingerprint.toErrorResult()
+ ?: throw SetHasModAccessFingerprint.exception
// Cross-out mode: Reformat span of deleted message
ChatUtilCreateDeletedSpanFingerprint.result?.mutableMethod?.apply {
@@ -71,7 +69,7 @@ class ShowDeletedMessagesPatch : BytecodePatch(
""",
ExternalLabel("no_reformat", getInstruction(0))
)
- } ?: return ChatUtilCreateDeletedSpanFingerprint.toErrorResult()
+ } ?: throw ChatUtilCreateDeletedSpanFingerprint.exception
SettingsPatch.PreferenceScreen.CHAT.GENERAL.addPreferences(
ListPreference(
@@ -101,7 +99,5 @@ class ShowDeletedMessagesPatch : BytecodePatch(
)
SettingsPatch.addString("revanced_deleted_msg", "message deleted")
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt
index 2947918469..3eeea60585 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.twitch.chat.autoclaim.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -26,7 +24,7 @@ import app.revanced.patches.twitch.misc.settings.bytecode.patch.SettingsPatch
class AutoClaimChannelPointPatch : BytecodePatch(
listOf(CommunityPointsButtonViewDelegateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.CHAT.GENERAL.addPreferences(
SwitchPreference(
"revanced_auto_claim_channel_points",
@@ -62,8 +60,6 @@ class AutoClaimChannelPointPatch : BytecodePatch(
""",
ExternalLabel("auto_claim", getInstruction(lastIndex))
)
- } ?: return CommunityPointsButtonViewDelegateFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CommunityPointsButtonViewDelegateFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/debug/patch/DebugModePatch.kt b/src/main/kotlin/app/revanced/patches/twitch/debug/patch/DebugModePatch.kt
index 6453739f6b..a38e80db8e 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/debug/patch/DebugModePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/debug/patch/DebugModePatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.twitch.debug.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -31,7 +29,7 @@ class DebugModePatch : BytecodePatch(
ShouldShowDebugOptionsFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
listOf(
IsDebugConfigEnabledFingerprint,
IsOmVerificationEnabledFingerprint,
@@ -46,7 +44,7 @@ class DebugModePatch : BytecodePatch(
return v0
"""
)
- } ?: return it.toErrorResult()
+ } ?: throw it.exception
}
SettingsPatch.PreferenceScreen.MISC.OTHER.addPreferences(
@@ -67,7 +65,5 @@ class DebugModePatch : BytecodePatch(
default = false,
)
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/annotations/IntegrationsCompatibility.kt b/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/annotations/IntegrationsCompatibility.kt
deleted file mode 100644
index 40778ece27..0000000000
--- a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/annotations/IntegrationsCompatibility.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package app.revanced.patches.twitch.misc.integrations.annotations
-
-import app.revanced.patcher.annotation.Compatibility
-import app.revanced.patcher.annotation.Package
-
-@Compatibility([Package("tv.twitch.android.app")])
-@Target(AnnotationTarget.CLASS)
-internal annotation class IntegrationsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/fingerprints/InitFingerprint.kt b/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/fingerprints/InitFingerprint.kt
index fbb3997b7e..7eb3dfc2b3 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/fingerprints/InitFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/fingerprints/InitFingerprint.kt
@@ -1,11 +1,9 @@
package app.revanced.patches.twitch.misc.integrations.fingerprints
import app.revanced.patcher.annotation.Name
-import app.revanced.patches.twitch.misc.integrations.annotations.IntegrationsCompatibility
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
@Name("Init fingerprint")
-@IntegrationsCompatibility
object InitFingerprint : IntegrationsFingerprint(
customFingerprint = { methodDef, _ ->
methodDef.definingClass.endsWith("/TwitchApplication;") &&
diff --git a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/patch/IntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/patch/IntegrationsPatch.kt
index 1543c3dde4..21f7da9c88 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/patch/IntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/misc/integrations/patch/IntegrationsPatch.kt
@@ -3,11 +3,9 @@ package app.revanced.patches.twitch.misc.integrations.patch
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch
-import app.revanced.patches.twitch.misc.integrations.annotations.IntegrationsCompatibility
import app.revanced.patches.twitch.misc.integrations.fingerprints.InitFingerprint
@Name("Integrations")
-@IntegrationsCompatibility
@RequiresIntegrations
class IntegrationsPatch : AbstractIntegrationsPatch(
"Lapp/revanced/twitch/utils/ReVancedUtils;",
diff --git a/src/main/kotlin/app/revanced/patches/twitch/misc/settings/bytecode/patch/SettingsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/misc/settings/bytecode/patch/SettingsPatch.kt
index fdcdcc8a97..8aec9bb52d 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/misc/settings/bytecode/patch/SettingsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/misc/settings/bytecode/patch/SettingsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.twitch.misc.settings.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -10,8 +10,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableField.Companion.toMutable
@@ -26,8 +24,8 @@ import app.revanced.patches.twitch.misc.settings.fingerprints.MenuGroupsUpdatedF
import app.revanced.patches.twitch.misc.settings.fingerprints.SettingsActivityOnCreateFingerprint
import app.revanced.patches.twitch.misc.settings.fingerprints.SettingsMenuItemEnumFingerprint
import app.revanced.patches.twitch.misc.settings.resource.patch.SettingsResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.immutable.ImmutableField
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.immutable.ImmutableField
import java.io.Closeable
@Patch
@@ -43,7 +41,7 @@ class SettingsPatch : BytecodePatch(
MenuGroupsOnClickFingerprint
)
), Closeable {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Hook onCreate to handle fragment creation
SettingsActivityOnCreateFingerprint.result?.apply {
val insertIndex = mutableMethod.implementation!!.instructions.size - 2
@@ -57,7 +55,7 @@ class SettingsPatch : BytecodePatch(
""",
ExternalLabel("no_rv_settings_init", mutableMethod.getInstruction(insertIndex))
)
- } ?: return SettingsActivityOnCreateFingerprint.toErrorResult()
+ } ?: throw SettingsActivityOnCreateFingerprint.exception
// Create new menu item for settings menu
SettingsMenuItemEnumFingerprint.result?.apply {
@@ -67,7 +65,7 @@ class SettingsPatch : BytecodePatch(
REVANCED_SETTINGS_MENU_ITEM_TITLE_RES,
REVANCED_SETTINGS_MENU_ITEM_ICON_RES
)
- } ?: return SettingsMenuItemEnumFingerprint.toErrorResult()
+ } ?: throw SettingsMenuItemEnumFingerprint.exception
// Intercept settings menu creation and add new menu item
MenuGroupsUpdatedFingerprint.result?.apply {
@@ -79,7 +77,7 @@ class SettingsPatch : BytecodePatch(
move-result-object p1
"""
)
- } ?: return MenuGroupsUpdatedFingerprint.toErrorResult()
+ } ?: throw MenuGroupsUpdatedFingerprint.exception
// Intercept onclick events for the settings menu
MenuGroupsOnClickFingerprint.result?.apply {
@@ -96,14 +94,12 @@ class SettingsPatch : BytecodePatch(
""",
ExternalLabel("no_rv_settings_onclick", mutableMethod.getInstruction(insertIndex))
)
- } ?: return MenuGroupsOnClickFingerprint.toErrorResult()
+ } ?: throw MenuGroupsOnClickFingerprint.exception
addString("revanced_settings", "ReVanced Settings", false)
addString("revanced_reboot_message", "Twitch needs to restart to apply your changes. Restart now?", false)
addString("revanced_reboot", "Restart", false)
addString("revanced_cancel", "Cancel", false)
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/twitch/misc/settings/fingerprints/MenuGroupsOnClickFingerprint.kt b/src/main/kotlin/app/revanced/patches/twitch/misc/settings/fingerprints/MenuGroupsOnClickFingerprint.kt
index 6bf971dd60..6868ec26e8 100644
--- a/src/main/kotlin/app/revanced/patches/twitch/misc/settings/fingerprints/MenuGroupsOnClickFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/twitch/misc/settings/fingerprints/MenuGroupsOnClickFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.twitch.misc.settings.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object MenuGroupsOnClickFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/patch/DynamicColorPatch.kt b/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/patch/DynamicColorPatch.kt
index 190bd09409..2ba9d29c92 100644
--- a/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/patch/DynamicColorPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/patch/DynamicColorPatch.kt
@@ -3,9 +3,7 @@ package app.revanced.patches.twitter.misc.dynamiccolor.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.twitter.misc.dynamiccolor.annotations.DynamicColorCompatibility
@@ -17,9 +15,9 @@ import java.nio.file.Files
@Description("Replaces the default Twitter Blue with the users Material You palette.")
@DynamicColorCompatibility
class DynamicColorPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
val resDirectory = context["res"]
- if (!resDirectory.isDirectory) return PatchResultError("The res folder can not be found.")
+ if (!resDirectory.isDirectory) throw PatchException("The res folder can not be found.")
val valuesV31Directory = resDirectory.resolve("values-v31")
if (!valuesV31Directory.isDirectory) Files.createDirectories(valuesV31Directory.toPath())
@@ -79,7 +77,5 @@ class DynamicColorPatch : ResourcePatch {
document.getElementsByTagName("resources").item(0).appendChild(colorElement)
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/fingerprints/JsonHookPatchFingerprint.kt b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/fingerprints/JsonHookPatchFingerprint.kt
index 732e7fb6fc..b128967b3b 100644
--- a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/fingerprints/JsonHookPatchFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/fingerprints/JsonHookPatchFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.twitter.misc.hook.json.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object JsonHookPatchFingerprint : MethodFingerprint(
customFingerprint = { methodDef, _ -> methodDef.name == "<clinit>" },
diff --git a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/patch/JsonHookPatch.kt b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/patch/JsonHookPatch.kt
index 18cad27977..f5da4ddae2 100644
--- a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/patch/JsonHookPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/json/patch/JsonHookPatch.kt
@@ -8,9 +8,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patches.twitter.misc.hook.json.fingerprints.JsonHookPatchFingerprint
import app.revanced.patches.twitter.misc.hook.json.fingerprints.JsonInputStreamFingerprint
@@ -24,14 +22,14 @@ import java.io.InvalidClassException
class JsonHookPatch : BytecodePatch(
listOf(LoganSquareFingerprint)
), Closeable {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
JsonHookPatchFingerprint.also {
// Make sure the integrations are present.
val jsonHookPatch = context.findClass { classDef -> classDef.type == JSON_HOOK_PATCH_CLASS_DESCRIPTOR }
- ?: throw PatchResultError("Could not find integrations.")
+ ?: throw PatchException("Could not find integrations.")
if (!it.resolve(context, jsonHookPatch.immutableClass))
- throw PatchResultError("Unexpected integrations.")
+ throw PatchException("Unexpected integrations.")
}.let { hooks = JsonHookPatchHook(it) }
// Conveniently find the type to hook a method in, via a named field.
@@ -42,7 +40,7 @@ class JsonHookPatch : BytecodePatch(
?.type
.let { type ->
context.findClass { it.type == type }?.mutableClass
- } ?: return PatchResultError("Could not find required class.")
+ } ?: throw PatchException("Could not find required class.")
// Hook the methods first parameter.
JsonInputStreamFingerprint
@@ -55,9 +53,7 @@ class JsonHookPatch : BytecodePatch(
invoke-static { p1 }, $JSON_HOOK_PATCH_CLASS_DESCRIPTOR->parseJsonHook(Ljava/io/InputStream;)Ljava/io/InputStream;
move-result-object p1
"""
- ) ?: return PatchResultError("Could not find method to hook.")
-
- return PatchResultSuccess()
+ ) ?: throw PatchException("Could not find method to hook.")
}
/**
diff --git a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/patch/BaseHookPatchPatch.kt b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/patch/BaseHookPatchPatch.kt
index 4b71bc2abb..e115d2c1c0 100644
--- a/src/main/kotlin/app/revanced/patches/twitter/misc/hook/patch/BaseHookPatchPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/twitter/misc/hook/patch/BaseHookPatchPatch.kt
@@ -2,16 +2,9 @@ package app.revanced.patches.twitter.misc.hook.patch
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.twitter.misc.hook.json.patch.JsonHookPatch
abstract class BaseHookPatchPatch(private val hookClassDescriptor: String) : BytecodePatch() {
- override fun execute(context: BytecodeContext) = try {
+ override fun execute(context: BytecodeContext) =
JsonHookPatch.hooks.addHook(JsonHookPatch.Hook(context, hookClassDescriptor))
-
- PatchResultSuccess()
- } catch (ex: Exception) {
- PatchResultError(ex)
- }
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/vsco/misc/pro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/vsco/misc/pro/patch/UnlockProPatch.kt
index a96f53dc4e..5df0ec811b 100644
--- a/src/main/kotlin/app/revanced/patches/vsco/misc/pro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/vsco/misc/pro/patch/UnlockProPatch.kt
@@ -1,12 +1,10 @@
package app.revanced.patches.vsco.misc.pro.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.*
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.vsco.misc.pro.fingerprints.RevCatSubscriptionFingerprint
@@ -18,7 +16,7 @@ import app.revanced.patches.vsco.misc.pro.fingerprints.RevCatSubscriptionFingerp
class UnlockProPatch : BytecodePatch(
listOf(RevCatSubscriptionFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
RevCatSubscriptionFingerprint.result?.mutableMethod?.apply {
// Set isSubscribed to true.
addInstruction(
@@ -27,8 +25,6 @@ class UnlockProPatch : BytecodePatch(
const p1, 0x1
"""
)
- } ?: return RevCatSubscriptionFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw RevCatSubscriptionFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/warnwetter/misc/firebasegetcert/patch/FirebaseGetCertPatch.kt b/src/main/kotlin/app/revanced/patches/warnwetter/misc/firebasegetcert/patch/FirebaseGetCertPatch.kt
index c481655ceb..e0dab0cbc4 100644
--- a/src/main/kotlin/app/revanced/patches/warnwetter/misc/firebasegetcert/patch/FirebaseGetCertPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/warnwetter/misc/firebasegetcert/patch/FirebaseGetCertPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.warnwetter.misc.firebasegetcert.annotations.FirebaseGetCertPatchCompatibility
import app.revanced.patches.warnwetter.misc.firebasegetcert.fingerprints.GetMessagingCertFingerprint
import app.revanced.patches.warnwetter.misc.firebasegetcert.fingerprints.GetReqistrationCertFingerprint
@@ -20,7 +18,7 @@ class FirebaseGetCertPatch : BytecodePatch(
GetMessagingCertFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val spoofedInstruction =
"""
const-string v0, "0799DDF0414D3B3475E88743C91C0676793ED450"
@@ -38,7 +36,5 @@ class FirebaseGetCertPatch : BytecodePatch(
0,
spoofedInstruction
)
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/warnwetter/misc/promocode/patch/PromoCodeUnlockPatch.kt b/src/main/kotlin/app/revanced/patches/warnwetter/misc/promocode/patch/PromoCodeUnlockPatch.kt
index 4d8b84a405..8fda000b75 100644
--- a/src/main/kotlin/app/revanced/patches/warnwetter/misc/promocode/patch/PromoCodeUnlockPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/warnwetter/misc/promocode/patch/PromoCodeUnlockPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.warnwetter.misc.firebasegetcert.patch.FirebaseGetCertPatch
@@ -28,7 +26,7 @@ class PromoCodeUnlockPatch : BytecodePatch(
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = PromoCodeUnlockFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -37,8 +35,6 @@ class PromoCodeUnlockPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
diff --git a/src/main/kotlin/app/revanced/patches/windyapp/misc/unlockpro/patch/UnlockProPatch.kt b/src/main/kotlin/app/revanced/patches/windyapp/misc/unlockpro/patch/UnlockProPatch.kt
index 5827a324b4..bf1b720893 100644
--- a/src/main/kotlin/app/revanced/patches/windyapp/misc/unlockpro/patch/UnlockProPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/windyapp/misc/unlockpro/patch/UnlockProPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.windyapp.misc.unlockpro.annotations.UnlockProCompatibility
import app.revanced.patches.windyapp.misc.unlockpro.fingerprints.CheckProFingerprint
@@ -20,7 +18,7 @@ class UnlockProPatch : BytecodePatch(
CheckProFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val method = CheckProFingerprint.result!!.mutableMethod
method.addInstructions(
0,
@@ -29,7 +27,5 @@ class UnlockProPatch : BytecodePatch(
return v0
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/annotation/HideAdsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/annotation/HideAdsCompatibility.kt
index 5f90c5019e..ee7b198313 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/annotation/HideAdsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/annotation/HideAdsCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.ad.general.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideAdsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/HideAdsPatch.kt
index db9b4045bb..ea2eb2d072 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/bytecode/patch/HideAdsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.misc.fix.verticalscroll.patch.VerticalScrollPatch
@@ -15,8 +13,9 @@ import app.revanced.patches.youtube.ad.general.annotation.HideAdsCompatibility
import app.revanced.patches.youtube.ad.general.resource.patch.HideAdsResourcePatch
import app.revanced.patches.youtube.ad.getpremium.bytecode.patch.HideGetPremiumPatch
import app.revanced.patches.youtube.misc.fix.backtoexitgesture.patch.FixBackToExitGesturePatch
-import org.jf.dexlib2.iface.instruction.formats.Instruction31i
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction31i
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
@Patch
@@ -32,12 +31,12 @@ import org.jf.dexlib2.iface.instruction.formats.Instruction35c
@Description("Removes general ads.")
@HideAdsCompatibility
class HideAdsPatch : BytecodePatch() {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
context.classes.forEach { classDef ->
classDef.methods.forEach { method ->
with(method.implementation) {
this?.instructions?.forEachIndexed { index, instruction ->
- if (instruction.opcode != org.jf.dexlib2.Opcode.CONST)
+ if (instruction.opcode != Opcode.CONST)
return@forEachIndexed
// Instruction to store the id adAttribution into a register
if ((instruction as Instruction31i).wideLiteral != HideAdsResourcePatch.adAttributionId)
@@ -47,7 +46,7 @@ class HideAdsPatch : BytecodePatch() {
// Call to get the view with the id adAttribution
with(instructions.elementAt(insertIndex)) {
- if (opcode != org.jf.dexlib2.Opcode.INVOKE_VIRTUAL)
+ if (opcode != Opcode.INVOKE_VIRTUAL)
return@forEachIndexed
// Hide the view
@@ -66,7 +65,5 @@ class HideAdsPatch : BytecodePatch() {
}
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/HideAdsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/HideAdsResourcePatch.kt
index b021d523ef..7967f66d8f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/HideAdsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/HideAdsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.ad.general.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -22,7 +20,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch.P
)
@HideAdsCompatibility
class HideAdsResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
PreferenceScreen.ADS.addPreferences(
SwitchPreference(
"revanced_hide_general_ads",
@@ -71,8 +69,6 @@ class HideAdsResourcePatch : ResourcePatch {
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
adAttributionId = ResourceMappingPatch.resourceMappings.single { it.name == "ad_attribution" }.id
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/annotations/HideGetPremiumCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/annotations/HideGetPremiumCompatibility.kt
index f17ebada9e..7bbef97659 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/annotations/HideGetPremiumCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/annotations/HideGetPremiumCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.ad.getpremium.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideGetPremiumCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/fingerprints/GetPremiumViewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/fingerprints/GetPremiumViewFingerprint.kt
index 0f32e3e6a4..9f578996f0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/fingerprints/GetPremiumViewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/fingerprints/GetPremiumViewFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.ad.getpremium.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object GetPremiumViewFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PROTECTED or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/patch/HideGetPremiumVideoAdvertisementPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/patch/HideGetPremiumVideoAdvertisementPatch.kt
index 1aed888953..1748b6008a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/patch/HideGetPremiumVideoAdvertisementPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/bytecode/patch/HideGetPremiumVideoAdvertisementPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.ad.getpremium.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
@@ -15,13 +13,13 @@ import app.revanced.patches.youtube.ad.getpremium.annotations.HideGetPremiumComp
import app.revanced.patches.youtube.ad.getpremium.bytecode.fingerprints.GetPremiumViewFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@Name("Hide get premium")
@HideGetPremiumCompatibility
class HideGetPremiumPatch : BytecodePatch(listOf(GetPremiumViewFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.ADS.addPreferences(
SwitchPreference(
"revanced_hide_get_premium",
@@ -64,9 +62,7 @@ class HideGetPremiumPatch : BytecodePatch(listOf(GetPremiumViewFingerprint)) {
"""
)
}
- } ?: return GetPremiumViewFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw GetPremiumViewFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/video/annotations/VideoAdsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/video/annotations/VideoAdsCompatibility.kt
index 9226b6f44e..0ed6826e4a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/video/annotations/VideoAdsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/video/annotations/VideoAdsCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.ad.video.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class VideoAdsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/video/patch/VideoAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/video/patch/VideoAdsPatch.kt
index b26d8b3ba6..1df08ae80e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/video/patch/VideoAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/video/patch/VideoAdsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -28,7 +26,7 @@ class VideoAdsPatch : BytecodePatch(
LoadVideoAdsFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.ADS.addPreferences(
SwitchPreference(
"revanced_hide_video_ads",
@@ -49,7 +47,5 @@ class VideoAdsPatch : BytecodePatch(
""",
ExternalLabel("show_video_ads", loadVideoAdsFingerprintMethod.getInstruction(0))
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/annotation/CopyVideoUrlCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/annotation/CopyVideoUrlCompatibility.kt
index 93058c8969..de373a122e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/annotation/CopyVideoUrlCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/annotation/CopyVideoUrlCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.interaction.copyvideourl.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class CopyVideoUrlCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/bytecode/patch/CopyVideoUrlBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/bytecode/patch/CopyVideoUrlBytecodePatch.kt
index a6db2560ce..ba80eb1adc 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/bytecode/patch/CopyVideoUrlBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/bytecode/patch/CopyVideoUrlBytecodePatch.kt
@@ -4,8 +4,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.interaction.copyvideourl.annotation.CopyVideoUrlCompatibility
@@ -31,14 +29,12 @@ class CopyVideoUrlBytecodePatch : BytecodePatch() {
)
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Initialize buttons and inject visibility control
BUTTONS_DESCRIPTORS.forEach { descriptor ->
PlayerControlsBytecodePatch.initializeControl("$descriptor->initializeButton(Landroid/view/View;)V")
PlayerControlsBytecodePatch.injectVisibilityCheckCall("$descriptor->changeVisibility(Z)V")
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/resource/patch/CopyVideoUrlResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/resource/patch/CopyVideoUrlResourcePatch.kt
index 74565636b0..48a265e8a4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/resource/patch/CopyVideoUrlResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/resource/patch/CopyVideoUrlResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.interaction.copyvideourl.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.PreferenceScreen
@@ -16,7 +14,7 @@ import app.revanced.util.resources.ResourceUtils.mergeStrings
@DependsOn([BottomControlsResourcePatch::class, SettingsPatch::class])
class CopyVideoUrlResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.INTERACTIONS.addPreferences(
PreferenceScreen(
"revanced_copy_video_url_preference_screen",
@@ -49,7 +47,5 @@ class CopyVideoUrlResourcePatch : ResourcePatch {
context.mergeStrings("copyvideourl/host/values/strings.xml")
BottomControlsResourcePatch.addControls("copyvideourl/host/layout/${BottomControlsResourcePatch.TARGET_RESOURCE_NAME}")
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/annotation/ExternalDownloadsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/annotation/ExternalDownloadsCompatibility.kt
index be32f73c86..4259448ade 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/annotation/ExternalDownloadsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/annotation/ExternalDownloadsCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.interaction.downloads.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class ExternalDownloadsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/bytecode/patch/ExternalDownloadsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/bytecode/patch/ExternalDownloadsBytecodePatch.kt
index 1b7a82ac4a..ccc9528118 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/bytecode/patch/ExternalDownloadsBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/bytecode/patch/ExternalDownloadsBytecodePatch.kt
@@ -4,8 +4,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.interaction.downloads.annotation.ExternalDownloadsCompatibility
@@ -23,7 +21,7 @@ class ExternalDownloadsBytecodePatch : BytecodePatch() {
const val BUTTON_DESCRIPTOR = "Lapp/revanced/integrations/videoplayer/ExternalDownloadButton;"
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
/*
initialize the control
*/
@@ -37,7 +35,5 @@ class ExternalDownloadsBytecodePatch : BytecodePatch() {
PlayerControlsBytecodePatch.injectVisibilityCheckCall(
"$BUTTON_DESCRIPTOR->changeVisibility(Z)V")
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/ExternalDownloadsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/ExternalDownloadsResourcePatch.kt
index e50b8cc9fb..d9040f05c1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/ExternalDownloadsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/ExternalDownloadsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.interaction.downloads.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.*
@@ -15,7 +13,7 @@ import app.revanced.util.resources.ResourceUtils.mergeStrings
@DependsOn([BottomControlsResourcePatch::class, SettingsPatch::class])
class ExternalDownloadsResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.INTERACTIONS.addPreferences(
PreferenceScreen(
"revanced_external_downloader_preference_screen",
@@ -30,7 +28,7 @@ class ExternalDownloadsResourcePatch : ResourcePatch {
TextPreference(
"revanced_external_downloader_name",
StringResource("revanced_external_downloader_name_title", "Downloader package name"),
- StringResource("revanced_external_downloader_name_summary", "Package name of your installed external downloader app, such as NewPipe or PowerTube"),
+ StringResource("revanced_external_downloader_name_summary", "Package name of your installed external downloader app, such as NewPipe or Seal"),
InputType.TEXT
)
),
@@ -47,7 +45,5 @@ class ExternalDownloadsResourcePatch : ResourcePatch {
// Add download button node
BottomControlsResourcePatch.addControls("downloads/host/layout/${BottomControlsResourcePatch.TARGET_RESOURCE_NAME}")
-
- return PatchResultSuccess()
}
-}
\ No newline at end of file
+}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/annotation/SeekbarTappingCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/annotation/SeekbarTappingCompatibility.kt
index cd1b8ca071..ba941a7b36 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/annotation/SeekbarTappingCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/annotation/SeekbarTappingCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.interaction.seekbar.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class SeekbarTappingCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/AccessibilityPlayerProgressTimeFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/AccessibilityPlayerProgressTimeFingerprint.kt
deleted file mode 100644
index 8b2f5243f9..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/AccessibilityPlayerProgressTimeFingerprint.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package app.revanced.patches.youtube.interaction.seekbar.fingerprints
-
-import app.revanced.patcher.extensions.or
-import app.revanced.patches.youtube.interaction.seekbar.patch.EnableSeekbarTappingResourcePatch
-import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-
-object AccessibilityPlayerProgressTimeFingerprint : LiteralValueFingerprint(
- returnType = "L",
- accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
- literal = EnableSeekbarTappingResourcePatch.accessibilityPlayerProgressTime
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/OnTouchEventHandlerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/OnTouchEventHandlerFingerprint.kt
new file mode 100644
index 0000000000..98a0d21472
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/OnTouchEventHandlerFingerprint.kt
@@ -0,0 +1,32 @@
+package app.revanced.patches.youtube.interaction.seekbar.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+@FuzzyPatternScanMethod(3)
+object OnTouchEventHandlerFingerprint : MethodFingerprint(
+ returnType = "Z",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.PUBLIC,
+ parameters = listOf("L"),
+ opcodes = listOf(
+ Opcode.INVOKE_VIRTUAL, // oMethodReference
+ Opcode.RETURN,
+ Opcode.IGET_OBJECT,
+ Opcode.IGET_BOOLEAN,
+ Opcode.IF_EQZ,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.RETURN,
+ Opcode.INT_TO_FLOAT,
+ Opcode.INT_TO_FLOAT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.IF_NEZ,
+ Opcode.RETURN,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.INVOKE_VIRTUAL, // pMethodReference
+ ),
+ customFingerprint = { methodDef, _ -> methodDef.name == "onTouchEvent" }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/SeekbarTappingFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/SeekbarTappingFingerprint.kt
index 3c8f3ed0b4..912514741d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/SeekbarTappingFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/fingerprints/SeekbarTappingFingerprint.kt
@@ -2,9 +2,9 @@ package app.revanced.patches.youtube.interaction.seekbar.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.NarrowLiteralInstruction
object SeekbarTappingFingerprint : MethodFingerprint(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingPatch.kt
index 51a6b89ff7..78e27e802c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingPatch.kt
@@ -1,25 +1,25 @@
package app.revanced.patches.youtube.interaction.seekbar.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.youtube.interaction.seekbar.annotation.SeekbarTappingCompatibility
-import app.revanced.patches.youtube.interaction.seekbar.fingerprints.AccessibilityPlayerProgressTimeFingerprint
+import app.revanced.patches.youtube.interaction.seekbar.fingerprints.OnTouchEventHandlerFingerprint
import app.revanced.patches.youtube.interaction.seekbar.fingerprints.SeekbarTappingFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.NarrowLiteralInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Patch
@DependsOn([IntegrationsPatch::class, EnableSeekbarTappingResourcePatch::class])
@@ -27,37 +27,23 @@ import org.jf.dexlib2.iface.instruction.formats.Instruction35c
@Description("Enables tap-to-seek on the seekbar of the video player.")
@SeekbarTappingCompatibility
class EnableSeekbarTappingPatch : BytecodePatch(
- listOf(AccessibilityPlayerProgressTimeFingerprint, SeekbarTappingFingerprint)
+ listOf(OnTouchEventHandlerFingerprint, SeekbarTappingFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Find the required methods to tap the seekbar.
- val seekbarTappingMethods =
- AccessibilityPlayerProgressTimeFingerprint.result?.classDef?.methods?.let { methods ->
- buildMap {
- // find the methods which tap the seekbar
- methods.forEach { method ->
- if (method.implementation == null) return@forEach
+ val seekbarTappingMethods = OnTouchEventHandlerFingerprint.result?.let {
+ val patternScanResult = it.scanResult.patternScanResult!!
- val instructions = method.implementation!!.instructions
+ fun getReference(index: Int) = it.mutableMethod.getInstruction<ReferenceInstruction>(index)
+ .reference as MethodReference
- // The method has more than 7 instructions.
- if (instructions.count() < 7) return@forEach
-
- // The 7th instruction has the opcode CONST_4.
- val instruction = instructions.elementAt(6)
- if (instruction.opcode != Opcode.CONST_4) return@forEach
-
- // the literal for this instruction has to be either 1 or 2.
- val literal = (instruction as NarrowLiteralInstruction).narrowLiteral
-
- // Based on the literal, determine which method is which.
- if (literal == 1) this["P"] = method
- if (literal == 2) this["O"] = method
- }
- }
+ buildMap {
+ put("O", getReference(patternScanResult.endIndex))
+ put("N", getReference(patternScanResult.startIndex))
}
+ }
- seekbarTappingMethods ?: return AccessibilityPlayerProgressTimeFingerprint.toErrorResult()
+ seekbarTappingMethods ?: throw OnTouchEventHandlerFingerprint.exception
SeekbarTappingFingerprint.result?.let {
val insertIndex = it.scanResult.patternScanResult!!.endIndex - 1
@@ -68,11 +54,11 @@ class EnableSeekbarTappingPatch : BytecodePatch(
val freeRegister = 0
val xAxisRegister = 2
- val pMethod = seekbarTappingMethods["P"]!!
val oMethod = seekbarTappingMethods["O"]!!
+ val nMethod = seekbarTappingMethods["N"]!!
- fun Method.toInvokeInstructionString() =
- "invoke-virtual { v$thisInstanceRegister, v$xAxisRegister }, $definingClass->$name(I)V"
+ fun MethodReference.toInvokeInstructionString() =
+ "invoke-virtual { v$thisInstanceRegister, v$xAxisRegister }, $this"
addInstructionsWithLabels(
insertIndex,
@@ -81,13 +67,11 @@ class EnableSeekbarTappingPatch : BytecodePatch(
move-result v$freeRegister
if-eqz v$freeRegister, :disabled
${oMethod.toInvokeInstructionString()}
- ${pMethod.toInvokeInstructionString()}
+ ${nMethod.toInvokeInstructionString()}
""",
ExternalLabel("disabled", getInstruction(insertIndex))
)
}
- } ?: return SeekbarTappingFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw SeekbarTappingFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingResourcePatch.kt
index 29c62c377d..31e72ca220 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/patch/EnableSeekbarTappingResourcePatch.kt
@@ -1,19 +1,15 @@
package app.revanced.patches.youtube.interaction.seekbar.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
-import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
+@DependsOn([SettingsPatch::class])
class EnableSeekbarTappingResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.INTERACTIONS.addPreferences(
SwitchPreference(
"revanced_seekbar_tapping",
@@ -22,15 +18,5 @@ class EnableSeekbarTappingResourcePatch : ResourcePatch {
StringResource("revanced_seekbar_tapping_summary_off", "Seekbar tapping is disabled")
)
)
-
- accessibilityPlayerProgressTime = ResourceMappingPatch.resourceMappings.find {
- it.name == "accessibility_player_progress_time"
- }?.id ?: return PatchResultError("Failed to find required resource")
-
- return PatchResultSuccess()
- }
-
- internal companion object {
- var accessibilityPlayerProgressTime = -1L
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/annotation/SwipeControlsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/annotation/SwipeControlsCompatibility.kt
index ad2ec1770d..4ca221ebdb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/annotation/SwipeControlsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/annotation/SwipeControlsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.interaction.swipecontrols.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class SwipeControlsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/fingerprints/SwipeControlsHostActivityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/fingerprints/SwipeControlsHostActivityFingerprint.kt
index ad6de5cc3b..c2943eb527 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/fingerprints/SwipeControlsHostActivityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/fingerprints/SwipeControlsHostActivityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.interaction.swipecontrols.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object SwipeControlsHostActivityFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/bytecode/SwipeControlsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/bytecode/SwipeControlsBytecodePatch.kt
index 198fe8c479..16a27bdf78 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/bytecode/SwipeControlsBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/bytecode/SwipeControlsBytecodePatch.kt
@@ -1,15 +1,13 @@
package app.revanced.patches.youtube.interaction.swipecontrols.patch.bytecode
import app.revanced.extensions.transformMethods
+import app.revanced.extensions.traverseClassHierarchy
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
-import app.revanced.patcher.util.TypeUtil.traverseClassHierarchy
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
import app.revanced.patches.shared.fingerprints.WatchWhileActivityFingerprint
import app.revanced.patches.youtube.interaction.swipecontrols.annotation.SwipeControlsCompatibility
@@ -17,8 +15,8 @@ import app.revanced.patches.youtube.interaction.swipecontrols.fingerprints.Swipe
import app.revanced.patches.youtube.interaction.swipecontrols.patch.resource.SwipeControlsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.immutable.ImmutableMethod
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
@Patch
@Name("Swipe controls")
@@ -37,7 +35,7 @@ class SwipeControlsBytecodePatch : BytecodePatch(
SwipeControlsHostActivityFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
val wrapperClass = SwipeControlsHostActivityFingerprint.result!!.mutableClass
val targetClass = WatchWhileActivityFingerprint.result!!.mutableClass
@@ -61,6 +59,5 @@ class SwipeControlsBytecodePatch : BytecodePatch(
).toMutable()
}
}
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/resource/SwipeControlsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/resource/SwipeControlsResourcePatch.kt
index 5d67f72152..014397898f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/resource/SwipeControlsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/patch/resource/SwipeControlsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.interaction.swipecontrols.patch.resource
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.*
@@ -12,7 +10,7 @@ import app.revanced.util.resources.ResourceUtils.copyResources
@DependsOn([SettingsPatch::class])
class SwipeControlsResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.INTERACTIONS.addPreferences(
PreferenceScreen(
"revanced_swipe_controls_preference_screen",
@@ -102,6 +100,5 @@ class SwipeControlsResourcePatch : ResourcePatch {
"ic_sc_volume_normal.xml"
)
)
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/annotations/AutoCaptionsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/annotations/AutoCaptionsCompatibility.kt
index 81fb60d327..a0f3939825 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/annotations/AutoCaptionsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/annotations/AutoCaptionsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.autocaptions.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class AutoCaptionsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/StartVideoInformerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/StartVideoInformerFingerprint.kt
index 1b1cd10883..31fab1f21a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/StartVideoInformerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/StartVideoInformerFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.autocaptions.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object StartVideoInformerFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf("L", "L", "L", "L"), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleButtonControllerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleButtonControllerFingerprint.kt
index 48d98f4f39..b3b0462b2d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleButtonControllerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleButtonControllerFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.autocaptions.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SubtitleButtonControllerFingerprint : MethodFingerprint(
returnType = "V",
@@ -19,8 +19,5 @@ object SubtitleButtonControllerFingerprint : MethodFingerprint(
Opcode.CONST,
Opcode.INVOKE_VIRTUAL,
Opcode.IGET_OBJECT,
- ),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("SubtitleButtonController;")
- }
+ )
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleTrackFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleTrackFingerprint.kt
index 66ac4f6172..4eae5dbca2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleTrackFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/fingerprints/SubtitleTrackFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.autocaptions.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SubtitleTrackFingerprint : MethodFingerprint(
"Z", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/patch/AutoCaptionsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/patch/AutoCaptionsPatch.kt
index ae4048adae..d7c40a8097 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/patch/AutoCaptionsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/patch/AutoCaptionsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -29,7 +27,7 @@ class AutoCaptionsPatch : BytecodePatch(
StartVideoInformerFingerprint, SubtitleButtonControllerFingerprint, SubtitleTrackFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_auto_captions",
@@ -72,7 +70,5 @@ class AutoCaptionsPatch : BytecodePatch(
nop
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/header/patch/PremiumHeadingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/header/patch/PremiumHeadingPatch.kt
index 74c52a4bc8..c5f408d2ac 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/header/patch/PremiumHeadingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/header/patch/PremiumHeadingPatch.kt
@@ -3,9 +3,7 @@ package app.revanced.patches.youtube.layout.branding.header.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.branding.header.annotations.PremiumHeadingCompatibility
@@ -18,9 +16,9 @@ import kotlin.io.path.exists
@Description("Shows premium branding on the home screen.")
@PremiumHeadingCompatibility
class PremiumHeadingPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
val resDirectory = context["res"]
- if (!resDirectory.isDirectory) return PatchResultError("The res folder can not be found.")
+ if (!resDirectory.isDirectory) throw PatchException("The res folder can not be found.")
val (original, replacement) = "yt_premium_wordmark_header" to "yt_wordmark_header"
val modes = arrayOf("light", "dark")
@@ -32,7 +30,7 @@ class PremiumHeadingPatch : ResourcePatch {
val toPath = headingDirectory.resolve("${replacement}_$mode.png").toPath()
if (!fromPath.exists())
- return PatchResultError("The file $fromPath does not exist in the resources. Therefore, this patch can not succeed.")
+ throw PatchException("The file $fromPath does not exist in the resources. Therefore, this patch can not succeed.")
Files.copy(
fromPath,
toPath,
@@ -40,7 +38,5 @@ class PremiumHeadingPatch : ResourcePatch {
)
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/patch/CustomBrandingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/patch/CustomBrandingPatch.kt
index cc01995ae5..b4a69d2a4f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/patch/CustomBrandingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/branding/icon/patch/CustomBrandingPatch.kt
@@ -3,7 +3,9 @@ package app.revanced.patches.youtube.layout.branding.icon.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.*
+import app.revanced.patcher.patch.OptionsContainer
+import app.revanced.patcher.patch.PatchOption
+import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.branding.icon.annotations.CustomBrandingCompatibility
import app.revanced.util.resources.ResourceUtils
@@ -11,12 +13,12 @@ import app.revanced.util.resources.ResourceUtils.copyResources
import java.io.File
import java.nio.file.Files
-@Patch
+@Patch(false)
@Name("Custom branding")
@Description("Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).")
@CustomBrandingCompatibility
class CustomBrandingPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
fun copyResources(resourceGroups: List<ResourceUtils.ResourceGroup>) {
iconPath?.let { iconPathString ->
val iconPath = File(iconPathString)
@@ -62,8 +64,6 @@ class CustomBrandingPatch : ResourcePatch {
"android:label=\"$appName"
)
)
-
- return PatchResultSuccess()
}
companion object : OptionsContainer() {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/annotations/HideButtonsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/annotations/HideButtonsCompatibility.kt
index 1c521c5475..718e0b5620 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/annotations/HideButtonsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/annotations/HideButtonsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.action.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideButtonsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/patch/HideButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/patch/HideButtonsPatch.kt
index 855d4ecc8b..04eceb0406 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/patch/HideButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/patch/HideButtonsPatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.action.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
@@ -22,7 +20,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@Description("Adds the options to hide action buttons under a video.")
@HideButtonsCompatibility
class HideButtonsPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
PreferenceScreen(
"revanced_hide_buttons_preference_screen",
@@ -34,6 +32,30 @@ class HideButtonsPatch : ResourcePatch {
StringResource("revanced_hide_like_dislike_button_summary_on", "Like and dislike buttons are hidden"),
StringResource("revanced_hide_like_dislike_button_summary_off", "Like and dislike buttons are shown")
),
+ SwitchPreference(
+ "revanced_hide_live_chat_button",
+ StringResource("revanced_hide_live_chat_button_title", "Hide live chat button"),
+ StringResource("revanced_hide_live_chat_button_summary_on", "Live chat button is hidden"),
+ StringResource("revanced_hide_live_chat_button_summary_off", "Live chat button is shown")
+ ),
+ SwitchPreference(
+ "revanced_hide_share_button",
+ StringResource("revanced_hide_share_button_title", "Hide share button"),
+ StringResource("revanced_hide_share_button_summary_on", "Share button is hidden"),
+ StringResource("revanced_hide_share_button_summary_off", "Share button is shown")
+ ),
+ SwitchPreference(
+ "revanced_hide_report_button",
+ StringResource("revanced_hide_report_button_title", "Hide report button"),
+ StringResource("revanced_hide_report_button_summary_on", "Report button is hidden"),
+ StringResource("revanced_hide_report_button_summary_off", "Report button is shown")
+ ),
+ SwitchPreference(
+ "revanced_hide_remix_button",
+ StringResource("revanced_hide_remix_button_title", "Hide remix button"),
+ StringResource("revanced_hide_remix_button_summary_on", "Remix button is hidden"),
+ StringResource("revanced_hide_remix_button_summary_off", "Remix button is shown")
+ ),
SwitchPreference(
"revanced_hide_download_button",
StringResource("revanced_hide_download_button_title", "Hide download button"),
@@ -41,24 +63,28 @@ class HideButtonsPatch : ResourcePatch {
StringResource("revanced_hide_download_button_summary_off", "Download button is shown")
),
SwitchPreference(
- "revanced_hide_playlist_button",
- StringResource("revanced_hide_playlist_button_title", "Hide playlist button"),
- StringResource("revanced_hide_playlist_button_summary_on", "Playlist button is hidden"),
- StringResource("revanced_hide_playlist_button_summary_off", "Playlist button is shown")
+ "revanced_hide_thanks_button",
+ StringResource("revanced_hide_thanks_button_title", "Hide thanks button"),
+ StringResource("revanced_hide_thanks_button_summary_on", "Thanks button is hidden"),
+ StringResource("revanced_hide_thanks_button_summary_off", "Thanks button is shown")
),
SwitchPreference(
"revanced_hide_clip_button",
StringResource("revanced_hide_clip_button_title", "Hide clip button"),
StringResource("revanced_hide_clip_button_summary_on", "Clip button is hidden"),
StringResource("revanced_hide_clip_button_summary_off", "Clip button is shown"),
- StringResource("revanced_hide_clip_button_user_dialog_message",
- "Hiding the clip button might not work reliably. In the case it does not work, it can only be hidden by enabling \\'Hide all other action buttons\\'")
),
SwitchPreference(
- "revanced_hide_action_buttons",
- StringResource("revanced_hide_action_buttons_title", "Hide all other action buttons"),
- StringResource("revanced_hide_action_buttons_summary_on", "Share, remix, thanks, shop, live chat buttons are hidden"),
- StringResource("revanced_hide_action_buttons_summary_off", "Share, remix, thanks, shop, live chat buttons are shown")
+ "revanced_hide_playlist_button",
+ StringResource("revanced_hide_playlist_button_title", "Hide save to playlist button"),
+ StringResource("revanced_hide_playlist_button_summary_on", "Save button is hidden"),
+ StringResource("revanced_hide_playlist_button_summary_off", "Save button is shown")
+ ),
+ SwitchPreference(
+ "revanced_hide_shop_button",
+ StringResource("revanced_hide_shop_button_title", "Hide shop button"),
+ StringResource("revanced_hide_shop_button_summary_on", "Shop button is hidden"),
+ StringResource("revanced_hide_shop_button_summary_off", "Shop button is shown")
)
),
StringResource("revanced_hide_buttons_preference_screen_summary", "Hide or show buttons under videos")
@@ -66,8 +92,6 @@ class HideButtonsPatch : ResourcePatch {
)
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/annotations/AutoplayButtonCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/annotations/AutoplayButtonCompatibility.kt
index bb95ff0381..1c3bcd4b5e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/annotations/AutoplayButtonCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/annotations/AutoplayButtonCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.autoplay.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class AutoplayButtonCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/fingerprints/LayoutConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/fingerprints/LayoutConstructorFingerprint.kt
deleted file mode 100644
index 92d33ce317..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/fingerprints/LayoutConstructorFingerprint.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package app.revanced.patches.youtube.layout.buttons.autoplay.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-
-object LayoutConstructorFingerprint : MethodFingerprint(
- strings = listOf("1.0x"),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("YouTubeControlsOverlay;")
- }
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/patch/HideAutoplayButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/patch/HideAutoplayButtonPatch.kt
index 39ae7b3c52..8857d85446 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/patch/HideAutoplayButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/patch/HideAutoplayButtonPatch.kt
@@ -1,15 +1,13 @@
package app.revanced.patches.youtube.layout.buttons.autoplay.patch
import app.revanced.extensions.findIndexForIdResource
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -17,13 +15,13 @@ import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.layout.buttons.autoplay.annotations.AutoplayButtonCompatibility
-import app.revanced.patches.youtube.layout.buttons.autoplay.fingerprints.LayoutConstructorFingerprint
+import app.revanced.patches.shared.fingerprints.LayoutConstructorFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.Instruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class, ResourceMappingPatch::class])
@@ -33,7 +31,7 @@ import org.jf.dexlib2.iface.reference.MethodReference
class HideAutoplayButtonPatch : BytecodePatch(
listOf(LayoutConstructorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_autoplay_button",
@@ -70,8 +68,6 @@ class HideAutoplayButtonPatch : BytecodePatch(
""",
ExternalLabel("hidden", jumpInstruction)
)
- } ?: return LayoutConstructorFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw LayoutConstructorFingerprint.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/annotations/HideCaptionsButtonCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/annotations/HideCaptionsButtonCompatibility.kt
index fc1e112a0a..efa5572820 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/annotations/HideCaptionsButtonCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/annotations/HideCaptionsButtonCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.captions.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideCaptionsButtonCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/patch/HideCaptionsButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/patch/HideCaptionsButtonPatch.kt
index 62452075d5..71d4a81f7d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/patch/HideCaptionsButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/patch/HideCaptionsButtonPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -15,7 +13,7 @@ import app.revanced.patches.youtube.layout.autocaptions.fingerprints.SubtitleBut
import app.revanced.patches.youtube.layout.buttons.captions.annotations.HideCaptionsButtonCompatibility
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -25,7 +23,7 @@ import org.jf.dexlib2.Opcode
class HideCaptionsButtonPatch : BytecodePatch(listOf(
SubtitleButtonControllerFingerprint,
)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_captions_button",
@@ -38,17 +36,15 @@ class HideCaptionsButtonPatch : BytecodePatch(listOf(
val subtitleButtonControllerMethod = SubtitleButtonControllerFingerprint.result!!.mutableMethod
// Due to previously applied patches, scanResult index cannot be used in this context
- val igetBooleanIndex = subtitleButtonControllerMethod.implementation!!.instructions.indexOfFirst {
+ val insertIndex = subtitleButtonControllerMethod.implementation!!.instructions.indexOfFirst {
it.opcode == Opcode.IGET_BOOLEAN
- }
+ } + 1
subtitleButtonControllerMethod.addInstruction(
- igetBooleanIndex + 1,
+ insertIndex,
"""
invoke-static {v0}, Lapp/revanced/integrations/patches/HideCaptionsButtonPatch;->hideCaptionsButton(Landroid/widget/ImageView;)V
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/cast/patch/HideCastButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/cast/patch/HideCastButtonPatch.kt
index 966dfd7df0..74bc155b5f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/cast/patch/HideCastButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/cast/patch/HideCastButtonPatch.kt
@@ -5,9 +5,7 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -22,7 +20,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@Description("Hides the cast button in the video player.")
@CastButtonCompatibility
class HideCastButtonPatch : BytecodePatch() {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_cast_button",
@@ -33,7 +31,7 @@ class HideCastButtonPatch : BytecodePatch() {
)
val buttonClass = context.findClass("MediaRouteButton")
- ?: return PatchResultError("MediaRouteButton class not found.")
+ ?: throw PatchException("MediaRouteButton class not found.")
buttonClass.mutableClass.methods.find { it.name == "setVisibility" }?.apply {
addInstructions(
@@ -43,8 +41,6 @@ class HideCastButtonPatch : BytecodePatch() {
move-result p1
"""
)
- } ?: return PatchResultError("setVisibility method not found.")
-
- return PatchResultSuccess()
+ } ?: throw PatchException("setVisibility method not found.")
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/annotations/NavigationButtonsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/annotations/NavigationButtonsCompatibility.kt
index 393ac1366b..7afcbdcaac 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/annotations/NavigationButtonsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/annotations/NavigationButtonsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.navigation.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class NavigationButtonsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/InitializeButtonsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/InitializeButtonsFingerprint.kt
index 1b22411535..4d435d9436 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/InitializeButtonsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/InitializeButtonsFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.buttons.navigation.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.buttons.navigation.patch.ResolvePivotBarFingerprintsPatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object InitializeButtonsFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarButtonsViewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarButtonsViewFingerprint.kt
index 82fd7e1c63..fd16748f1a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarButtonsViewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarButtonsViewFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.buttons.navigation.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object PivotBarButtonsViewFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarConstructorFingerprint.kt
index 4500faf65e..6ada7f7bc2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarConstructorFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.buttons.navigation.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object PivotBarConstructorFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarCreateButtonViewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarCreateButtonViewFingerprint.kt
index 21635ef0f2..af06e00518 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarCreateButtonViewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarCreateButtonViewFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.buttons.navigation.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object PivotBarCreateButtonViewFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarEnumFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarEnumFingerprint.kt
index af6bb087ef..f07f618294 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarEnumFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/fingerprints/PivotBarEnumFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.buttons.navigation.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object PivotBarEnumFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/NavigationButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/NavigationButtonsPatch.kt
index ef8fd1fa0e..fc708d6ef7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/NavigationButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/NavigationButtonsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.layout.buttons.navigation.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.PreferenceScreen
@@ -21,8 +19,8 @@ import app.revanced.patches.youtube.layout.buttons.navigation.utils.InjectionUti
import app.revanced.patches.youtube.layout.buttons.navigation.utils.InjectionUtils.injectHook
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn(
@@ -36,7 +34,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@Description("Adds options to hide or change navigation buttons.")
@NavigationButtonsCompatibility
class NavigationButtonsPatch : BytecodePatch(listOf(AddCreateButtonViewFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
PreferenceScreen(
"revanced_navigation_buttons_preference_screen",
@@ -103,7 +101,7 @@ class NavigationButtonsPatch : BytecodePatch(listOf(AddCreateButtonViewFingerpri
initializeButtonsResult.mutableClass
)
)
- return it.toErrorResult()
+ throw it.exception
}
.map { it.result!!.scanResult.patternScanResult!! }
@@ -152,7 +150,7 @@ class NavigationButtonsPatch : BytecodePatch(listOf(AddCreateButtonViewFingerpri
"""
)
}
- } ?: return AddCreateButtonViewFingerprint.toErrorResult()
+ } ?: throw AddCreateButtonViewFingerprint.exception
/*
* Resolve fingerprints
@@ -160,7 +158,7 @@ class NavigationButtonsPatch : BytecodePatch(listOf(AddCreateButtonViewFingerpri
InitializeButtonsFingerprint.result!!.let {
if (!PivotBarCreateButtonViewFingerprint.resolve(context, it.mutableMethod, it.mutableClass))
- return PivotBarCreateButtonViewFingerprint.toErrorResult()
+ throw PivotBarCreateButtonViewFingerprint.exception
}
PivotBarCreateButtonViewFingerprint.result!!.apply {
@@ -180,7 +178,6 @@ class NavigationButtonsPatch : BytecodePatch(listOf(AddCreateButtonViewFingerpri
mutableMethod.injectHook(hook, insertIndex)
}
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/ResolvePivotBarFingerprintsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/ResolvePivotBarFingerprintsPatch.kt
index 74f89732c9..eb7bfd40e3 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/ResolvePivotBarFingerprintsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/patch/ResolvePivotBarFingerprintsPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.layout.buttons.navigation.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.youtube.layout.buttons.navigation.fingerprints.InitializeButtonsFingerprint
@@ -18,10 +16,10 @@ import app.revanced.patches.youtube.layout.buttons.navigation.fingerprints.Pivot
class ResolvePivotBarFingerprintsPatch : BytecodePatch(
listOf(PivotBarConstructorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// imageOnlyTabResourceId is used in InitializeButtonsFingerprint fingerprint
ResourceMappingPatch.resourceMappings.find { it.type == "layout" && it.name == "image_only_tab" }
- ?.let { imageOnlyTabResourceId = it.id } ?: return PatchResultError("Failed to find resource")
+ ?.let { imageOnlyTabResourceId = it.id } ?: throw PatchException("Failed to find resource")
PivotBarConstructorFingerprint.result?.let {
// Resolve InitializeButtonsFingerprint on the class of the method
@@ -30,9 +28,8 @@ class ResolvePivotBarFingerprintsPatch : BytecodePatch(
context,
it.classDef
)
- ) return InitializeButtonsFingerprint.toErrorResult()
- } ?: return PivotBarConstructorFingerprint.toErrorResult()
- return PatchResultSuccess()
+ ) throw InitializeButtonsFingerprint.exception
+ } ?: throw PivotBarConstructorFingerprint.exception
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/utils/InjectionUtils.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/utils/InjectionUtils.kt
index 4b0c9f4ca7..f97305c12c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/utils/InjectionUtils.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/utils/InjectionUtils.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.buttons.navigation.utils
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
-import org.jf.dexlib2.Opcode.MOVE_RESULT_OBJECT
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.Opcode.MOVE_RESULT_OBJECT
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
internal object InjectionUtils {
const val REGISTER_TEMPLATE_REPLACEMENT: String = "REGISTER_INDEX"
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/annotations/HidePlayerButtonsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/annotations/HidePlayerButtonsCompatibility.kt
index 15330096ca..e1a7726d2b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/annotations/HidePlayerButtonsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/annotations/HidePlayerButtonsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.buttons.player.hide.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HidePlayerButtonsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/fingerprints/PlayerControlsVisibilityModelFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/fingerprints/PlayerControlsVisibilityModelFingerprint.kt
index bf9d48e44d..fd44dc9429 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/fingerprints/PlayerControlsVisibilityModelFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/fingerprints/PlayerControlsVisibilityModelFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.buttons.player.hide.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object PlayerControlsVisibilityModelFingerprint : MethodFingerprint(
opcodes = listOf(Opcode.INVOKE_DIRECT_RANGE),
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/patch/HidePlayerButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/patch/HidePlayerButtonsPatch.kt
index 5c90712952..b719359bfa 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/patch/HidePlayerButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/patch/HidePlayerButtonsPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.youtube.layout.buttons.player.hide.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -17,7 +15,7 @@ import app.revanced.patches.youtube.layout.buttons.player.hide.annotations.HideP
import app.revanced.patches.youtube.layout.buttons.player.hide.fingerprints.PlayerControlsVisibilityModelFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.formats.Instruction3rc
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction3rc
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -32,7 +30,7 @@ class HidePlayerButtonsPatch : BytecodePatch(
const val HAS_PREVIOUS = 6
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_player_buttons",
@@ -69,7 +67,6 @@ class HidePlayerButtonsPatch : BytecodePatch(
move-result v$hasPreviousParameterRegister
"""
)
- } ?: return PlayerControlsVisibilityModelFingerprint.toErrorResult()
- return PatchResultSuccess()
+ } ?: throw PlayerControlsVisibilityModelFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/annotations/AlbumCardsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/annotations/AlbumCardsCompatibility.kt
index 889695eaab..cbb7db662a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/annotations/AlbumCardsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/annotations/AlbumCardsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.albumcards.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class AlbumCardsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/fingerprints/AlbumCardsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/fingerprints/AlbumCardsFingerprint.kt
index 6d8cad5c35..c7c808e2ea 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/fingerprints/AlbumCardsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/fingerprints/AlbumCardsFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.albumcards.bytecode.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.albumcards.resource.patch.AlbumCardsResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object AlbumCardsFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/patch/AlbumCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/patch/AlbumCardsPatch.kt
index e4322b9e1b..3b699b36fe 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/patch/AlbumCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/bytecode/patch/AlbumCardsPatch.kt
@@ -1,21 +1,19 @@
package app.revanced.patches.youtube.layout.hide.albumcards.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.albumcards.annotations.AlbumCardsCompatibility
import app.revanced.patches.youtube.layout.hide.albumcards.bytecode.fingerprints.AlbumCardsFingerprint
import app.revanced.patches.youtube.layout.hide.albumcards.resource.patch.AlbumCardsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, AlbumCardsResourcePatch::class])
@@ -27,7 +25,7 @@ class AlbumCardsPatch : BytecodePatch(
AlbumCardsFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
AlbumCardsFingerprint.result?.let {
it.mutableMethod.apply {
val checkCastAnchorIndex = it.scanResult.patternScanResult!!.endIndex
@@ -43,8 +41,6 @@ class AlbumCardsPatch : BytecodePatch(
"hideAlbumCard(Landroid/view/View;)V"
)
}
- } ?: return AlbumCardsFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw AlbumCardsFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/resource/patch/AlbumCardsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/resource/patch/AlbumCardsResourcePatch.kt
index 3c3359f3eb..2e22a4c5c6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/resource/patch/AlbumCardsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/resource/patch/AlbumCardsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.albumcards.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -16,7 +14,7 @@ class AlbumCardsResourcePatch : ResourcePatch {
internal var albumCardId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_album_cards",
@@ -29,7 +27,5 @@ class AlbumCardsResourcePatch : ResourcePatch {
albumCardId = ResourceMappingPatch.resourceMappings.single {
it.type == "layout" && it.name == "album_card"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/annotations/BreakingNewsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/annotations/BreakingNewsCompatibility.kt
index 635820ab5b..47cee050b5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/annotations/BreakingNewsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/annotations/BreakingNewsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.breakingnews.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class BreakingNewsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/fingerprints/BreakingNewsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/fingerprints/BreakingNewsFingerprint.kt
index 16ae7019d4..2e5592d8c8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/fingerprints/BreakingNewsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/fingerprints/BreakingNewsFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.breakingnews.bytecode.fingerpri
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.breakingnews.resource.patch.BreakingNewsResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object BreakingNewsFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/patch/BreakingNewsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/patch/BreakingNewsPatch.kt
index c9ababc1f7..ee09bed14e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/patch/BreakingNewsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/bytecode/patch/BreakingNewsPatch.kt
@@ -1,21 +1,19 @@
package app.revanced.patches.youtube.layout.hide.breakingnews.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.breakingnews.annotations.BreakingNewsCompatibility
import app.revanced.patches.youtube.layout.hide.breakingnews.bytecode.fingerprints.BreakingNewsFingerprint
import app.revanced.patches.youtube.layout.hide.breakingnews.resource.patch.BreakingNewsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, BreakingNewsResourcePatch::class])
@@ -25,7 +23,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
class BreakingNewsPatch : BytecodePatch(
listOf(BreakingNewsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
BreakingNewsFingerprint.result?.let {
val insertIndex = it.scanResult.patternScanResult!!.endIndex - 1
val moveResultIndex = insertIndex - 1
@@ -44,9 +42,7 @@ class BreakingNewsPatch : BytecodePatch(
)
}
- } ?: return BreakingNewsFingerprint.toErrorResult()
+ } ?: throw BreakingNewsFingerprint.exception
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/resource/patch/BreakingNewsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/resource/patch/BreakingNewsResourcePatch.kt
index 9a9235a6f8..2a679a9658 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/resource/patch/BreakingNewsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/resource/patch/BreakingNewsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.breakingnews.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -16,7 +14,7 @@ class BreakingNewsResourcePatch : ResourcePatch {
internal var horizontalCardListId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_breaking_news",
@@ -29,7 +27,5 @@ class BreakingNewsResourcePatch : ResourcePatch {
horizontalCardListId = ResourceMappingPatch.resourceMappings.single {
it.type == "layout" && it.name == "horizontal_card_list"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/annotations/HideCommentsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/annotations/HideCommentsCompatibility.kt
index 6d8b3b3e3d..3186af1d0f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/annotations/HideCommentsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/annotations/HideCommentsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.comments.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideCommentsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/patch/CommentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/patch/CommentsPatch.kt
index cbee512211..02054c4b29 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/patch/CommentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/patch/CommentsPatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.youtube.layout.hide.comments.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
@@ -21,7 +19,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@HideCommentsCompatibility
@DependsOn([SettingsPatch::class, LithoFilterPatch::class])
class CommentsPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
@@ -45,8 +43,6 @@ class CommentsPatch : ResourcePatch {
StringResource("revanced_comments_preference_screen_summary", "Manage the visibility of comments section components")
)
)
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/annotations/CrowdfundingBoxCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/annotations/CrowdfundingBoxCompatibility.kt
index fe6894aa3a..0978625f63 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/annotations/CrowdfundingBoxCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/annotations/CrowdfundingBoxCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.crowdfundingbox.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class CrowdfundingBoxCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/fingerprints/CrowdfundingBoxFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/fingerprints/CrowdfundingBoxFingerprint.kt
index 30dc121c3d..946b00beff 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/fingerprints/CrowdfundingBoxFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/fingerprints/CrowdfundingBoxFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.crowdfundingbox.bytecode.finger
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.crowdfundingbox.resource.patch.CrowdfundingBoxResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object CrowdfundingBoxFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/patch/CrowdfundingBoxPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/patch/CrowdfundingBoxPatch.kt
index df3d6d1fd4..1ebdb0eb67 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/patch/CrowdfundingBoxPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/bytecode/patch/CrowdfundingBoxPatch.kt
@@ -1,21 +1,19 @@
package app.revanced.patches.youtube.layout.hide.crowdfundingbox.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.crowdfundingbox.annotations.CrowdfundingBoxCompatibility
import app.revanced.patches.youtube.layout.hide.crowdfundingbox.bytecode.fingerprints.CrowdfundingBoxFingerprint
import app.revanced.patches.youtube.layout.hide.crowdfundingbox.resource.patch.CrowdfundingBoxResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, CrowdfundingBoxResourcePatch::class])
@@ -27,7 +25,7 @@ class CrowdfundingBoxPatch : BytecodePatch(
CrowdfundingBoxFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CrowdfundingBoxFingerprint.result?.let {
it.mutableMethod.apply {
val insertIndex = it.scanResult.patternScanResult!!.endIndex
@@ -35,9 +33,7 @@ class CrowdfundingBoxPatch : BytecodePatch(
addInstruction(insertIndex, "invoke-static {v$objectRegister}, $INTEGRATIONS_METHOD_DESCRIPTOR")
}
- } ?: return CrowdfundingBoxFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CrowdfundingBoxFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
index b6af990588..4d0cc7c203 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.crowdfundingbox.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -16,7 +14,7 @@ class CrowdfundingBoxResourcePatch : ResourcePatch {
internal var crowdfundingBoxId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_crowdfunding_box",
@@ -29,7 +27,5 @@ class CrowdfundingBoxResourcePatch : ResourcePatch {
crowdfundingBoxId = ResourceMappingPatch.resourceMappings.single {
it.type == "layout" && it.name == "donation_companion"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/annotations/HideEndscreenCardsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/annotations/HideEndscreenCardsCompatibility.kt
index 2062758960..f6017cf54f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/annotations/HideEndscreenCardsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/annotations/HideEndscreenCardsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.endscreencards.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideEndscreenCardsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutCircleFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutCircleFingerprint.kt
index 5469dc111c..f2de249858 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutCircleFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutCircleFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.fingerp
import app.revanced.patches.youtube.layout.hide.endscreencards.resource.patch.HideEndscreenCardsResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object LayoutCircleFingerprint : LiteralValueFingerprint(
returnType = "Landroid/view/View;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutIconFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutIconFingerprint.kt
index 90350f4c06..13de055b35 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutIconFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutIconFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.fingerp
import app.revanced.patches.youtube.layout.hide.endscreencards.resource.patch.HideEndscreenCardsResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object LayoutIconFingerprint : LiteralValueFingerprint(
returnType = "Landroid/view/View;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutVideoFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutVideoFingerprint.kt
index 22c9b07b9e..b7b54a5301 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutVideoFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/fingerprints/LayoutVideoFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.fingerp
import app.revanced.patches.youtube.layout.hide.endscreencards.resource.patch.HideEndscreenCardsResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object LayoutVideoFingerprint : LiteralValueFingerprint(
returnType = "Landroid/view/View;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/patch/HideEndscreenCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/patch/HideEndscreenCardsPatch.kt
index acfd9113bf..43f7208ed6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/patch/HideEndscreenCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/bytecode/patch/HideEndscreenCardsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.endscreencards.annotations.HideEndscreenCardsCompatibility
@@ -18,7 +16,7 @@ import app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.fingerpr
import app.revanced.patches.youtube.layout.hide.endscreencards.bytecode.fingerprints.LayoutVideoFingerprint
import app.revanced.patches.youtube.layout.hide.endscreencards.resource.patch.HideEndscreenCardsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.formats.Instruction21c
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
@Patch
@DependsOn([IntegrationsPatch::class, HideEndscreenCardsResourcePatch::class])
@@ -32,9 +30,9 @@ class HideEndscreenCardsPatch : BytecodePatch(
LayoutVideoFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
fun MethodFingerprint.injectHideCall() {
- val layoutResult = result ?: throw toErrorResult()
+ val layoutResult = result ?: throw exception
layoutResult.mutableMethod.apply {
val insertIndex = layoutResult.scanResult.patternScanResult!!.endIndex + 1
val viewRegister = getInstruction<Instruction21c>(insertIndex - 1).registerA
@@ -51,7 +49,5 @@ class HideEndscreenCardsPatch : BytecodePatch(
LayoutIconFingerprint,
LayoutVideoFingerprint
).forEach(MethodFingerprint::injectHideCall)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/resource/patch/HideEndscreenCardsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/resource/patch/HideEndscreenCardsResourcePatch.kt
index 577a7f1972..78c0253b97 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/resource/patch/HideEndscreenCardsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/resource/patch/HideEndscreenCardsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.endscreencards.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -18,7 +16,7 @@ class HideEndscreenCardsResourcePatch : ResourcePatch {
var layoutVideo: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_endscreen_cards",
@@ -35,7 +33,5 @@ class HideEndscreenCardsResourcePatch : ResourcePatch {
layoutCircle = findEndscreenResourceId("circle")
layoutIcon = findEndscreenResourceId("icon")
layoutVideo = findEndscreenResourceId("video")
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/annotations/HideFilterBar.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/annotations/HideFilterBar.kt
index 95aa29f64e..8ff7bf4977 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/annotations/HideFilterBar.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/annotations/HideFilterBar.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.filterbar.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideFilterBar
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/FilterBarHeightFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/FilterBarHeightFingerprint.kt
index 7307754d03..2bea01f58a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/FilterBarHeightFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/FilterBarHeightFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.filterbar.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.filterbar.patch.HideFilterBarResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object FilterBarHeightFingerprint : LiteralValueFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/RelatedChipCloudFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/RelatedChipCloudFingerprint.kt
index a5d47dbd39..fd811c1556 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/RelatedChipCloudFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/RelatedChipCloudFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.filterbar.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.filterbar.patch.HideFilterBarResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object RelatedChipCloudFingerprint : LiteralValueFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/SearchResultsChipBarFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/SearchResultsChipBarFingerprint.kt
index 9dc8f93593..866ec82f80 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/SearchResultsChipBarFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/fingerprints/SearchResultsChipBarFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.filterbar.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.hide.filterbar.patch.HideFilterBarResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SearchResultsChipBarFingerprint : LiteralValueFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarPatch.kt
index 45d2f6ae9d..02c7fa0098 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.layout.hide.filterbar.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,16 +8,14 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.filterbar.annotations.HideFilterBar
import app.revanced.patches.youtube.layout.hide.filterbar.fingerprints.FilterBarHeightFingerprint
import app.revanced.patches.youtube.layout.hide.filterbar.fingerprints.RelatedChipCloudFingerprint
import app.revanced.patches.youtube.layout.hide.filterbar.fingerprints.SearchResultsChipBarFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch
@Name("Hide filter bar")
@@ -31,7 +29,7 @@ class HideFilterBarPatch : BytecodePatch(
FilterBarHeightFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
FilterBarHeightFingerprint.patch<TwoRegisterInstruction> { register ->
"""
invoke-static { v$register }, $INTEGRATIONS_CLASS_DESCRIPTOR->hideInFeed(I)I
@@ -50,8 +48,6 @@ class HideFilterBarPatch : BytecodePatch(
move-result v$register
"""
}
-
- return PatchResultSuccess()
}
private companion object {
@@ -80,6 +76,6 @@ class HideFilterBarPatch : BytecodePatch(
addInstructions(insertIndex, instructions(register))
}
- } ?: throw toErrorResult()
+ } ?: throw exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarResourcePatch.kt
index ab0e32411f..9360541b19 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/patch/HideFilterBarResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.filterbar.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -13,7 +11,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class HideFilterBarResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
PreferenceScreen(
"revanced_hide_filter_bar_preference",
@@ -78,8 +76,6 @@ class HideFilterBarResourcePatch : ResourcePatch {
relatedChipCloudMarginId = "related_chip_cloud_reduced_margins".layoutResourceId("layout")
filterBarHeightId = "filter_bar_height".layoutResourceId()
barContainerHeightId = "bar_container_height".layoutResourceId()
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/annotations/HideFloatingMicrophoneButtonCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/annotations/HideFloatingMicrophoneButtonCompatibility.kt
index b5f04f78a0..04d54c63ec 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/annotations/HideFloatingMicrophoneButtonCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/annotations/HideFloatingMicrophoneButtonCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.floatingmicrophone.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideFloatingMicrophoneButtonCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/fingerprints/ShowFloatingMicrophoneButtonFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/fingerprints/ShowFloatingMicrophoneButtonFingerprint.kt
index b471d6473f..16deabe29b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/fingerprints/ShowFloatingMicrophoneButtonFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/fingerprints/ShowFloatingMicrophoneButtonFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.floatingmicrophone.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.floatingmicrophone.patch.HideFloatingMicrophoneButtonResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ShowFloatingMicrophoneButtonFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonPatch.kt
index 5e8fd945fd..1f9e638678 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonPatch.kt
@@ -1,19 +1,17 @@
package app.revanced.patches.youtube.layout.hide.floatingmicrophone.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.floatingmicrophone.annotations.HideFloatingMicrophoneButtonCompatibility
import app.revanced.patches.youtube.layout.hide.floatingmicrophone.fingerprints.ShowFloatingMicrophoneButtonFingerprint
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch
@Name("Hide floating microphone button")
@@ -23,7 +21,7 @@ import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
class HideFloatingMicrophoneButtonPatch : BytecodePatch(
listOf(ShowFloatingMicrophoneButtonFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ShowFloatingMicrophoneButtonFingerprint.result?.let { result ->
with(result.mutableMethod) {
val insertIndex = result.scanResult.patternScanResult!!.startIndex + 1
@@ -37,9 +35,7 @@ class HideFloatingMicrophoneButtonPatch : BytecodePatch(
"""
)
}
- } ?: return ShowFloatingMicrophoneButtonFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw ShowFloatingMicrophoneButtonFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonResourcePatch.kt
index e3e03d9807..7dcb04ab82 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/patch/HideFloatingMicrophoneButtonResourcePatch.kt
@@ -1,9 +1,7 @@
package app.revanced.patches.youtube.layout.hide.floatingmicrophone.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -15,7 +13,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
@HideFloatingMicrophoneButtonCompatibility
class HideFloatingMicrophoneButtonResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_floating_microphone_button",
@@ -29,8 +27,7 @@ class HideFloatingMicrophoneButtonResourcePatch : ResourcePatch {
)
fabButtonId = ResourceMappingPatch.resourceMappings.find { it.type == "id" && it.name == "fab" }?.id
- ?: return PatchResultError("Can not find required fab button resource id")
- return PatchResultSuccess()
+ ?: throw PatchException("Can not find required fab button resource id")
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/annotations/HideLayoutComponentsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/annotations/HideLayoutComponentsCompatibility.kt
index a685bf3ee9..962bbc66d8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/annotations/HideLayoutComponentsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/annotations/HideLayoutComponentsCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.hide.general.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideLayoutComponentsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ConvertElementToFlatBufferFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ConvertElementToFlatBufferFingerprint.kt
deleted file mode 100644
index a9ada6da1c..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ConvertElementToFlatBufferFingerprint.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-package app.revanced.patches.youtube.layout.hide.general.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
-
-object ConvertElementToFlatBufferFingerprint : MethodFingerprint(
- strings = listOf("Failed to convert Element to Flatbuffers: %s"),
- opcodes = listOf(Opcode.IGET_OBJECT) // Patched at this opcodes index
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ParseElementFromBufferFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ParseElementFromBufferFingerprint.kt
new file mode 100644
index 0000000000..525346c578
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/fingerprints/ParseElementFromBufferFingerprint.kt
@@ -0,0 +1,10 @@
+package app.revanced.patches.youtube.layout.hide.general.fingerprints
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+
+object ParseElementFromBufferFingerprint : MethodFingerprint(
+ parameters = listOf("L","L","[B", "L","L"),
+ opcodes = listOf(Opcode.INVOKE_INTERFACE, Opcode.MOVE_RESULT_OBJECT),
+ strings = listOf("Failed to parse Element")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/patch/HideLayoutComponentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/patch/HideLayoutComponentsPatch.kt
index 640479490d..8ca4278b22 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/patch/HideLayoutComponentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/patch/HideLayoutComponentsPatch.kt
@@ -1,15 +1,13 @@
package app.revanced.patches.youtube.layout.hide.general.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.getInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -17,10 +15,12 @@ import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.shared.settings.preference.impl.TextPreference
import app.revanced.patches.youtube.layout.hide.general.annotations.HideLayoutComponentsCompatibility
-import app.revanced.patches.youtube.layout.hide.general.fingerprints.ConvertElementToFlatBufferFingerprint
+import app.revanced.patches.youtube.layout.hide.general.fingerprints.ParseElementFromBufferFingerprint
import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch.PreferenceScreen
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
@Patch
@Name("Hide layout components")
@@ -28,9 +28,9 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch.P
@DependsOn([LithoFilterPatch::class, SettingsPatch::class])
@HideLayoutComponentsCompatibility
class HideLayoutComponentsPatch : BytecodePatch(
- listOf(ConvertElementToFlatBufferFingerprint)
+ listOf(ParseElementFromBufferFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_gray_separator",
@@ -251,34 +251,28 @@ class HideLayoutComponentsPatch : BytecodePatch(
// region Mix playlists
- ConvertElementToFlatBufferFingerprint.result?.let {
- val returnEmptyComponentIndex = it.scanResult.stringsScanResult!!.matches.first().index + 2
+ ParseElementFromBufferFingerprint.result?.let { result ->
+ val returnEmptyComponentInstruction = result.mutableMethod.getInstructions()
+ .last { it.opcode == Opcode.INVOKE_STATIC }
- it.mutableMethod.apply {
- // The last virtual register (not parameter). Used to store the byte array
- // that may contain information about a mix playlist.
- val freeRegister = (implementation!!.registerCount - 1) - parameterTypes.size - 1
+ result.mutableMethod.apply {
+ val consumeByteBufferIndex = result.scanResult.patternScanResult!!.startIndex
+ val byteBufferRegister = getInstruction<FiveRegisterInstruction>(consumeByteBufferIndex).registerD
- // Check if the byte array contains anything about a mix playlist.
addInstructionsWithLabels(
- it.scanResult.patternScanResult!!.startIndex,
+ result.scanResult.patternScanResult!!.startIndex,
"""
- invoke-static {v$freeRegister}, $FILTER_CLASS_DESCRIPTOR->filterMixPlaylists([B)Z
- move-result v$freeRegister
- if-nez v$freeRegister, :return_empty_component
+ invoke-static {v$byteBufferRegister}, $FILTER_CLASS_DESCRIPTOR->filterMixPlaylists([B)Z
+ move-result v0 # Conveniently same register happens to be free.
+ if-nez v0, :return_empty_component
""",
- ExternalLabel("return_empty_component", getInstruction(returnEmptyComponentIndex))
+ ExternalLabel("return_empty_component", returnEmptyComponentInstruction)
)
-
- // Move the byte array to a free register.
- addInstruction(0, "move-object/from16 v$freeRegister, p3")
}
- } ?: return ConvertElementToFlatBufferFingerprint.toErrorResult()
+ } ?: throw ParseElementFromBufferFingerprint.exception
// endregion
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/annotations/HideInfocardsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/annotations/HideInfocardsCompatibility.kt
index 520f038f63..2406c2ce23 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/annotations/HideInfocardsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/annotations/HideInfocardsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.infocards.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideInfocardsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoFingerprint.kt
index d59f8bff20..4e28fe256a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.infocards.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object InfocardsIncognitoFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoParentFingerprint.kt
index 815b37d806..34dbb54156 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsIncognitoParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.infocards.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object InfocardsIncognitoParentFingerprint : MethodFingerprint(
"Ljava/lang/String;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsMethodCallFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsMethodCallFingerprint.kt
index 48bef700aa..9d84467175 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsMethodCallFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/fingerprints/InfocardsMethodCallFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.infocards.fingerprints
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.infocards.resource.patch.HideInfocardsResourcePatch
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object InfocardsMethodCallFingerprint : LiteralValueFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/patch/HideInfoCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/patch/HideInfoCardsPatch.kt
index 2d39ae8e54..c4eb750579 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/patch/HideInfoCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/patch/HideInfoCardsPatch.kt
@@ -8,8 +8,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWith
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -19,9 +17,9 @@ import app.revanced.patches.youtube.layout.hide.infocards.fingerprints.Infocards
import app.revanced.patches.youtube.layout.hide.infocards.fingerprints.InfocardsMethodCallFingerprint
import app.revanced.patches.youtube.layout.hide.infocards.resource.patch.HideInfocardsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
@Patch
@DependsOn([IntegrationsPatch::class, HideInfocardsResourcePatch::class])
@@ -34,7 +32,7 @@ class HideInfoCardsPatch : BytecodePatch(
InfocardsMethodCallFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
InfocardsIncognitoFingerprint.also {
it.resolve(context, InfocardsIncognitoParentFingerprint.result!!.classDef)
}.result!!.mutableMethod.apply {
@@ -68,7 +66,5 @@ class HideInfoCardsPatch : BytecodePatch(
)
)
}
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/resource/patch/HideInfocardsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/resource/patch/HideInfocardsResourcePatch.kt
index 9b36d35f4f..27a1e48c0d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/resource/patch/HideInfocardsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/resource/patch/HideInfocardsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.infocards.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -18,7 +16,7 @@ class HideInfocardsResourcePatch : ResourcePatch {
var drawerResourceId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_info_cards",
@@ -31,7 +29,5 @@ class HideInfocardsResourcePatch : ResourcePatch {
drawerResourceId = ResourceMappingPatch.resourceMappings.single {
it.type == "id" && it.name == "info_cards_drawer_header"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/annotations/HideLoadMoreButtonCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/annotations/HideLoadMoreButtonCompatibility.kt
index a9c4bcea73..821868a108 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/annotations/HideLoadMoreButtonCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/annotations/HideLoadMoreButtonCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.hide.loadmorebutton.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideLoadMoreButtonCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/fingerprints/HideLoadMoreButtonFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/fingerprints/HideLoadMoreButtonFingerprint.kt
index 8a01d22247..258ba7d9e4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/fingerprints/HideLoadMoreButtonFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/fingerprints/HideLoadMoreButtonFingerprint.kt
@@ -1,15 +1,10 @@
package app.revanced.patches.youtube.layout.hide.loadmorebutton.bytecode.fingerprints
-import app.revanced.patcher.extensions.or
-import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.loadmorebutton.resource.patch.HideLoadMoreButtonResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import app.revanced.util.patch.LiteralValueFingerprint
+import com.android.tools.smali.dexlib2.Opcode
object HideLoadMoreButtonFingerprint : LiteralValueFingerprint(
- returnType = "V",
- accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
- parameters = listOf("L", "L", "L", "L"),
opcodes = listOf(
Opcode.CONST,
Opcode.CONST_4,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/patch/HideLoadMoreButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/patch/HideLoadMoreButtonPatch.kt
index 3f0d69ee80..97c34561fc 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/patch/HideLoadMoreButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/bytecode/patch/HideLoadMoreButtonPatch.kt
@@ -1,20 +1,18 @@
package app.revanced.patches.youtube.layout.hide.loadmorebutton.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.loadmorebutton.bytecode.fingerprints.HideLoadMoreButtonFingerprint
import app.revanced.patches.youtube.layout.hide.loadmorebutton.resource.patch.HideLoadMoreButtonResourcePatch
import app.revanced.patches.youtube.layout.hide.loadmorebutton.annotations.HideLoadMoreButtonCompatibility
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("Hide load more button")
@@ -22,7 +20,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@DependsOn([HideLoadMoreButtonResourcePatch::class])
@HideLoadMoreButtonCompatibility
class HideLoadMoreButtonPatch : BytecodePatch(listOf(HideLoadMoreButtonFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
HideLoadMoreButtonFingerprint.result?.let {
it.mutableMethod.apply {
val moveRegisterIndex = it.scanResult.patternScanResult!!.endIndex
@@ -35,9 +33,7 @@ class HideLoadMoreButtonPatch : BytecodePatch(listOf(HideLoadMoreButtonFingerpri
"$INTEGRATIONS_CLASS_DESCRIPTOR->hideLoadMoreButton(Landroid/view/View;)V"
)
}
- } ?: return HideLoadMoreButtonFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw HideLoadMoreButtonFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/resource/patch/HideLoadMoreButtonResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/resource/patch/HideLoadMoreButtonResourcePatch.kt
index d74dd3d7a5..b50779d26e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/resource/patch/HideLoadMoreButtonResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/resource/patch/HideLoadMoreButtonResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.loadmorebutton.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -12,7 +10,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class HideLoadMoreButtonResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_load_more_button",
@@ -25,8 +23,6 @@ class HideLoadMoreButtonResourcePatch : ResourcePatch {
expandButtonDownId = ResourceMappingPatch.resourceMappings.single {
it.type == "layout" && it.name == "expand_button_down"
}.id
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/annotations/HideEmailAddressCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/annotations/HideEmailAddressCompatibility.kt
index 3d7193394a..ba0bd1d31c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/annotations/HideEmailAddressCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/annotations/HideEmailAddressCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.personalinformation.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideEmailAddressCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt
index 372c21c5e2..915aa5422b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.personalinformation.bytecode.fi
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.personalinformation.resource.patch.HideEmailAddressResourcePatch
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object AccountSwitcherAccessibilityLabelFingerprint : LiteralValueFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/patch/HideEmailAddressPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/patch/HideEmailAddressPatch.kt
index 1314b56c57..2c2eabc2e4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/patch/HideEmailAddressPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/bytecode/patch/HideEmailAddressPatch.kt
@@ -1,21 +1,19 @@
package app.revanced.patches.youtube.layout.hide.personalinformation.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.hide.personalinformation.annotations.HideEmailAddressCompatibility
import app.revanced.patches.youtube.layout.hide.personalinformation.bytecode.fingerprints.AccountSwitcherAccessibilityLabelFingerprint
import app.revanced.patches.youtube.layout.hide.personalinformation.resource.patch.HideEmailAddressResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, HideEmailAddressResourcePatch::class])
@@ -27,7 +25,7 @@ class HideEmailAddressPatch : BytecodePatch(
AccountSwitcherAccessibilityLabelFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
AccountSwitcherAccessibilityLabelFingerprint.result?.let {
it.mutableMethod.apply {
val setVisibilityConstIndex = it.scanResult.patternScanResult!!.endIndex
@@ -43,8 +41,6 @@ class HideEmailAddressPatch : BytecodePatch(
"""
)
}
- } ?: return AccountSwitcherAccessibilityLabelFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw AccountSwitcherAccessibilityLabelFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
index dd9ed27158..bd6bf8c83a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.personalinformation.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -16,7 +14,7 @@ class HideEmailAddressResourcePatch : ResourcePatch {
internal var accountSwitcherAccessibilityLabelId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_email_address",
@@ -29,7 +27,5 @@ class HideEmailAddressResourcePatch : ResourcePatch {
accountSwitcherAccessibilityLabelId = ResourceMappingPatch.resourceMappings.single {
it.type == "string" && it.name == "account_switcher_accessibility_label"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/annotations/HidePlayerFlyoutMenuItemsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/annotations/HidePlayerFlyoutMenuItemsCompatibility.kt
index c9dcebc192..3149b8d777 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/annotations/HidePlayerFlyoutMenuItemsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/annotations/HidePlayerFlyoutMenuItemsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.player.flyoutmenupanel.annotati
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HidePlayerFlyoutMenuItemsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/patch/HidePlayerFlyoutMenuPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/patch/HidePlayerFlyoutMenuPatch.kt
index 49848fd325..9099f58245 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/patch/HidePlayerFlyoutMenuPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/flyoutmenupanel/patch/HidePlayerFlyoutMenuPatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.youtube.layout.hide.player.flyoutmenupanel.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
@@ -21,7 +19,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([LithoFilterPatch::class, SettingsPatch::class])
@HidePlayerFlyoutMenuItemsCompatibility
class HidePlayerFlyoutMenuPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
PreferenceScreen(
KEY,
@@ -93,8 +91,6 @@ class HidePlayerFlyoutMenuPatch : ResourcePatch {
)
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt
deleted file mode 100644
index d802ae3b1c..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.patch
-
-import app.revanced.extensions.indexOfFirstConstantInstructionValue
-import app.revanced.extensions.toErrorResult
-import app.revanced.patcher.annotation.Description
-import app.revanced.patcher.annotation.Name
-import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
-import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
-import app.revanced.patcher.patch.annotations.DependsOn
-import app.revanced.patcher.patch.annotations.Patch
-import app.revanced.patches.youtube.layout.hide.player.overlay.annotations.HidePlayerOverlayPatchCompatibility
-import app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.fingerprints.CreatePlayerOverviewFingerprint
-import app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch.HidePlayerOverlayResourcePatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-
-@Patch
-@Name("Hide player overlay")
-@Description("Hides the dark background overlay from the player when player controls are visible.")
-@DependsOn([HidePlayerOverlayResourcePatch::class])
-@HidePlayerOverlayPatchCompatibility
-class HidePlayerOverlayPatch : BytecodePatch(listOf(CreatePlayerOverviewFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
- CreatePlayerOverviewFingerprint.result?.let { result ->
- result.mutableMethod.apply {
- val viewRegisterIndex =
- indexOfFirstConstantInstructionValue(HidePlayerOverlayResourcePatch.scrimOverlayId) + 3
- val viewRegister = getInstruction<OneRegisterInstruction>(viewRegisterIndex).registerA
-
- val insertIndex = viewRegisterIndex + 1
- addInstruction(
- insertIndex,
- "invoke-static { v$viewRegister }, " +
- "$INTEGRATIONS_CLASS_DESCRIPTOR->hidePlayerOverlay(Landroid/widget/ImageView;)V"
- )
- }
- } ?: return CreatePlayerOverviewFingerprint.toErrorResult()
-
- return PatchResultSuccess()
- }
-
- private companion object {
- const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/HidePlayerOverlayPatch;"
- }
-}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt
deleted file mode 100644
index 5f5710452e..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt
+++ /dev/null
@@ -1,35 +0,0 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch
-
-import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
-import app.revanced.patcher.patch.ResourcePatch
-import app.revanced.patcher.patch.annotations.DependsOn
-import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
-import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
-import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-
-@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
-class HidePlayerOverlayResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
- SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
- SwitchPreference(
- "revanced_hide_player_overlay",
- StringResource("revanced_hide_player_overlay_title", "Hide background overlay in player"),
- StringResource("revanced_hide_player_overlay_summary_on", "Background overlay is hidden"),
- StringResource("revanced_hide_player_overlay_summary_off", "Background overlay is shown")
- )
- )
-
- scrimOverlayId = ResourceMappingPatch.resourceMappings.single {
- it.type == "id" && it.name == "scrim_overlay"
- }.id
-
- return PatchResultSuccess()
- }
-
- internal companion object {
- var scrimOverlayId: Long = -1
- }
-}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/annotations/HideSeekbarCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/annotations/HideSeekbarCompatibility.kt
index 784fa8611d..a1fdebcc1b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/annotations/HideSeekbarCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/annotations/HideSeekbarCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.seekbar.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideSeekbarCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/patch/HideSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/patch/HideSeekbarPatch.kt
index 9cc247aff8..dcdecd7227 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/patch/HideSeekbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/patch/HideSeekbarPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.fingerprints.SeekbarFingerprint
@@ -35,7 +33,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
class HideSeekbarPatch : BytecodePatch(
listOf(SeekbarFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SeekbarPreferencesPatch.addPreferences(
SwitchPreference(
"revanced_hide_seekbar",
@@ -65,7 +63,5 @@ class HideSeekbarPatch : BytecodePatch(
nop
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/annotations/HideShortsComponentsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/annotations/HideShortsComponentsCompatibility.kt
index e434846d02..97c071786b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/annotations/HideShortsComponentsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/annotations/HideShortsComponentsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.shorts.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideShortsComponentsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/BottomNavigationBarFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/BottomNavigationBarFingerprint.kt
index c53e79673d..a5ca9d9c45 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/BottomNavigationBarFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/BottomNavigationBarFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object BottomNavigationBarFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/CreateShortsButtonsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/CreateShortsButtonsFingerprint.kt
index 282737f7da..4412d87966 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/CreateShortsButtonsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/CreateShortsButtonsFingerprint.kt
@@ -1,13 +1,13 @@
package app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints
import app.revanced.patcher.extensions.or
-import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.shorts.resource.patch.HideShortsComponentsResourcePatch
-import org.jf.dexlib2.AccessFlags
+import app.revanced.util.patch.LiteralValueFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
object CreateShortsButtonsFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
returnType = "V",
parameters = listOf("Z", "Z", "L"),
- literal = HideShortsComponentsResourcePatch.reelPlayerRightLargeIconSize
+ literal = HideShortsComponentsResourcePatch.reelPlayerRightCellButtonHeight
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/ReelConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/ReelConstructorFingerprint.kt
index 467fa3c190..a9b195ba3c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/ReelConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/ReelConstructorFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.hide.shorts.resource.patch.HideShortsComponentsResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ReelConstructorFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/RenderBottomNavigationBarFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/RenderBottomNavigationBarFingerprint.kt
index 216d7276a8..f20e9c62ca 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/RenderBottomNavigationBarFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/RenderBottomNavigationBarFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object RenderBottomNavigationBarFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/SetPivotBarVisibilityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/SetPivotBarVisibilityFingerprint.kt
index 6c169f2aef..fdd010b1ba 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/SetPivotBarVisibilityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/fingerprints/SetPivotBarVisibilityFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object SetPivotBarVisibilityFingerprint : MethodFingerprint(
parameters = listOf("Z"),
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/patch/HideShortsComponentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/patch/HideShortsComponentsPatch.kt
index 859588f8f7..04262324a4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/patch/HideShortsComponentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/bytecode/patch/HideShortsComponentsPatch.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.shorts.bytecode.patch
import app.revanced.extensions.findIndexForIdResource
import app.revanced.extensions.injectHideViewCall
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -10,8 +10,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
@@ -21,9 +19,9 @@ import app.revanced.patches.youtube.layout.hide.shorts.bytecode.fingerprints.*
import app.revanced.patches.youtube.layout.hide.shorts.resource.patch.HideShortsComponentsResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch
@DependsOn(
@@ -46,7 +44,7 @@ class HideShortsComponentsPatch : BytecodePatch(
SetPivotBarVisibilityParentFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
// region Hide the Shorts shelf.
@@ -63,7 +61,7 @@ class HideShortsComponentsPatch : BytecodePatch(
"hideShortsShelf"
)
}
- } ?: return ReelConstructorFingerprint.toErrorResult()
+ } ?: throw ReelConstructorFingerprint.exception
// endregion
@@ -72,7 +70,7 @@ class HideShortsComponentsPatch : BytecodePatch(
// Some Shorts buttons are views, hide them by setting their visibility to GONE.
CreateShortsButtonsFingerprint.result?.let {
ShortsButtons.values().forEach { button -> button.injectHideCall(it.mutableMethod) }
- } ?: return CreateShortsButtonsFingerprint.toErrorResult()
+ } ?: throw CreateShortsButtonsFingerprint.exception
// endregion
@@ -81,7 +79,7 @@ class HideShortsComponentsPatch : BytecodePatch(
// Hook to get the pivotBar view.
SetPivotBarVisibilityParentFingerprint.result?.let {
if (!SetPivotBarVisibilityFingerprint.resolve(context, it.classDef))
- throw SetPivotBarVisibilityFingerprint.toErrorResult()
+ throw SetPivotBarVisibilityFingerprint.exception
SetPivotBarVisibilityFingerprint.result!!.let { result ->
result.mutableMethod.apply {
@@ -94,17 +92,17 @@ class HideShortsComponentsPatch : BytecodePatch(
)
}
}
- } ?: return SetPivotBarVisibilityParentFingerprint.toErrorResult()
+ } ?: throw SetPivotBarVisibilityParentFingerprint.exception
// Hook to hide the navigation bar when Shorts are being played.
RenderBottomNavigationBarParentFingerprint.result?.let {
if (!RenderBottomNavigationBarFingerprint.resolve(context, it.classDef))
- throw RenderBottomNavigationBarFingerprint.toErrorResult()
+ throw RenderBottomNavigationBarFingerprint.exception
RenderBottomNavigationBarFingerprint.result!!.mutableMethod.apply {
addInstruction(0, "invoke-static { }, $FILTER_CLASS_DESCRIPTOR->hideNavigationBar()V")
}
- } ?: return RenderBottomNavigationBarParentFingerprint.toErrorResult()
+ } ?: throw RenderBottomNavigationBarParentFingerprint.exception
// Required to prevent a black bar from appearing at the bottom of the screen.
BottomNavigationBarFingerprint.result?.let {
@@ -119,11 +117,9 @@ class HideShortsComponentsPatch : BytecodePatch(
"hideNavigationBar(Landroid/view/View;)Landroid/view/View;"
)
}
- } ?: return BottomNavigationBarFingerprint.toErrorResult()
+ } ?: throw BottomNavigationBarFingerprint.exception
// endregion
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/resource/patch/HideShortsComponentsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/resource/patch/HideShortsComponentsResourcePatch.kt
index fb06642405..bc81970551 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/resource/patch/HideShortsComponentsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/resource/patch/HideShortsComponentsResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.hide.shorts.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -13,7 +11,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class HideShortsComponentsResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
PreferenceScreen(
"revanced_shorts_preference_screen",
@@ -93,13 +91,11 @@ class HideShortsComponentsResourcePatch : ResourcePatch {
fun String.getId() = ResourceMappingPatch.resourceMappings.single { it.name == this }.id
reelMultipleItemShelfId = "reel_multiple_items_shelf".getId()
- reelPlayerRightLargeIconSize = "reel_player_right_large_icon_size".getId()
-
- return PatchResultSuccess()
+ reelPlayerRightCellButtonHeight = "reel_player_right_cell_button_height".getId()
}
companion object {
- var reelMultipleItemShelfId: Long = -1
- var reelPlayerRightLargeIconSize = -1L
+ var reelMultipleItemShelfId = -1L
+ var reelPlayerRightCellButtonHeight = -1L
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/annotations/HideTimeCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/annotations/HideTimeCompatibility.kt
index baa9be5ff3..bfc3ecbc7d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/annotations/HideTimeCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/annotations/HideTimeCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.time.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideTimeCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
index 2f43eb0aac..cfc85b69d9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
@@ -1,28 +1,24 @@
package app.revanced.patches.youtube.layout.hide.time.fingerprints
import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+@FuzzyPatternScanMethod(1)
object TimeCounterFingerprint : MethodFingerprint(
- accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
- parameters = listOf(),
- returnType = "V",
- opcodes = listOf(
- Opcode.SUB_LONG_2ADDR,
- Opcode.INVOKE_STATIC,
- Opcode.MOVE_RESULT_OBJECT,
+ "V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
Opcode.IGET_OBJECT,
Opcode.IGET_WIDE,
- Opcode.INVOKE_STATIC,
- Opcode.MOVE_RESULT_OBJECT,
- Opcode.INVOKE_INTERFACE,
- Opcode.RETURN_VOID,
- ),
- customFingerprint = { _, classDef ->
- // On older devices this fingerprint resolves very slowly.
- // Speed this up by checking for the number of methods.
- classDef.methods.count() == 14
- }
+ Opcode.CONST_WIDE_16,
+ Opcode.CMP_LONG,
+ Opcode.IF_LEZ,
+ Opcode.IGET_OBJECT,
+ Opcode.IF_EQZ,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.IF_EQZ,
+ Opcode.GOTO,
+ )
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/patch/HideTimestampPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/patch/HideTimestampPatch.kt
index 8753a78461..a8efcdcba0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/patch/HideTimestampPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/patch/HideTimestampPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.layout.hide.time.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -27,7 +25,7 @@ class HideTimestampPatch : BytecodePatch(
TimeCounterFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_timestamp",
@@ -49,8 +47,6 @@ class HideTimestampPatch : BytecodePatch(
nop
"""
)
- } ?: return TimeCounterFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw TimeCounterFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/annotations/HideWatermarkCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/annotations/HideWatermarkCompatibility.kt
index 687b506545..58cfdd922a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/annotations/HideWatermarkCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/annotations/HideWatermarkCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.hide.watermark.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HideWatermarkCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkFingerprint.kt
index b34c9a99ab..58aa588184 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.watermark.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object HideWatermarkFingerprint : MethodFingerprint (
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf("L", "L")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkParentFingerprint.kt
index 444fadd524..003815c45c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/fingerprints/HideWatermarkParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.hide.watermark.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object HideWatermarkParentFingerprint : MethodFingerprint (
"L", AccessFlags.PUBLIC or AccessFlags.FINAL, strings = listOf("player_overlay_in_video_programming")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/patch/HideWatermarkPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/patch/HideWatermarkPatch.kt
index c9e5694efe..e2b7f12f3d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/patch/HideWatermarkPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/watermark/patch/HideWatermarkPatch.kt
@@ -7,9 +7,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -30,7 +28,7 @@ class HideWatermarkPatch : BytecodePatch(
HideWatermarkParentFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_video_watermark",
@@ -42,7 +40,7 @@ class HideWatermarkPatch : BytecodePatch(
HideWatermarkFingerprint.resolve(context, HideWatermarkParentFingerprint.result!!.classDef)
val result = HideWatermarkFingerprint.result
- ?: return PatchResultError("Required parent method could not be found.")
+ ?: throw PatchException("Required parent method could not be found.")
val method = result.mutableMethod
val line = method.implementation!!.instructions.size - 5
@@ -55,7 +53,5 @@ class HideWatermarkPatch : BytecodePatch(
move-result p2
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/annotations/FullscreenPanelsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/annotations/FullscreenPanelsCompatibility.kt
deleted file mode 100644
index 11dbf8842f..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/annotations/FullscreenPanelsCompatibility.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package app.revanced.patches.youtube.layout.panels.fullscreen.remove.annotations
-
-import app.revanced.patcher.annotation.Compatibility
-import app.revanced.patcher.annotation.Package
-
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
-@Target(AnnotationTarget.CLASS)
-internal annotation class FullscreenPanelsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderFingerprint.kt
index 7d7429ca16..e69de29bb2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderFingerprint.kt
@@ -1,11 +0,0 @@
-package app.revanced.patches.youtube.layout.panels.fullscreen.remove.fingerprints
-
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
-
-object FullscreenViewAdderFingerprint : MethodFingerprint(
- opcodes = listOf(
- Opcode.IGET_BOOLEAN
- )
-)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderParentFingerprint.kt
index 9a1bb42194..e69de29bb2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/fingerprints/FullscreenViewAdderParentFingerprint.kt
@@ -1,20 +0,0 @@
-package app.revanced.patches.youtube.layout.panels.fullscreen.remove.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
-
-object FullscreenViewAdderParentFingerprint : MethodFingerprint(
- returnType = "V",
- parameters = listOf("Landroid/content/Context;", "Landroid/view/View;"),
- opcodes = listOf(
- Opcode.GOTO,
- Opcode.IGET_BOOLEAN,
- Opcode.IF_EQ,
- Opcode.GOTO,
- Opcode.CONST_4,
- Opcode.INVOKE_VIRTUAL,
- ),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("FullscreenEngagementPanelOverlay;")
- }
-)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/patch/FullscreenPanelsRemoverPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/patch/FullscreenPanelsRemoverPatch.kt
deleted file mode 100644
index ab36bb8850..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/fullscreen/remove/patch/FullscreenPanelsRemoverPatch.kt
+++ /dev/null
@@ -1,63 +0,0 @@
-package app.revanced.patches.youtube.layout.panels.fullscreen.remove.patch
-
-import app.revanced.patcher.annotation.Description
-import app.revanced.patcher.annotation.Name
-import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
-import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
-import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
-import app.revanced.patcher.patch.annotations.DependsOn
-import app.revanced.patcher.patch.annotations.Patch
-import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
-import app.revanced.patches.youtube.layout.panels.fullscreen.remove.annotations.FullscreenPanelsCompatibility
-import app.revanced.patches.youtube.layout.panels.fullscreen.remove.fingerprints.FullscreenViewAdderFingerprint
-import app.revanced.patches.youtube.layout.panels.fullscreen.remove.fingerprints.FullscreenViewAdderParentFingerprint
-import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-
-@Patch
-@Name("Disable fullscreen panels")
-@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
-@Description("Disables video description and comments panel in fullscreen view.")
-@FullscreenPanelsCompatibility
-class FullscreenPanelsRemoverPatch : BytecodePatch(
- listOf(
- FullscreenViewAdderParentFingerprint
- )
-) {
- override fun execute(context: BytecodeContext): PatchResult {
- SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
- SwitchPreference(
- "revanced_hide_fullscreen_panels",
- StringResource("revanced_hide_fullscreen_panels_title", "Hide fullscreen panels"),
- StringResource("revanced_hide_fullscreen_panels_summary_on", "Fullscreen panels are hidden"),
- StringResource("revanced_hide_fullscreen_panels_summary_off", "Fullscreen panels are shown")
- )
- )
-
- val parentResult = FullscreenViewAdderParentFingerprint.result!!
- FullscreenViewAdderFingerprint.resolve(context, parentResult.method, parentResult.classDef)
- val result = FullscreenViewAdderParentFingerprint.result
- ?: return PatchResultError("Fingerprint not resolved!")
-
- val method = result.mutableMethod
-
- val ifIndex = result.scanResult.patternScanResult!!.startIndex + 2
-
- method.removeInstruction(ifIndex)
- method.addInstructions(
- ifIndex,
- """
- invoke-static {}, Lapp/revanced/integrations/patches/FullscreenPanelsRemoverPatch;->getFullscreenPanelsVisibility()I
- move-result p1
- """
- )
-
- return PatchResultSuccess()
- }
-}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/annotations/PlayerPopupPanelsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/annotations/PlayerPopupPanelsCompatibility.kt
index e6da799021..78eb5708e2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/annotations/PlayerPopupPanelsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/annotations/PlayerPopupPanelsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.panels.popup.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlayerPopupPanelsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/fingerprints/EngagementPanelControllerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/fingerprints/EngagementPanelControllerFingerprint.kt
index a2c94e6f49..ef20819a04 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/fingerprints/EngagementPanelControllerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/fingerprints/EngagementPanelControllerFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.layout.panels.popup.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object EngagementPanelControllerFingerprint : MethodFingerprint(
returnType = "L",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/patch/PlayerPopupPanelsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/patch/PlayerPopupPanelsPatch.kt
index 1f5d4c7d03..d9848d0dfa 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/patch/PlayerPopupPanelsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/patch/PlayerPopupPanelsPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.layout.panels.popup.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -27,7 +25,7 @@ class PlayerPopupPanelsPatch : BytecodePatch(
EngagementPanelControllerFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_player_popup_panels",
@@ -38,7 +36,7 @@ class PlayerPopupPanelsPatch : BytecodePatch(
)
val engagementPanelControllerMethod = EngagementPanelControllerFingerprint
- .result?.mutableMethod ?: return EngagementPanelControllerFingerprint.toErrorResult()
+ .result?.mutableMethod ?: throw EngagementPanelControllerFingerprint.exception
engagementPanelControllerMethod.addInstructionsWithLabels(
0,
@@ -53,7 +51,5 @@ class PlayerPopupPanelsPatch : BytecodePatch(
nop
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/annotations/PlayerControlsBackgroundCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/annotations/PlayerControlsBackgroundCompatibility.kt
index d7e6490f9b..2a6f35bbed 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/annotations/PlayerControlsBackgroundCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/annotations/PlayerControlsBackgroundCompatibility.kt
@@ -2,6 +2,6 @@ package app.revanced.patches.youtube.layout.player.background.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlayerControlsBackgroundCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/patch/PlayerControlsBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/patch/PlayerControlsBackgroundPatch.kt
index c074af3975..5096eb771f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/patch/PlayerControlsBackgroundPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/patch/PlayerControlsBackgroundPatch.kt
@@ -4,8 +4,6 @@ import app.revanced.extensions.doRecursively
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.player.background.annotations.PlayerControlsBackgroundCompatibility
@@ -16,7 +14,7 @@ import org.w3c.dom.Element
@Description("Removes the background from the video player controls.")
@PlayerControlsBackgroundCompatibility
class PlayerControlsBackgroundPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
context.xmlEditor[RESOURCE_FILE_PATH].use { editor ->
editor.file.doRecursively node@{ node ->
if (node !is Element) return@node
@@ -26,8 +24,6 @@ class PlayerControlsBackgroundPatch : ResourcePatch {
}
}
}
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
similarity index 57%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
index 9ca55f5234..71d89ce7e6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
@@ -1,8 +1,8 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.annotations
+package app.revanced.patches.youtube.layout.player.overlay.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
@Compatibility([Package("com.google.android.youtube")])
@Target(AnnotationTarget.CLASS)
-internal annotation class HidePlayerOverlayPatchCompatibility
+internal annotation class PlayerOverlayPatchCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
similarity index 54%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
index 1325bee978..ec617403ef 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
@@ -1,11 +1,11 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.fingerprints
+package app.revanced.patches.youtube.layout.player.overlay.bytecode.fingerprints
import app.revanced.extensions.containsConstantInstructionValue
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch.HidePlayerOverlayResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import app.revanced.patches.youtube.layout.player.overlay.resource.patch.CustomPlayerOverlayOpacityResourcePatch
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object CreatePlayerOverviewFingerprint : MethodFingerprint(
returnType = "V",
@@ -17,7 +17,6 @@ object CreatePlayerOverviewFingerprint : MethodFingerprint(
Opcode.CHECK_CAST
),
customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("YouTubeControlsOverlay;")
- && methodDef.containsConstantInstructionValue(HidePlayerOverlayResourcePatch.scrimOverlayId)
+ methodDef.containsConstantInstructionValue(CustomPlayerOverlayOpacityResourcePatch.scrimOverlayId)
}
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt
new file mode 100644
index 0000000000..cbb46b92ab
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt
@@ -0,0 +1,45 @@
+package app.revanced.patches.youtube.layout.player.overlay.bytecode.patch
+
+import app.revanced.extensions.indexOfFirstConstantInstructionValue
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.youtube.layout.player.overlay.annotations.PlayerOverlayPatchCompatibility
+import app.revanced.patches.youtube.layout.player.overlay.bytecode.fingerprints.CreatePlayerOverviewFingerprint
+import app.revanced.patches.youtube.layout.player.overlay.resource.patch.CustomPlayerOverlayOpacityResourcePatch
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+
+@Patch
+@Name("Custom player overlay opacity")
+@Description("Change the opacity of the player background, when player controls are visible.")
+@DependsOn([CustomPlayerOverlayOpacityResourcePatch::class])
+@PlayerOverlayPatchCompatibility
+class CustomPlayerOverlayOpacityPatch : BytecodePatch(listOf(CreatePlayerOverviewFingerprint)) {
+ override fun execute(context: BytecodeContext) {
+ CreatePlayerOverviewFingerprint.result?.let { result ->
+ result.mutableMethod.apply {
+ val viewRegisterIndex =
+ indexOfFirstConstantInstructionValue(CustomPlayerOverlayOpacityResourcePatch.scrimOverlayId) + 3
+ val viewRegister =
+ getInstruction<OneRegisterInstruction>(viewRegisterIndex).registerA
+
+ val insertIndex = viewRegisterIndex + 1
+ addInstruction(
+ insertIndex,
+ "invoke-static { v$viewRegister }, " +
+ "$INTEGRATIONS_CLASS_DESCRIPTOR->changeOpacity(Landroid/widget/ImageView;)V"
+ )
+ }
+ } ?: throw CreatePlayerOverviewFingerprint.exception
+ }
+
+ private companion object {
+ const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/CustomPlayerOverlayOpacityPatch;"
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt
new file mode 100644
index 0000000000..e868a8e209
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt
@@ -0,0 +1,38 @@
+package app.revanced.patches.youtube.layout.player.overlay.resource.patch
+
+import app.revanced.patcher.data.ResourceContext
+import app.revanced.patcher.patch.ResourcePatch
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
+import app.revanced.patches.shared.settings.preference.impl.InputType
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.TextPreference
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+
+@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
+class CustomPlayerOverlayOpacityResourcePatch : ResourcePatch {
+ override fun execute(context: ResourceContext) {
+ SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
+ TextPreference(
+ "revanced_player_overlay_opacity",
+ StringResource(
+ "revanced_player_overlay_opacity_title",
+ "Player overlay opacity"
+ ),
+ StringResource(
+ "revanced_player_overlay_opacity_summary",
+ "Opacity value between 0-100, where 0 is transparent"
+ ),
+ InputType.NUMBER
+ )
+ )
+
+ scrimOverlayId = ResourceMappingPatch.resourceMappings.single {
+ it.type == "id" && it.name == "scrim_overlay"
+ }.id
+ }
+
+ internal companion object {
+ var scrimOverlayId = -1L
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/annotations/ReturnYouTubeDislikeCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/annotations/ReturnYouTubeDislikeCompatibility.kt
index 5f3dd157e9..189902dbe7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/annotations/ReturnYouTubeDislikeCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/annotations/ReturnYouTubeDislikeCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.returnyoutubedislike.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class ReturnYouTubeDislikeCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/DislikesOldLayoutTextViewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/DislikesOldLayoutTextViewFingerprint.kt
index 3ac14b345e..19557dde09 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/DislikesOldLayoutTextViewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/DislikesOldLayoutTextViewFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.returnyoutubedislike.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.layout.returnyoutubedislike.resource.patch.ReturnYouTubeDislikeResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object DislikesOldLayoutTextViewFingerprint : LiteralValueFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/ShortsTextViewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/ShortsTextViewFingerprint.kt
index 1c78732d58..1009acbd57 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/ShortsTextViewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/ShortsTextViewFingerprint.kt
@@ -1,12 +1,12 @@
package app.revanced.patches.youtube.layout.returnyoutubedislike.fingerprints
-import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ShortsTextViewFingerprint : MethodFingerprint(
- accessFlags = AccessFlags.PROTECTED or AccessFlags.FINAL,
+ // 18.29.38 method is public final visibility, but in 18.23.35 and older it's protected final.
+ // If 18.23.35 is dropped then accessFlags should be specified here.
returnType = "V",
parameters = listOf("L", "L"),
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentAtomicReferenceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentAtomicReferenceFingerprint.kt
index c5955c0f28..069ec8bb60 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentAtomicReferenceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentAtomicReferenceFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.returnyoutubedislike.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
/**
* Resolves against the same method that [TextComponentContextFingerprint] resolves to.
@@ -13,19 +13,17 @@ object TextComponentAtomicReferenceFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PROTECTED or AccessFlags.FINAL,
parameters = listOf("L"),
opcodes = listOf(
- Opcode.MOVE_OBJECT_FROM16, // available unused register
- Opcode.MOVE_OBJECT_FROM16,
- Opcode.MOVE_OBJECT_FROM16,
- Opcode.MOVE_OBJECT_FROM16,
- Opcode.INVOKE_VIRTUAL, // CharSequence atomic reference
- Opcode.MOVE_RESULT_OBJECT,
+ Opcode.MOVE_OBJECT, // Register A and B is context, use B as context, reuse A as free register
+ Opcode.INVOKE_VIRTUAL, // Register C is atomic reference
+ Opcode.MOVE_RESULT_OBJECT, // Register A is char sequence
+ Opcode.MOVE_OBJECT,
Opcode.CHECK_CAST,
- Opcode.MOVE_OBJECT, // CharSequence reference, and control flow label. Insert code here.
- null, // invoke-interface or invoke-virtual
+ Opcode.MOVE_OBJECT,
+ Opcode.INVOKE_INTERFACE, // Insert hook here
Opcode.MOVE_RESULT,
Opcode.IF_EQZ,
- null, // invoke-interface or invoke-virtual
+ Opcode.INVOKE_INTERFACE,
Opcode.MOVE_RESULT_OBJECT,
- Opcode.GOTO,
+ Opcode.GOTO
)
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentConstructorFingerprint.kt
index 5f5c188443..8fbd4e33bd 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentConstructorFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.returnyoutubedislike.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object TextComponentConstructorFingerprint : MethodFingerprint(
accessFlags = AccessFlags.CONSTRUCTOR or AccessFlags.PRIVATE,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentContextFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentContextFingerprint.kt
index 7e4d3141f9..9c2e7d7e78 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentContextFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/fingerprints/TextComponentContextFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.returnyoutubedislike.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
/**
* Resolves against the same class that [TextComponentConstructorFingerprint] resolves to.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
index f55afa7674..34c22181f7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.layout.returnyoutubedislike.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -13,9 +13,7 @@ import app.revanced.patcher.extensions.MethodFingerprintExtensions.name
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.layout.returnyoutubedislike.annotations.ReturnYouTubeDislikeCompatibility
@@ -24,10 +22,10 @@ import app.revanced.patches.youtube.layout.returnyoutubedislike.resource.patch.R
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.patches.youtube.video.videoid.patch.VideoIdPatch
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch
@DependsOn(
@@ -51,7 +49,7 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
RemoveLikeFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// region Inject newVideoLoaded event handler to update dislikes when a new video is loaded.
VideoIdPatch.injectCall("$INTEGRATIONS_CLASS_DESCRIPTOR->newVideoLoaded(Ljava/lang/String;)V")
@@ -73,7 +71,7 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
invoke-static {v0}, $INTEGRATIONS_CLASS_DESCRIPTOR->sendVote(I)V
"""
)
- } ?: return PatchResultError("Failed to find ${fingerprint.name} method.")
+ } ?: throw PatchException("Failed to find ${fingerprint.name} method.")
}
// endregion
@@ -85,50 +83,61 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
// since the underlying (likes only) text did not change.
// This hook handles all situations, as it's where the created Spans are stored and later reused.
TextComponentContextFingerprint.also {
- it.resolve(
- context,
- TextComponentConstructorFingerprint.result!!.classDef
- )
+ if (!it.resolve(context, TextComponentConstructorFingerprint.result!!.classDef))
+ throw it.exception
}.result?.also { result ->
if (!TextComponentAtomicReferenceFingerprint.resolve(context, result.method, result.classDef))
- throw TextComponentAtomicReferenceFingerprint.toErrorResult()
+ throw TextComponentAtomicReferenceFingerprint.exception
}?.let { textComponentContextFingerprintResult ->
val conversionContextIndex = textComponentContextFingerprintResult
.scanResult.patternScanResult!!.startIndex
val atomicReferenceStartIndex = TextComponentAtomicReferenceFingerprint.result!!
.scanResult.patternScanResult!!.startIndex
- val insertIndex = atomicReferenceStartIndex + 7
+ val insertIndex = atomicReferenceStartIndex + 6
textComponentContextFingerprintResult.mutableMethod.apply {
// Get the conversion context obfuscated field name, and the registers for the AtomicReference and CharSequence
val conversionContextFieldReference =
getInstruction<ReferenceInstruction>(conversionContextIndex).reference
- // any free register
- val contextRegister =
+ // Reuse the free register to make room for the atomic reference register.
+ val freeRegister =
getInstruction<TwoRegisterInstruction>(atomicReferenceStartIndex).registerB
val atomicReferenceRegister =
- getInstruction<FiveRegisterInstruction>(atomicReferenceStartIndex + 4).registerC
+ getInstruction<FiveRegisterInstruction>(atomicReferenceStartIndex + 1).registerC
- val moveCharSequenceInstruction = getInstruction<TwoRegisterInstruction>(insertIndex)
- val charSequenceRegister = moveCharSequenceInstruction.registerB
+ val moveCharSequenceInstruction = getInstruction<TwoRegisterInstruction>(insertIndex - 1)
+ val charSequenceSourceRegister = moveCharSequenceInstruction.registerB
+ val charSequenceTargetRegister = moveCharSequenceInstruction.registerA
- // Insert as first instructions at the control flow label.
- // Must replace the existing instruction to preserve the label, and then insert the remaining instructions.
- replaceInstruction(insertIndex, "move-object/from16 v$contextRegister, p0")
+ // In order to preserve the atomic reference register, because it is overwritten,
+ // use another free register to store it.
+ replaceInstruction(
+ atomicReferenceStartIndex + 2,
+ "move-result-object v$freeRegister"
+ )
+ replaceInstruction(
+ atomicReferenceStartIndex + 3,
+ "move-object v$charSequenceSourceRegister, v$freeRegister"
+ )
+
+ // Move the current instance to the free register, and get the conversion context from it.
+ replaceInstruction(insertIndex - 1, "move-object/from16 v$freeRegister, p0")
addInstructions(
- insertIndex + 1,
+ insertIndex,
"""
- iget-object v$contextRegister, v$contextRegister, $conversionContextFieldReference # copy obfuscated context field into free register
- invoke-static {v$contextRegister, v$atomicReferenceRegister, v$charSequenceRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->onLithoTextLoaded(Ljava/lang/Object;Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/CharSequence;)Ljava/lang/CharSequence;
- move-result-object v$charSequenceRegister
- move-object v${moveCharSequenceInstruction.registerA}, v${charSequenceRegister} # original instruction at the insertion point
+ # Move context to free register
+ iget-object v$freeRegister, v$freeRegister, $conversionContextFieldReference
+ invoke-static {v$freeRegister, v$atomicReferenceRegister, v$charSequenceSourceRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->onLithoTextLoaded(Ljava/lang/Object;Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/CharSequence;)Ljava/lang/CharSequence;
+ move-result-object v$freeRegister
+ # Replace the original char sequence with the modified one.
+ move-object v${charSequenceTargetRegister}, v${freeRegister}
"""
)
}
- } ?: return TextComponentContextFingerprint.toErrorResult()
+ } ?: throw TextComponentContextFingerprint.exception
// endregion
@@ -168,7 +177,7 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
"""
)
}
- } ?: return ShortsTextViewFingerprint.toErrorResult()
+ } ?: throw ShortsTextViewFingerprint.exception
// endregion
@@ -186,11 +195,9 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
"invoke-static {v$resourceIdentifierRegister, v$textViewRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->setOldUILayoutDislikes(ILandroid/widget/TextView;)V"
)
}
- } ?: return DislikesOldLayoutTextViewFingerprint.toErrorResult()
+ } ?: throw DislikesOldLayoutTextViewFingerprint.exception
// endregion
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/resource/patch/ReturnYouTubeDislikeResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/resource/patch/ReturnYouTubeDislikeResourcePatch.kt
index 75cd1915a6..304623ced6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/resource/patch/ReturnYouTubeDislikeResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/resource/patch/ReturnYouTubeDislikeResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.returnyoutubedislike.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -17,7 +15,7 @@ class ReturnYouTubeDislikeResourcePatch : ResourcePatch {
internal var oldUIDislikeId: Long = -1
}
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.addPreference(
Preference(
StringResource("revanced_ryd_settings_title", "Return YouTube Dislike"),
@@ -31,7 +29,5 @@ class ReturnYouTubeDislikeResourcePatch : ResourcePatch {
oldUIDislikeId = ResourceMappingPatch.resourceMappings.single {
it.type == "id" && it.name == "dislike_button"
}.id
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/annotations/WideSearchbarCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/annotations/WideSearchbarCompatibility.kt
index 1fe97fe007..c171c6d9ea 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/annotations/WideSearchbarCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/annotations/WideSearchbarCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.searchbar.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class WideSearchbarCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/CreateSearchSuggestionsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/CreateSearchSuggestionsFingerprint.kt
index bef00e2f3a..4c00d24f4e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/CreateSearchSuggestionsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/CreateSearchSuggestionsFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.searchbar.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object CreateSearchSuggestionsFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/SetWordmarkHeaderFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/SetWordmarkHeaderFingerprint.kt
index 836b1aa86b..d2f56c0d77 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/SetWordmarkHeaderFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/fingerprints/SetWordmarkHeaderFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.searchbar.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SetWordmarkHeaderFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/patch/WideSearchbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/patch/WideSearchbarPatch.kt
index d31a5a25e4..21dc3495f7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/patch/WideSearchbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/patch/WideSearchbarPatch.kt
@@ -1,15 +1,12 @@
package app.revanced.patches.youtube.layout.searchbar.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
@@ -31,7 +28,7 @@ class WideSearchbarPatch : BytecodePatch(
SetWordmarkHeaderFingerprint, CreateSearchSuggestionsFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_wide_searchbar",
@@ -41,7 +38,7 @@ class WideSearchbarPatch : BytecodePatch(
)
)
- val result = CreateSearchSuggestionsFingerprint.result ?: return CreateSearchSuggestionsFingerprint.toErrorResult()
+ val result = CreateSearchSuggestionsFingerprint.result ?: throw CreateSearchSuggestionsFingerprint.exception
// patch methods
mapOf(
@@ -50,8 +47,6 @@ class WideSearchbarPatch : BytecodePatch(
).forEach { (fingerprint, callIndex) ->
context.walkMutable(callIndex, fingerprint).injectSearchBarHook()
}
-
- return PatchResultSuccess()
}
private companion object {
@@ -65,7 +60,7 @@ class WideSearchbarPatch : BytecodePatch(
fun BytecodeContext.walkMutable(index: Int, fromFingerprint: MethodFingerprint) =
fromFingerprint.result?.let {
toMethodWalker(it.method).nextMethod(index, true).getMethod() as MutableMethod
- } ?: throw fromFingerprint.toErrorResult()
+ } ?: throw fromFingerprint.exception
/**
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/PlayerSeekbarColorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/PlayerSeekbarColorFingerprint.kt
index 0c325dd868..67851084ab 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/PlayerSeekbarColorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/PlayerSeekbarColorFingerprint.kt
@@ -4,7 +4,7 @@ import app.revanced.extensions.containsConstantInstructionValue
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.youtube.layout.seekbar.resource.SeekbarColorResourcePatch
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object PlayerSeekbarColorFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/SetSeekbarClickedColorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/SetSeekbarClickedColorFingerprint.kt
index 1ebccca759..43eb358d57 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/SetSeekbarClickedColorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/SetSeekbarClickedColorFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.layout.seekbar.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object SetSeekbarClickedColorFingerprint : MethodFingerprint(
opcodes = listOf(Opcode.CONST_HIGH16),
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/ShortsSeekbarColorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/ShortsSeekbarColorFingerprint.kt
index eea70852a6..738e9e4333 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/ShortsSeekbarColorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/fingerprints/ShortsSeekbarColorFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.seekbar.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.layout.seekbar.resource.SeekbarColorResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object ShortsSeekbarColorFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/patch/SeekbarColorBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/patch/SeekbarColorBytecodePatch.kt
index 156203606e..065b894b85 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/patch/SeekbarColorBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/bytecode/patch/SeekbarColorBytecodePatch.kt
@@ -1,15 +1,12 @@
package app.revanced.patches.youtube.layout.seekbar.bytecode.patch
import app.revanced.extensions.indexOfFirstConstantInstructionValue
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.youtube.layout.seekbar.annotations.SeekbarColorCompatibility
@@ -20,8 +17,8 @@ import app.revanced.patches.youtube.layout.seekbar.resource.SeekbarColorResource
import app.revanced.patches.youtube.layout.theme.bytecode.patch.LithoColorHookPatch
import app.revanced.patches.youtube.layout.theme.bytecode.patch.LithoColorHookPatch.Companion.lithoColorOverrideHook
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Description("Hide or set a custom seekbar color")
@DependsOn([IntegrationsPatch::class, LithoColorHookPatch::class, SeekbarColorResourcePatch::class])
@@ -29,7 +26,7 @@ import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
class SeekbarColorBytecodePatch : BytecodePatch(
listOf(PlayerSeekbarColorFingerprint, ShortsSeekbarColorFingerprint, SetSeekbarClickedColorFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
fun MutableMethod.addColorChangeInstructions(resourceId: Long) {
var registerIndex = indexOfFirstConstantInstructionValue(resourceId) + 2
var colorRegister = getInstruction<OneRegisterInstruction>(registerIndex).registerA
@@ -45,11 +42,11 @@ class SeekbarColorBytecodePatch : BytecodePatch(
PlayerSeekbarColorFingerprint.result?.mutableMethod?.apply {
addColorChangeInstructions(SeekbarColorResourcePatch.inlineTimeBarColorizedBarPlayedColorDarkId)
addColorChangeInstructions(SeekbarColorResourcePatch.inlineTimeBarPlayedNotHighlightedColorId)
- } ?: return PlayerSeekbarColorFingerprint.toErrorResult()
+ } ?: throw PlayerSeekbarColorFingerprint.exception
ShortsSeekbarColorFingerprint.result?.mutableMethod?.apply {
addColorChangeInstructions(SeekbarColorResourcePatch.reelTimeBarPlayedColorId)
- } ?: return ShortsSeekbarColorFingerprint.toErrorResult()
+ } ?: throw ShortsSeekbarColorFingerprint.exception
SetSeekbarClickedColorFingerprint.result?.let { result ->
result.mutableMethod.let {
@@ -70,11 +67,9 @@ class SeekbarColorBytecodePatch : BytecodePatch(
)
}
}
- } ?: return SetSeekbarClickedColorFingerprint.toErrorResult()
+ } ?: throw SetSeekbarClickedColorFingerprint.exception
lithoColorOverrideHook(INTEGRATIONS_CLASS_DESCRIPTOR, "getLithoColor")
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarColorResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarColorResourcePatch.kt
index c120165657..6991daaa4b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarColorResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarColorResourcePatch.kt
@@ -1,7 +1,8 @@
package app.revanced.patches.youtube.layout.seekbar.resource
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.*
+import app.revanced.patcher.patch.PatchException
+import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@@ -10,11 +11,11 @@ import org.w3c.dom.Element
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class SeekbarColorResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
fun findColorResource(resourceName: String): Long {
return ResourceMappingPatch.resourceMappings
.find { it.type == "color" && it.name == resourceName }?.id
- ?: throw PatchResultError("Could not find color resource: $resourceName")
+ ?: throw PatchException("Could not find color resource: $resourceName")
}
reelTimeBarPlayedColorId =
@@ -29,7 +30,7 @@ class SeekbarColorResourcePatch : ResourcePatch {
val layerList = editor.file.getElementsByTagName("layer-list").item(0) as Element
val progressNode = layerList.getElementsByTagName("item").item(1) as Element
if (!progressNode.getAttributeNode("android:id").value.endsWith("progress")) {
- return PatchResultError("Could not find progress bar")
+ throw PatchException("Could not find progress bar")
}
val scaleNode = progressNode.getElementsByTagName("scale").item(0) as Element
val shapeNode = scaleNode.getElementsByTagName("shape").item(0) as Element
@@ -37,8 +38,6 @@ class SeekbarColorResourcePatch : ResourcePatch {
"app.revanced.integrations.patches.theme.ProgressBarDrawable")
scaleNode.replaceChild(replacementNode, shapeNode)
}
-
- return PatchResultSuccess()
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarPreferencesPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarPreferencesPatch.kt
index 17a3f168e2..84599bf6ec 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarPreferencesPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/resource/SeekbarPreferencesPatch.kt
@@ -12,11 +12,9 @@ import java.io.Closeable
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class SeekbarPreferencesPatch : ResourcePatch, Closeable {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
// Nothing to do here. All work is done in close method.
-
- return PatchResultSuccess()
}
override fun close() {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/annotations/SponsorBlockCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/annotations/SponsorBlockCompatibility.kt
index 7eefbbd531..6262c3b174 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/annotations/SponsorBlockCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/annotations/SponsorBlockCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.sponsorblock.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class SponsorBlockCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/AppendTimeFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/AppendTimeFingerprint.kt
index 950c74602b..18d2497cb9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/AppendTimeFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/AppendTimeFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object AppendTimeFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/ControlsOverlayFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/ControlsOverlayFingerprint.kt
index a537a12f25..934386bc18 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/ControlsOverlayFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/ControlsOverlayFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ControlsOverlayFingerprint : MethodFingerprint(
returnType = "V",
@@ -19,9 +19,6 @@ object ControlsOverlayFingerprint : MethodFingerprint(
Opcode.INVOKE_VIRTUAL,
Opcode.MOVE_RESULT_OBJECT,
Opcode.CHECK_CAST,
- Opcode.NEW_INSTANCE,
- ),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass == "Lcom/google/android/apps/youtube/app/player/overlay/YouTubeControlsOverlay;"
- }
+ Opcode.NEW_INSTANCE
+ )
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt
index 9aa72efba3..623c760f3c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
object RectangleFieldInvalidatorFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
index 84450c9b04..88d4489d4e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
@@ -1,22 +1,20 @@
package app.revanced.patches.youtube.layout.sponsorblock.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
+import app.revanced.patches.shared.fingerprints.LayoutConstructorFingerprint
import app.revanced.patches.shared.fingerprints.SeekbarFingerprint
import app.revanced.patches.shared.fingerprints.SeekbarOnDrawFingerprint
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -32,12 +30,12 @@ import app.revanced.patches.youtube.misc.playercontrols.bytecode.patch.PlayerCon
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.patches.youtube.video.information.patch.VideoInformationPatch
import app.revanced.patches.youtube.video.videoid.patch.VideoIdPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.*
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
-import org.jf.dexlib2.iface.reference.FieldReference
-import org.jf.dexlib2.iface.reference.MethodReference
-import org.jf.dexlib2.iface.reference.StringReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.*
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
@Patch
@DependsOn(
@@ -59,23 +57,16 @@ class SponsorBlockBytecodePatch : BytecodePatch(
listOf(
SeekbarFingerprint,
AppendTimeFingerprint,
- ControlsOverlayFingerprint,
+ LayoutConstructorFingerprint,
AutoRepeatParentFingerprint,
)
) {
+ override fun execute(context: BytecodeContext) {
+ LayoutConstructorFingerprint.result?.let {
+ if (!ControlsOverlayFingerprint.resolve(context, it.classDef))
+ throw ControlsOverlayFingerprint.exception
+ } ?: throw LayoutConstructorFingerprint.exception
- private companion object {
- const val INTEGRATIONS_SEGMENT_PLAYBACK_CONTROLLER_CLASS_DESCRIPTOR =
- "Lapp/revanced/integrations/sponsorblock/SegmentPlaybackController;"
- const val INTEGRATIONS_CREATE_SEGMENT_BUTTON_CONTROLLER_CLASS_DESCRIPTOR =
- "Lapp/revanced/integrations/sponsorblock/ui/CreateSegmentButtonController;"
- const val INTEGRATIONS_VOTING_BUTTON_CONTROLLER_CLASS_DESCRIPTOR =
- "Lapp/revanced/integrations/sponsorblock/ui/VotingButtonController;"
- const val INTEGRATIONS_SPONSORBLOCK_VIEW_CONTROLLER_CLASS_DESCRIPTOR =
- "Lapp/revanced/integrations/sponsorblock/ui/SponsorBlockViewController;"
- }
-
- override fun execute(context: BytecodeContext): PatchResult {
/*
* Hook the video time methods
*/
@@ -228,7 +219,7 @@ class SponsorBlockBytecodePatch : BytecodePatch(
"invoke-static {v$frameLayoutRegister}, $INTEGRATIONS_SPONSORBLOCK_VIEW_CONTROLLER_CLASS_DESCRIPTOR->initialize(Landroid/view/ViewGroup;)V"
)
}
- } ?: return ControlsOverlayFingerprint.toErrorResult()
+ } ?: throw ControlsOverlayFingerprint.exception
// get rectangle field name
RectangleFieldInvalidatorFingerprint.resolve(context, seekbarSignatureResult.classDef)
@@ -261,22 +252,31 @@ class SponsorBlockBytecodePatch : BytecodePatch(
)
}
}
- } ?: return PatchResultError("Could not find the method which contains the replaceMeWith* strings")
+ } ?: throw PatchException("Could not find the method which contains the replaceMeWith* strings")
// The vote and create segment buttons automatically change their visibility when appropriate,
// but if buttons are showing when the end of the video is reached then they will not automatically hide.
// Add a hook to forcefully hide when the end of the video is reached.
- AutoRepeatParentFingerprint.result ?: return AutoRepeatParentFingerprint.toErrorResult()
+ AutoRepeatParentFingerprint.result ?: throw AutoRepeatParentFingerprint.exception
AutoRepeatFingerprint.also {
it.resolve(context, AutoRepeatParentFingerprint.result!!.classDef)
}.result?.mutableMethod?.addInstruction(
0,
"invoke-static {}, $INTEGRATIONS_SPONSORBLOCK_VIEW_CONTROLLER_CLASS_DESCRIPTOR->endOfVideoReached()V"
- ) ?: return AutoRepeatFingerprint.toErrorResult()
+ ) ?: throw AutoRepeatFingerprint.exception
// TODO: isSBChannelWhitelisting implementation
+ }
- return PatchResultSuccess()
+ private companion object {
+ const val INTEGRATIONS_SEGMENT_PLAYBACK_CONTROLLER_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/sponsorblock/SegmentPlaybackController;"
+ const val INTEGRATIONS_CREATE_SEGMENT_BUTTON_CONTROLLER_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/sponsorblock/ui/CreateSegmentButtonController;"
+ const val INTEGRATIONS_VOTING_BUTTON_CONTROLLER_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/sponsorblock/ui/VotingButtonController;"
+ const val INTEGRATIONS_SPONSORBLOCK_VIEW_CONTROLLER_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/sponsorblock/ui/SponsorBlockViewController;"
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/resource/patch/SponsorBlockResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/resource/patch/SponsorBlockResourcePatch.kt
index d579bbea68..65d8a2deb6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/resource/patch/SponsorBlockResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/resource/patch/SponsorBlockResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.layout.sponsorblock.resource.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -17,7 +15,7 @@ import app.revanced.util.resources.ResourceUtils.mergeStrings
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class SponsorBlockResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.addPreference(
Preference(
StringResource("revanced_sponsorblock_settings_title", "SponsorBlock"),
@@ -91,7 +89,5 @@ class SponsorBlockResourcePatch : ResourcePatch {
break
}
}.close() // close afterwards
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/annotations/SpoofAppVersionCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/annotations/SpoofAppVersionCompatibility.kt
index 04740e6fbb..41aa7c70ee 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/annotations/SpoofAppVersionCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/annotations/SpoofAppVersionCompatibility.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.layout.spoofappversion.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class SpoofAppVersionCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/fingerprints/SpoofAppVersionFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/fingerprints/SpoofAppVersionFingerprint.kt
index 8a5736f128..901f34d459 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/fingerprints/SpoofAppVersionFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/fingerprints/SpoofAppVersionFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.spoofappversion.bytecode.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SpoofAppVersionFingerprint : MethodFingerprint(
"L", AccessFlags.PUBLIC or AccessFlags.STATIC, listOf("L"), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/patch/SpoofAppVersionPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/patch/SpoofAppVersionPatch.kt
index d2fb20c422..135676df06 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/patch/SpoofAppVersionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/bytecode/patch/SpoofAppVersionPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.layout.spoofappversion.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.ArrayResource
@@ -18,7 +16,7 @@ import app.revanced.patches.youtube.layout.spoofappversion.annotations.SpoofAppV
import app.revanced.patches.youtube.layout.spoofappversion.bytecode.fingerprints.SpoofAppVersionFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -30,7 +28,7 @@ class SpoofAppVersionPatch : BytecodePatch(
SpoofAppVersionFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_spoof_app_version",
@@ -79,9 +77,7 @@ class SpoofAppVersionPatch : BytecodePatch(
move-result-object v$buildOverrideNameRegister
"""
)
- } ?: return SpoofAppVersionFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw SpoofAppVersionFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/annotations/StartupShortsResetCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/annotations/StartupShortsResetCompatibility.kt
index 9b2022792f..845d136637 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/annotations/StartupShortsResetCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/annotations/StartupShortsResetCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.startupshortsreset.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class StartupShortsResetCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/fingerprints/UserWasInShortsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/fingerprints/UserWasInShortsFingerprint.kt
index a994a26d6e..486087b8fd 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/fingerprints/UserWasInShortsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/fingerprints/UserWasInShortsFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.layout.startupshortsreset.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(3)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/patch/DisableShortsOnStartupPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/patch/DisableShortsOnStartupPatch.kt
index 13f3553465..b4f11b481b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/patch/DisableShortsOnStartupPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/patch/DisableShortsOnStartupPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -26,7 +24,7 @@ class DisableShortsOnStartupPatch : BytecodePatch(
UserWasInShortsFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_disable_resuming_shorts_player",
@@ -51,7 +49,5 @@ class DisableShortsOnStartupPatch : BytecodePatch(
nop
"""
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/annotations/EnableTabletLayoutCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/annotations/EnableTabletLayoutCompatibility.kt
new file mode 100644
index 0000000000..430281f605
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/annotations/EnableTabletLayoutCompatibility.kt
@@ -0,0 +1,8 @@
+package app.revanced.patches.youtube.layout.tablet.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility([Package("com.google.android.youtube")])
+@Target(AnnotationTarget.CLASS)
+internal annotation class EnableTabletLayoutCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/fingerprints/GetFormFactorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/fingerprints/GetFormFactorFingerprint.kt
new file mode 100644
index 0000000000..da57606793
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/fingerprints/GetFormFactorFingerprint.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.youtube.layout.tablet.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object GetFormFactorFingerprint : MethodFingerprint(
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC,
+ returnType = "L",
+ parameters = listOf("Landroid/content/Context;", "Ljava/util/List;"),
+ opcodes = listOf(
+ Opcode.SGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.IF_EQZ,
+ Opcode.SGET_OBJECT,
+ Opcode.RETURN_OBJECT,
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.RETURN_OBJECT
+ )
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/patch/EnableTabletLayoutPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/patch/EnableTabletLayoutPatch.kt
new file mode 100644
index 0000000000..95bbc1c47f
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tablet/patch/EnableTabletLayoutPatch.kt
@@ -0,0 +1,56 @@
+package app.revanced.patches.youtube.layout.tablet.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.util.smali.ExternalLabel
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
+import app.revanced.patches.youtube.layout.tablet.annotations.EnableTabletLayoutCompatibility
+import app.revanced.patches.youtube.layout.tablet.fingerprints.GetFormFactorFingerprint
+import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+
+@Patch
+@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
+@Name("Enable tablet layout")
+@Description("Spoofs the device form factor to a tablet which enables the tablet layout.")
+@EnableTabletLayoutCompatibility
+class EnableTabletLayoutPatch : BytecodePatch(listOf(GetFormFactorFingerprint)) {
+ override fun execute(context: BytecodeContext) {
+ SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
+ SwitchPreference(
+ "revanced_tablet_layout",
+ StringResource("revanced_tablet_layout_enabled_title", "Enable tablet layout"),
+ StringResource("revanced_tablet_layout_summary_on", "Tablet layout is enabled"),
+ StringResource("revanced_tablet_layout_summary_off", "Tablet layout is disabled"),
+ StringResource("revanced_tablet_layout_user_dialog_message", "Community posts do not show up on tablet layouts")
+ )
+ )
+
+ GetFormFactorFingerprint.result?.let {
+ it.mutableMethod.apply {
+ val returnLargeFormFactorIndex = it.scanResult.patternScanResult!!.endIndex - 4
+
+ addInstructionsWithLabels(
+ 0,
+ """
+ invoke-static {}, Lapp/revanced/integrations/patches/EnableTabletLayoutPatch;->enableTabletLayout()Z
+ move-result v0
+ if-nez v0, :is_large_form_factor
+ """,
+ ExternalLabel(
+ "is_large_form_factor",
+ getInstruction(returnLargeFormFactorIndex)
+ )
+ )
+ }
+ } ?: GetFormFactorFingerprint.exception
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/annotations/TabletMiniPlayerCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/annotations/TabletMiniPlayerCompatibility.kt
index 4284c94d0f..2bc544b04c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/annotations/TabletMiniPlayerCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/annotations/TabletMiniPlayerCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.layout.tabletminiplayer.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class TabletMiniPlayerCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerDimensionsCalculatorParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerDimensionsCalculatorParentFingerprint.kt
index 735c554625..ad90d3fe87 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerDimensionsCalculatorParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerDimensionsCalculatorParentFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MiniPlayerDimensionsCalculatorParentFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideFingerprint.kt
index f2210f76bc..73f593506c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideFingerprint.kt
@@ -2,22 +2,11 @@ package app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
object MiniPlayerOverrideFingerprint : MethodFingerprint(
- "Z", AccessFlags.STATIC or AccessFlags.PUBLIC,
- listOf("Landroid/content/Context;"),
- opcodes = listOf(
- Opcode.INVOKE_STATIC,
- Opcode.MOVE_RESULT,
- Opcode.CONST_4,
- Opcode.IF_EQ,
- Opcode.CONST_4,
- Opcode.IF_EQ,
- Opcode.CONST_4, // override this value
- Opcode.RETURN,
- Opcode.CONST_4, // override this value
- Opcode.RETURN
- ),
+ returnType = "L",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = listOf("L"),
+ strings = listOf("appName")
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideNoContextFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideNoContextFingerprint.kt
index aba50b3d4b..68d9773e73 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideNoContextFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideNoContextFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MiniPlayerOverrideNoContextFingerprint : MethodFingerprint(
"Z", AccessFlags.FINAL or AccessFlags.PRIVATE,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideParentFingerprint.kt
deleted file mode 100644
index df53522353..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerOverrideParentFingerprint.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-
-object MiniPlayerOverrideParentFingerprint : MethodFingerprint(
- strings = listOf("Unset or unknown Input OneOf case for dynamic input")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerResponseModelSizeCheckFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerResponseModelSizeCheckFingerprint.kt
index 45cede93b2..0cf96c996b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerResponseModelSizeCheckFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/fingerprints/MiniPlayerResponseModelSizeCheckFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MiniPlayerResponseModelSizeCheckFingerprint : MethodFingerprint(
"L",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/patch/TabletMiniPlayerPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/patch/TabletMiniPlayerPatch.kt
index c642800de7..9e4cfe8dd0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/patch/TabletMiniPlayerPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/patch/TabletMiniPlayerPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.layout.tabletminiplayer.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,20 +8,21 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.layout.tabletminiplayer.annotations.TabletMiniPlayerCompatibility
-import app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints.*
+import app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints.MiniPlayerDimensionsCalculatorParentFingerprint
+import app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints.MiniPlayerOverrideFingerprint
+import app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints.MiniPlayerOverrideNoContextFingerprint
+import app.revanced.patches.youtube.layout.tabletminiplayer.fingerprints.MiniPlayerResponseModelSizeCheckFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -32,10 +33,10 @@ class TabletMiniPlayerPatch : BytecodePatch(
listOf(
MiniPlayerDimensionsCalculatorParentFingerprint,
MiniPlayerResponseModelSizeCheckFingerprint,
- MiniPlayerOverrideParentFingerprint
+ MiniPlayerOverrideFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_tablet_miniplayer",
@@ -46,7 +47,7 @@ class TabletMiniPlayerPatch : BytecodePatch(
)
// First resolve the fingerprints via the parent fingerprint.
- MiniPlayerDimensionsCalculatorParentFingerprint.result ?: return MiniPlayerDimensionsCalculatorParentFingerprint.toErrorResult()
+ MiniPlayerDimensionsCalculatorParentFingerprint.result ?: throw MiniPlayerDimensionsCalculatorParentFingerprint.exception
val miniPlayerClass = MiniPlayerDimensionsCalculatorParentFingerprint.result!!.classDef
/*
@@ -62,40 +63,38 @@ class TabletMiniPlayerPatch : BytecodePatch(
/** same register used to return **/
)
- /*
- * Method with context parameter.
- */
- MiniPlayerOverrideParentFingerprint.result?.let {
- if (!MiniPlayerOverrideFingerprint.resolve(context, it.classDef))
- throw MiniPlayerOverrideFingerprint.toErrorResult()
- } ?: return MiniPlayerOverrideParentFingerprint.toErrorResult()
-
/*
* Override every return instruction with the proxy call.
*/
- MiniPlayerOverrideFingerprint.result!!.mutableMethod.apply {
- implementation!!.let { implementation ->
- val returnIndices = implementation.instructions
- .withIndex()
- .filter { (_, instruction) -> instruction.opcode == Opcode.RETURN }
- .map { (index, _) -> index }
-
- if (returnIndices.isEmpty()) throw PatchResultError("No return instructions found.")
-
- // This method clobbers register p0 to return the value, calculate to override.
- val returnedRegister = implementation.registerCount - parameters.size
-
- // Hook the returned register on every return instruction.
- returnIndices.forEach { index -> insertOverride(index, returnedRegister) }
+ MiniPlayerOverrideFingerprint.result?.let { result ->
+ result.mutableMethod.let { method ->
+ val appNameStringIndex = result.scanResult.stringsScanResult!!.matches.first().index + 2
+ context.toMethodWalker(method).nextMethod(appNameStringIndex, true)
+ .getMethod() as MutableMethod
+ }.apply {
+ implementation!!.let { implementation ->
+ val returnIndices = implementation.instructions
+ .withIndex()
+ .filter { (_, instruction) -> instruction.opcode == Opcode.RETURN }
+ .map { (index, _) -> index }
+
+ if (returnIndices.isEmpty()) throw PatchException("No return instructions found.")
+
+ // This method clobbers register p0 to return the value, calculate to override.
+ val returnedRegister = implementation.registerCount - parameters.size
+
+ // Hook the returned register on every return instruction.
+ returnIndices.forEach { index -> insertOverride(index, returnedRegister) }
+ }
}
- }
+
+ return@let
+ } ?: throw MiniPlayerOverrideFingerprint.exception
/*
* Size check return value override.
*/
MiniPlayerResponseModelSizeCheckFingerprint.addProxyCall()
-
- return PatchResultSuccess()
}
// Helper methods.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/fingerprints/LithoThemeFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/fingerprints/LithoThemeFingerprint.kt
index 70d9f9ea64..9d2d301caa 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/fingerprints/LithoThemeFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/fingerprints/LithoThemeFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.layout.theme.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object LithoThemeFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/LithoColorHookPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/LithoColorHookPatch.kt
index 0bd734f312..c253da7892 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/LithoColorHookPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/LithoColorHookPatch.kt
@@ -1,13 +1,11 @@
package app.revanced.patches.youtube.layout.theme.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.youtube.layout.theme.annotations.ThemeCompatibility
import app.revanced.patches.youtube.layout.theme.bytecode.fingerprints.LithoThemeFingerprint
@@ -16,14 +14,12 @@ import app.revanced.patches.youtube.layout.theme.bytecode.fingerprints.LithoThem
@Description("Adds a hook to set color of Litho components.")
@ThemeCompatibility
class LithoColorHookPatch : BytecodePatch(listOf(LithoThemeFingerprint)) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
LithoThemeFingerprint.result?.let {
insertionIndex = it.scanResult.patternScanResult!!.endIndex - 1
colorRegister = "p1"
insertionMethod = it.mutableMethod
- } ?: return LithoThemeFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw LithoThemeFingerprint.exception
}
companion object {
private var insertionIndex : Int = -1
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/ThemeBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/ThemeBytecodePatch.kt
index c12180e232..eb2c81c0d9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/ThemeBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/bytecode/patch/ThemeBytecodePatch.kt
@@ -17,10 +17,8 @@ import app.revanced.patches.youtube.layout.theme.resource.ThemeResourcePatch
@ThemeCompatibility
class ThemeBytecodePatch : BytecodePatch() {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
LithoColorHookPatch.lithoColorOverrideHook(INTEGRATIONS_CLASS_DESCRIPTOR, "getValue")
-
- return PatchResultSuccess()
}
companion object : OptionsContainer() {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
index ecdbbb1924..cf96bbdf69 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
@@ -1,9 +1,7 @@
package app.revanced.patches.youtube.layout.theme.resource
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -19,7 +17,7 @@ import org.w3c.dom.Element
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class, SeekbarPreferencesPatch::class])
class ThemeResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SeekbarPreferencesPatch.addPreferences(
SwitchPreference(
"revanced_seekbar_custom_color",
@@ -85,13 +83,11 @@ class ThemeResourcePatch : ResourcePatch {
return@editSplashScreen
}
}
- return PatchResultError("Failed to modify launch screen")
+ throw PatchException("Failed to modify launch screen")
}
}
}
-
- return PatchResultSuccess()
}
private fun addColorResource(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/annotations/IntegrationsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/annotations/AlternativeThumbnailsCompatibility.kt
similarity index 53%
rename from src/main/kotlin/app/revanced/patches/youtube/misc/integrations/annotations/IntegrationsCompatibility.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/annotations/AlternativeThumbnailsCompatibility.kt
index 9de9f53c36..aa26a419b7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/annotations/IntegrationsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/annotations/AlternativeThumbnailsCompatibility.kt
@@ -1,8 +1,8 @@
-package app.revanced.patches.youtube.misc.integrations.annotations
+package app.revanced.patches.youtube.layout.thumbnails.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
-internal annotation class IntegrationsCompatibility
\ No newline at end of file
+internal annotation class AlternativeThumbnailsCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnFailureFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnFailureFingerprint.kt
new file mode 100644
index 0000000000..4a1cd03cef
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnFailureFingerprint.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.youtube.layout.thumbnails.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+object CronetURLRequestCallbackOnFailureFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = listOf("Lorg/chromium/net/UrlRequest;", "Lorg/chromium/net/UrlResponseInfo;", "Lorg/chromium/net/CronetException;"),
+ customFingerprint = { methodDef, _ ->
+ methodDef.name == "onFailed"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnResponseStartedFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnResponseStartedFingerprint.kt
new file mode 100644
index 0000000000..8786cd6d30
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnResponseStartedFingerprint.kt
@@ -0,0 +1,21 @@
+package app.revanced.patches.youtube.layout.thumbnails.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+// Acts as a parent fingerprint.
+object CronetURLRequestCallbackOnResponseStartedFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = listOf("Lorg/chromium/net/UrlRequest;", "Lorg/chromium/net/UrlResponseInfo;"),
+ strings = listOf(
+ "Content-Length",
+ "Content-Type",
+ "identity",
+ "application/x-protobuf"
+ ),
+ customFingerprint = { methodDef, _ ->
+ methodDef.name == "onResponseStarted"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnSucceededFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnSucceededFingerprint.kt
new file mode 100644
index 0000000000..335a791163
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/CronetURLRequestCallbackOnSucceededFingerprint.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.youtube.layout.thumbnails.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+object CronetURLRequestCallbackOnSucceededFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = listOf("Lorg/chromium/net/UrlRequest;", "Lorg/chromium/net/UrlResponseInfo;"),
+ customFingerprint = { methodDef, _ ->
+ methodDef.name == "onSucceeded"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlFingerprint.kt
new file mode 100644
index 0000000000..d7d8b780b0
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlFingerprint.kt
@@ -0,0 +1,10 @@
+package app.revanced.patches.youtube.layout.thumbnails.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+object MessageDigestImageUrlFingerprint : MethodFingerprint(
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
+ parameters = listOf("Ljava/lang/String;", "L")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlParentFingerprint.kt
new file mode 100644
index 0000000000..461bdb266f
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/fingerprints/MessageDigestImageUrlParentFingerprint.kt
@@ -0,0 +1,12 @@
+package app.revanced.patches.youtube.layout.thumbnails.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+object MessageDigestImageUrlParentFingerprint : MethodFingerprint(
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ returnType = "Ljava/lang/String;",
+ parameters = listOf(),
+ strings = listOf("@#&=*+-_.,:!?()/~'%;\$"),
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/patch/AlternativeThumbnailsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/patch/AlternativeThumbnailsPatch.kt
new file mode 100644
index 0000000000..b841660112
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/patch/AlternativeThumbnailsPatch.kt
@@ -0,0 +1,153 @@
+package app.revanced.patches.youtube.layout.thumbnails.patch
+
+import app.revanced.extensions.exception
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
+import app.revanced.patches.shared.settings.preference.impl.*
+import app.revanced.patches.youtube.layout.thumbnails.annotations.AlternativeThumbnailsCompatibility
+import app.revanced.patches.youtube.layout.thumbnails.fingerprints.*
+import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+
+@Patch
+@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
+@Name("Alternative thumbnails")
+@AlternativeThumbnailsCompatibility
+@Description("Adds options to replace video thumbnails with still image captures of the video.")
+class AlternativeThumbnailsPatch : BytecodePatch(
+ listOf(MessageDigestImageUrlParentFingerprint, CronetURLRequestCallbackOnResponseStartedFingerprint)
+) {
+ override fun execute(context: BytecodeContext) {
+ SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
+ PreferenceScreen(
+ "revanced_alt_thumbnails_preference_screen",
+ StringResource("revanced_alt_thumbnails_preference_screen_title", "Alternative thumbnails"),
+ listOf(
+ SwitchPreference(
+ "revanced_alt_thumbnail",
+ StringResource("revanced_alt_thumbnail_title", "Enable alternative thumbnails"),
+ StringResource("revanced_alt_thumbnail_summary_on", "YouTube video stills shown"),
+ StringResource("revanced_alt_thumbnail_summary_off", "Original YouTube thumbnails shown")
+ ),
+ ListPreference(
+ "revanced_alt_thumbnail_type",
+ StringResource("revanced_alt_thumbnail_type_title", "Video time to take the still from"),
+ ArrayResource(
+ "revanced_alt_thumbnail_type_entries",
+ listOf(
+ StringResource("revanced_alt_thumbnail_type_entry_1", "Beginning of video"),
+ StringResource("revanced_alt_thumbnail_type_entry_2", "Middle of video"),
+ StringResource("revanced_alt_thumbnail_type_entry_3", "End of video"),
+ )
+ ),
+ ArrayResource(
+ "revanced_alt_thumbnail_type_entry_values",
+ listOf(
+ StringResource("revanced_alt_thumbnail_type_entry_value_1", "1"),
+ StringResource("revanced_alt_thumbnail_type_entry_value_2", "2"),
+ StringResource("revanced_alt_thumbnail_type_entry_value_3", "3"),
+ )
+ )
+ ),
+ SwitchPreference(
+ "revanced_alt_thumbnail_fast_quality",
+ StringResource("revanced_alt_thumbnail_fast_quality_title", "Use fast alternative thumbnails"),
+ StringResource("revanced_alt_thumbnail_fast_quality_summary_on", "Using medium quality stills. Thumbnails will load faster, but live streams, unreleased, or very old videos may show blank thumbnails"),
+ StringResource("revanced_alt_thumbnail_fast_quality_summary_off", "Using high quality stills")
+ ),
+ NonInteractivePreference(
+ StringResource("revanced_alt_thumbnail_about_title", "About"),
+ StringResource("revanced_alt_thumbnail_about_summary", "Alternative thumbnails are still images from the beginning/middle/end of each video. No external API is used, as these images are built into YouTube")
+ )
+ ),
+ StringResource("revanced_alt_thumbnails_preference_screen_summary", "Video thumbnail settings")
+ )
+ )
+
+ MessageDigestImageUrlParentFingerprint.result
+ ?: throw MessageDigestImageUrlParentFingerprint.exception
+ MessageDigestImageUrlFingerprint.resolve(context, MessageDigestImageUrlParentFingerprint.result!!.classDef)
+ MessageDigestImageUrlFingerprint.result?.apply {
+ loadImageUrlMethod = mutableMethod
+ } ?: throw MessageDigestImageUrlFingerprint.exception
+ addImageUrlHook(INTEGRATIONS_CLASS_DESCRIPTOR, true)
+
+
+ CronetURLRequestCallbackOnResponseStartedFingerprint.result
+ ?: throw CronetURLRequestCallbackOnResponseStartedFingerprint.exception
+ CronetURLRequestCallbackOnSucceededFingerprint.resolve(
+ context,
+ CronetURLRequestCallbackOnResponseStartedFingerprint.result!!.classDef
+ )
+ CronetURLRequestCallbackOnSucceededFingerprint.result?.apply {
+ loadImageSuccessCallbackMethod = mutableMethod
+ } ?: throw CronetURLRequestCallbackOnSucceededFingerprint.exception
+ addImageUrlSuccessCallbackHook(INTEGRATIONS_CLASS_DESCRIPTOR)
+
+
+ CronetURLRequestCallbackOnFailureFingerprint.resolve(
+ context,
+ CronetURLRequestCallbackOnResponseStartedFingerprint.result!!.classDef
+ )
+ CronetURLRequestCallbackOnFailureFingerprint.result?.apply {
+ loadImageErrorCallbackMethod = mutableMethod
+ } ?: throw CronetURLRequestCallbackOnFailureFingerprint.exception
+ }
+
+ internal companion object {
+ private const val INTEGRATIONS_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/patches/AlternativeThumbnailsPatch;"
+
+ private lateinit var loadImageUrlMethod: MutableMethod
+ private var loadImageUrlIndex = 0
+
+ private lateinit var loadImageSuccessCallbackMethod: MutableMethod
+ private var loadImageSuccessCallbackIndex = 0
+
+ private lateinit var loadImageErrorCallbackMethod: MutableMethod
+ private var loadImageErrorCallbackIndex = 0
+
+ /**
+ * @param highPriority If the hook should be called before all other hooks.
+ */
+ fun addImageUrlHook(targetMethodClass: String, highPriority: Boolean) {
+ loadImageUrlMethod.addInstructions(
+ if (highPriority) 0 else loadImageUrlIndex, """
+ invoke-static { p1 }, $targetMethodClass->overrideImageURL(Ljava/lang/String;)Ljava/lang/String;
+ move-result-object p1
+ """
+ )
+ loadImageUrlIndex += 2
+ }
+
+ /**
+ * If a connection completed, which includes normal 200 responses but also includes
+ * status 404 and other error like http responses.
+ */
+ fun addImageUrlSuccessCallbackHook(targetMethodClass: String) {
+ loadImageSuccessCallbackMethod.addInstruction(
+ loadImageSuccessCallbackIndex++,
+ "invoke-static { p2 }, $targetMethodClass->handleCronetSuccess(Lorg/chromium/net/UrlResponseInfo;)V"
+ )
+ }
+
+ /**
+ * If a connection outright failed to complete any connection.
+ */
+ fun addImageUrlErrorCallbackHook(targetMethodClass: String) {
+ loadImageErrorCallbackMethod.addInstruction(
+ loadImageErrorCallbackIndex++,
+ "invoke-static { p2, p3 }, $targetMethodClass->handleCronetFailure(Lorg/chromium/net/UrlResponseInfo;Ljava/io/IOException;)V"
+ )
+ }
+
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/annotations/AutoRepeatCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/annotations/AutoRepeatCompatibility.kt
index b4b62674c7..812c6a414e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/annotations/AutoRepeatCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/annotations/AutoRepeatCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.autorepeat.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class AutoRepeatCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatFingerprint.kt
index c784ba8a00..204b3c7c4f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.autorepeat.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object AutoRepeatFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatParentFingerprint.kt
index 81d6b00832..b08e57915e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/fingerprints/AutoRepeatParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.autorepeat.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object AutoRepeatParentFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/patch/AutoRepeatPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/patch/AutoRepeatPatch.kt
index 42c2df571c..dfdacc2464 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/patch/AutoRepeatPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/patch/AutoRepeatPatch.kt
@@ -7,9 +7,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWith
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -30,7 +28,7 @@ class AutoRepeatPatch : BytecodePatch(
AutoRepeatParentFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.MISC.addPreferences(
SwitchPreference(
"revanced_auto_repeat",
@@ -42,7 +40,7 @@ class AutoRepeatPatch : BytecodePatch(
//Get Result from the ParentFingerprint which is the playMethod we need to get.
val parentResult = AutoRepeatParentFingerprint.result
- ?: return PatchResultError("ParentFingerprint did not resolve.")
+ ?: throw PatchException("ParentFingerprint did not resolve.")
//this one needs to be called when app/revanced/integrations/patches/AutoRepeatPatch;->shouldAutoRepeat() returns true
val playMethod = parentResult.mutableMethod
@@ -52,7 +50,7 @@ class AutoRepeatPatch : BytecodePatch(
//This is the method we search for
val result = AutoRepeatFingerprint.result
- ?: return PatchResultError("FingerPrint did not resolve.")
+ ?: throw PatchException("FingerPrint did not resolve.")
val method = result.mutableMethod
//Instructions to add to the smali code
@@ -67,7 +65,7 @@ class AutoRepeatPatch : BytecodePatch(
//Get the implementation so we can do a check for null and get instructions size.
val implementation = method.implementation
- ?: return PatchResultError("No Method Implementation found!")
+ ?: throw PatchException("No Method Implementation found!")
//Since addInstructions needs an index which starts counting at 0 and size starts counting at 1,
//we have to remove 1 to get the latest instruction
@@ -80,6 +78,5 @@ class AutoRepeatPatch : BytecodePatch(
method.addInstructionsWithLabels(index, instructions)
//Everything worked as expected, return Success
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/fingerprints/CreateBottomSheetFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/fingerprints/CreateBottomSheetFingerprint.kt
index 6a005a36ba..c60cbdc6d9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/fingerprints/CreateBottomSheetFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/fingerprints/CreateBottomSheetFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.misc.bottomsheet.hook.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.misc.bottomsheet.hook.patch.BottomSheetHookResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object CreateBottomSheetFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookPatch.kt
index 73c27a5bdc..2084360aec 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookPatch.kt
@@ -1,22 +1,20 @@
package app.revanced.patches.youtube.misc.bottomsheet.hook.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.youtube.misc.bottomsheet.hook.fingerprints.CreateBottomSheetFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@DependsOn([IntegrationsPatch::class, BottomSheetHookResourcePatch::class])
class BottomSheetHookPatch : BytecodePatch(
listOf(CreateBottomSheetFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
CreateBottomSheetFingerprint.result?.let {
it.mutableMethod.apply {
val returnLinearLayoutIndex = implementation!!.instructions.lastIndex
@@ -31,9 +29,7 @@ class BottomSheetHookPatch : BytecodePatch(
)
}
}
- } ?: return CreateBottomSheetFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw CreateBottomSheetFingerprint.exception
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookResourcePatch.kt
index bfb244df0e..14b434d6ae 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/bottomsheet/hook/patch/BottomSheetHookResourcePatch.kt
@@ -1,20 +1,16 @@
package app.revanced.patches.youtube.misc.bottomsheet.hook.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@DependsOn([ResourceMappingPatch::class])
class BottomSheetHookResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
bottomSheetMargins = ResourceMappingPatch.resourceMappings.find { it.name == "bottom_sheet_margins" }?.id
- ?: return PatchResultError("Could not find resource")
-
- return PatchResultSuccess()
+ ?: throw PatchException("Could not find resource")
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/debugging/patch/DebuggingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/debugging/patch/DebuggingPatch.kt
index 8993ae107f..1a1e45dd85 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/debugging/patch/DebuggingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/debugging/patch/DebuggingPatch.kt
@@ -3,8 +3,6 @@ package app.revanced.patches.youtube.misc.debugging.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
@@ -20,7 +18,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@Description("Adds debugging options.")
@DebuggingCompatibility
class DebuggingPatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.MISC.addPreferences(
app.revanced.patches.shared.settings.preference.impl.PreferenceScreen(
"revanced_debug_preference_screen",
@@ -32,6 +30,15 @@ class DebuggingPatch : ResourcePatch {
StringResource("revanced_debug_summary_on", "Debug logs are enabled"),
StringResource("revanced_debug_summary_off", "Debug logs are disabled")
),
+ SwitchPreference(
+ "revanced_debug_protobuffer",
+ StringResource(
+ "revanced_debug_protobuffer_title",
+ "Log protocol buffer"
+ ),
+ StringResource("revanced_debug_protobuffer_summary_on", "Debug logs include proto buffer"),
+ StringResource("revanced_debug_protobuffer_summary_off", "Debug logs do not include proto buffer")
+ ),
SwitchPreference(
"revanced_debug_stacktrace",
StringResource(
@@ -58,7 +65,5 @@ class DebuggingPatch : ResourcePatch {
StringResource("revanced_debug_preference_screen_summary", "Enable or disable debugging options")
)
)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/annotation/FixBackToExitGestureCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/annotation/FixBackToExitGestureCompatibility.kt
index bce548f112..22073dc1e3 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/annotation/FixBackToExitGestureCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/annotation/FixBackToExitGestureCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.fix.backtoexitgesture.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class FixBackToExitGestureCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/OnBackPressedFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/OnBackPressedFingerprint.kt
index 52fee3beb5..424a80cf49 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/OnBackPressedFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/OnBackPressedFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object OnBackPressedFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewScrollingFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewScrollingFingerprint.kt
index 73c5faeeb7..c44ebe9c3f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewScrollingFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewScrollingFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object RecyclerViewScrollingFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingFingerprint.kt
index 994436544f..a5b2447592 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object RecyclerViewTopScrollingFingerprint : MethodFingerprint(
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingParentFingerprint.kt
index b891aa4ae2..ff6804c9f0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/fingerprints/RecyclerViewTopScrollingParentFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object RecyclerViewTopScrollingParentFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/patch/FixBackToExitGesturePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/patch/FixBackToExitGesturePatch.kt
index 152f9853ed..19265655ba 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/patch/FixBackToExitGesturePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/backtoexitgesture/patch/FixBackToExitGesturePatch.kt
@@ -1,15 +1,12 @@
package app.revanced.patches.youtube.misc.fix.backtoexitgesture.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.youtube.misc.fix.backtoexitgesture.annotation.FixBackToExitGestureCompatibility
import app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints.OnBackPressedFingerprint
import app.revanced.patches.youtube.misc.fix.backtoexitgesture.fingerprints.RecyclerViewScrollingFingerprint
@@ -25,12 +22,12 @@ class FixBackToExitGesturePatch : BytecodePatch(
OnBackPressedFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
RecyclerViewTopScrollingFingerprint.apply {
resolve(
context,
RecyclerViewTopScrollingParentFingerprint.result?.classDef
- ?: return RecyclerViewTopScrollingParentFingerprint.toErrorResult()
+ ?: throw RecyclerViewTopScrollingParentFingerprint.exception
)
}
@@ -44,15 +41,7 @@ class FixBackToExitGesturePatch : BytecodePatch(
OnBackPressedFingerprint to IntegrationsMethod(
"p0", "onBackPressed", "Lcom/google/android/apps/youtube/app/watchwhile/WatchWhileActivity;"
)
- ).forEach { (fingerprint, target) ->
- try {
- fingerprint.injectCall(target)
- } catch (error: PatchResultError) {
- return error
- }
- }
-
- return PatchResultSuccess()
+ ).forEach { (fingerprint, target) -> fingerprint.injectCall(target) }
}
private companion object {
@@ -79,6 +68,6 @@ class FixBackToExitGesturePatch : BytecodePatch(
mutableMethod.addInstruction(
scanResult.patternScanResult!!.endIndex, targetMethod.toString()
)
- } ?: throw this.toErrorResult()
+ } ?: throw this.exception
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/annotations/ClientSpoofCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/annotations/ClientSpoofCompatibility.kt
index 24c49518a6..476bba5a53 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/annotations/ClientSpoofCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/annotations/ClientSpoofCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.fix.playback.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class ClientSpoofCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ProtobufParameterBuilderFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ProtobufParameterBuilderFingerprint.kt
index 3b61b09dde..46568f1f49 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ProtobufParameterBuilderFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ProtobufParameterBuilderFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.misc.fix.playback.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object ProtobufParameterBuilderFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ScrubbedPreviewLayoutFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ScrubbedPreviewLayoutFingerprint.kt
index 0246694ee7..aa3375e38e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ScrubbedPreviewLayoutFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/ScrubbedPreviewLayoutFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.misc.fix.playback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.misc.fix.playback.patch.SpoofSignatureVerificationResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ScrubbedPreviewLayoutFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailFingerprint.kt
index 51e824d0d5..15466014de 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.fix.playback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
/**
* Resolves using the class found in [StoryboardThumbnailParentFingerprint].
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailParentFingerprint.kt
index ae50aae996..d9ec11c7df 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/StoryboardThumbnailParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.fix.playback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* Here lies code that creates the seekbar thumbnails.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/UserAgentHeaderBuilderFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/UserAgentHeaderBuilderFingerprint.kt
index ab71b605fc..127f7a23d0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/UserAgentHeaderBuilderFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/UserAgentHeaderBuilderFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.misc.fix.playback.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object UserAgentHeaderBuilderFingerprint : MethodFingerprint(
parameters = listOf("L", "L", "L"),
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/ClientSpoofPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/ClientSpoofPatch.kt
index 605b2319d1..5d8f76736b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/ClientSpoofPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/ClientSpoofPatch.kt
@@ -1,19 +1,17 @@
package app.revanced.patches.youtube.misc.fix.playback.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.misc.fix.playback.annotations.ClientSpoofCompatibility
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.UserAgentHeaderBuilderFingerprint
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
@Patch
@Name("Client spoof")
@@ -23,7 +21,7 @@ import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
class ClientSpoofPatch : BytecodePatch(
listOf(UserAgentHeaderBuilderFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
UserAgentHeaderBuilderFingerprint.result?.let { result ->
val insertIndex = result.scanResult.patternScanResult!!.endIndex
result.mutableMethod.apply {
@@ -32,9 +30,7 @@ class ClientSpoofPatch : BytecodePatch(
addInstruction(insertIndex, "const-string v$packageNameRegister, \"$ORIGINAL_PACKAGE_NAME\"")
}
- } ?: return UserAgentHeaderBuilderFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw UserAgentHeaderBuilderFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
index f87c1683b1..a7b74c007a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
@@ -1,17 +1,14 @@
package app.revanced.patches.youtube.misc.fix.playback.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.ProtobufParameterBuilderFingerprint
@@ -20,7 +17,7 @@ import app.revanced.patches.youtube.misc.fix.playback.fingerprints.StoryboardThu
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.StoryboardThumbnailParentFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
@Name("Spoof signature verification")
@Description("Spoofs the client to prevent playback issues.")
@@ -36,7 +33,7 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
ScrubbedPreviewLayoutFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// hook parameter
ProtobufParameterBuilderFingerprint.result?.let {
@@ -55,14 +52,14 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
"""
)
}
- } ?: return ProtobufParameterBuilderFingerprint.toErrorResult()
+ } ?: throw ProtobufParameterBuilderFingerprint.exception
// When signature spoofing is enabled, the seekbar when tapped does not show
// the video time, chapter names, or the video thumbnail.
// Changing the value returned of this method forces all of these to show up,
// except the thumbnails are blank, which is handled with the patch below.
- StoryboardThumbnailParentFingerprint.result ?: return StoryboardThumbnailParentFingerprint.toErrorResult()
+ StoryboardThumbnailParentFingerprint.result ?: throw StoryboardThumbnailParentFingerprint.exception
StoryboardThumbnailFingerprint.resolve(context, StoryboardThumbnailParentFingerprint.result!!.classDef)
StoryboardThumbnailFingerprint.result?.apply {
val endIndex = scanResult.patternScanResult!!.endIndex
@@ -84,7 +81,7 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
return v0
"""
)
- } ?: return StoryboardThumbnailFingerprint.toErrorResult()
+ } ?: throw StoryboardThumbnailFingerprint.exception
// Seekbar thumbnail now show up but are always a blank image.
@@ -102,9 +99,7 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
"""
)
}
- } ?: return ScrubbedPreviewLayoutFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw ScrubbedPreviewLayoutFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationResourcePatch.kt
index b82dcfd956..56a9f7bea6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationResourcePatch.kt
@@ -1,20 +1,17 @@
package app.revanced.patches.youtube.misc.fix.playback.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
-import app.revanced.patches.youtube.misc.fix.playback.fingerprints.*
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class SpoofSignatureVerificationResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.MISC.addPreferences(
SwitchPreference(
"revanced_spoof_signature_verification",
@@ -23,19 +20,17 @@ class SpoofSignatureVerificationResourcePatch : ResourcePatch {
"App signature spoofed\\n\\n"
+ "Side effects include:\\n"
+ "• Ambient mode may not work\\n"
- + "• Seekbar thumbnails are hidden\\n"
- + "• Downloading videos may not work"),
- StringResource("revanced_spoof_signature_verification_summary_off", "App signature not spoofed"),
+ + "• Downloading videos may not work\\n"
+ + "• Seekbar thumbnails are always hidden"),
+ StringResource("revanced_spoof_signature_verification_summary_off", "App signature not spoofed\\n\\nVideo playback may not work"),
StringResource("revanced_spoof_signature_verification_user_dialog_message",
- "Turning off this setting may cause playback issues.")
+ "Turning off this setting will cause video playback issues.")
)
)
scrubbedPreviewThumbnailResourceId = ResourceMappingPatch.resourceMappings.single {
it.type == "id" && it.name == "thumbnail"
}.id
-
- return PatchResultSuccess()
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/APIPlayerServiceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/APIPlayerServiceFingerprint.kt
index 87607a7707..e391444ccf 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/APIPlayerServiceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/APIPlayerServiceFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* For embedded playback.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt
index 80e4774604..aa75270eeb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* For embedded playback inside Google Play store (and probably other situations as well).
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerFingerprint.kt
index 7661564709..790bc6c8f5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* For embedded playback inside the Google app (such as the in app 'discover' tab).
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbedFragmentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbedFragmentFingerprint.kt
index e719289ffc..5541679462 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbedFragmentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbedFragmentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* For embedded playback. Likely covers Google Play store and other Google products.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbeddedPlayerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbeddedPlayerFingerprint.kt
index 6a16bf2679..a7ef3632e8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbeddedPlayerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/RemoteEmbeddedPlayerFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* For embedded playback inside 3rd party android app (such as 3rd party Reddit apps).
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/StandalonePlayerActivityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/StandalonePlayerActivityFingerprint.kt
index 9d2eb4c073..bb99582044 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/StandalonePlayerActivityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/StandalonePlayerActivityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.integrations.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* Old API activity to embed YouTube into 3rd party Android apps.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
index e3b5a031c9..492264e900 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
@@ -3,17 +3,9 @@ package app.revanced.patches.youtube.misc.integrations.patch
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch
-import app.revanced.patches.youtube.misc.integrations.annotations.IntegrationsCompatibility
-import app.revanced.patches.youtube.misc.integrations.fingerprints.EmbeddedPlayerControlsOverlayFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.EmbeddedPlayerFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.ApplicationInitFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.RemoteEmbedFragmentFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.RemoteEmbeddedPlayerFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.APIPlayerServiceFingerprint
-import app.revanced.patches.youtube.misc.integrations.fingerprints.StandalonePlayerActivityFingerprint
+import app.revanced.patches.youtube.misc.integrations.fingerprints.*
@Name("Integrations")
-@IntegrationsCompatibility
@RequiresIntegrations
class IntegrationsPatch : AbstractIntegrationsPatch(
"Lapp/revanced/integrations/utils/ReVancedUtils;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/annotations/OpenLinksExternallyCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/annotations/OpenLinksExternallyCompatibility.kt
similarity index 65%
rename from src/main/kotlin/app/revanced/patches/youtube/misc/links/open/annotations/OpenLinksExternallyCompatibility.kt
rename to src/main/kotlin/app/revanced/patches/youtube/misc/links/annotations/OpenLinksExternallyCompatibility.kt
index 233b8ce6af..1dd405c092 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/annotations/OpenLinksExternallyCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/links/annotations/OpenLinksExternallyCompatibility.kt
@@ -1,8 +1,8 @@
-package app.revanced.patches.youtube.misc.links.open.annotations
+package app.revanced.patches.youtube.misc.links.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class OpenLinksExternallyCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/BindSessionServiceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/BindSessionServiceFingerprint.kt
deleted file mode 100644
index b1d1082792..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/BindSessionServiceFingerprint.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package app.revanced.patches.youtube.misc.links.open.fingerprints
-
-import app.revanced.patcher.extensions.or
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-
-object BindSessionServiceFingerprint : MethodFingerprint(
- returnType = "L",
- accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
- opcodes = listOf(
- Opcode.IPUT_OBJECT,
- Opcode.NEW_INSTANCE,
- Opcode.CONST_STRING
- ),
- strings = listOf("android.support.customtabs.action.CustomTabsService")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/GetCustomTabPackageNameFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/GetCustomTabPackageNameFingerprint.kt
deleted file mode 100644
index 78b7955664..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/GetCustomTabPackageNameFingerprint.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package app.revanced.patches.youtube.misc.links.open.fingerprints
-
-import app.revanced.patcher.extensions.or
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-
-object GetCustomTabPackageNameFingerprint : MethodFingerprint(
- returnType = "L",
- accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC,
- opcodes = listOf(
- Opcode.CHECK_CAST,
- Opcode.NEW_INSTANCE,
- Opcode.INVOKE_DIRECT,
- Opcode.CONST_STRING
- ),
- strings = listOf("android.support.customtabs.action.CustomTabsService")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/InitializeCustomTabSupportFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/InitializeCustomTabSupportFingerprint.kt
deleted file mode 100644
index b9f80a60b5..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/fingerprints/InitializeCustomTabSupportFingerprint.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package app.revanced.patches.youtube.misc.links.open.fingerprints
-
-import app.revanced.patcher.extensions.or
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-
-object InitializeCustomTabSupportFingerprint : MethodFingerprint(
- returnType = "V",
- accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
- opcodes = listOf(
- Opcode.CHECK_CAST,
- Opcode.NEW_INSTANCE,
- Opcode.INVOKE_DIRECT,
- Opcode.CONST_STRING
- ),
- strings = listOf("android.support.customtabs.action.CustomTabsService")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/patch/OpenLinksExternallyPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/patch/OpenLinksExternallyPatch.kt
deleted file mode 100644
index bc51991736..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/open/patch/OpenLinksExternallyPatch.kt
+++ /dev/null
@@ -1,63 +0,0 @@
-package app.revanced.patches.youtube.misc.links.open.patch
-
-import app.revanced.extensions.toErrorResult
-import app.revanced.patcher.annotation.Description
-import app.revanced.patcher.annotation.Name
-import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
-import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
-import app.revanced.patcher.patch.annotations.Patch
-import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
-import app.revanced.patches.youtube.misc.links.open.annotations.OpenLinksExternallyCompatibility
-import app.revanced.patches.youtube.misc.links.open.fingerprints.BindSessionServiceFingerprint
-import app.revanced.patches.youtube.misc.links.open.fingerprints.GetCustomTabPackageNameFingerprint
-import app.revanced.patches.youtube.misc.links.open.fingerprints.InitializeCustomTabSupportFingerprint
-import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.formats.Instruction21c
-
-@Patch
-@Name("Open links externally")
-@Description("Open links outside of the app directly in your browser.")
-@OpenLinksExternallyCompatibility
-class OpenLinksExternallyPatch : BytecodePatch(
- listOf(
- GetCustomTabPackageNameFingerprint,
- BindSessionServiceFingerprint,
- InitializeCustomTabSupportFingerprint
- )
-) {
- override fun execute(context: BytecodeContext): PatchResult {
- SettingsPatch.PreferenceScreen.MISC.addPreferences(
- SwitchPreference(
- "revanced_external_browser",
- StringResource("revanced_external_browser_title", "Open links in browser"),
- StringResource("revanced_external_browser_summary_on", "Opening links externally"),
- StringResource("revanced_external_browser_summary_off", "Opening links in app")
- )
- )
-
- arrayOf(
- GetCustomTabPackageNameFingerprint,
- BindSessionServiceFingerprint,
- InitializeCustomTabSupportFingerprint
- ).forEach {
- val result = it.result ?: return it.toErrorResult()
- val insertIndex = result.scanResult.patternScanResult!!.endIndex + 1
- with(result.mutableMethod) {
- val register = (implementation!!.instructions[insertIndex - 1] as Instruction21c).registerA
- addInstructions(
- insertIndex,
- """
- invoke-static {v$register}, Lapp/revanced/integrations/patches/OpenLinksExternallyPatch;->enableExternalBrowser(Ljava/lang/String;)Ljava/lang/String;
- move-result-object v$register
- """
- )
- }
- }
-
- return PatchResultSuccess()
- }
-}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/patch/OpenLinksExternallyPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/patch/OpenLinksExternallyPatch.kt
new file mode 100644
index 0000000000..347b5ba413
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/links/patch/OpenLinksExternallyPatch.kt
@@ -0,0 +1,63 @@
+package app.revanced.patches.youtube.misc.links.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
+import app.revanced.patches.youtube.misc.links.annotations.OpenLinksExternallyCompatibility
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+import app.revanced.util.patch.AbstractTransformInstructionsPatch
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
+
+@Patch
+@Name("Open links externally")
+@Description("Open links outside of the app directly in your browser.")
+@OpenLinksExternallyCompatibility
+class OpenLinksExternallyPatch : AbstractTransformInstructionsPatch<Pair<Int, Int>>(
+) {
+ override fun filterMap(
+ classDef: ClassDef, method: Method, instruction: Instruction, instructionIndex: Int
+ ): Pair<Int, Int>? {
+ if (instruction !is ReferenceInstruction) return null
+ val reference = instruction.reference as? StringReference ?: return null
+
+ if (reference.string != "android.support.customtabs.action.CustomTabsService") return null
+
+ return instructionIndex to (instruction as OneRegisterInstruction).registerA
+ }
+
+ override fun transform(mutableMethod: MutableMethod, entry: Pair<Int, Int>) {
+ val (intentStringIndex, register) = entry
+
+ // Hook the intent string.
+ mutableMethod.addInstructions(
+ intentStringIndex + 1,
+ """
+ invoke-static {v$register}, Lapp/revanced/integrations/patches/OpenLinksExternallyPatch;->getIntent(Ljava/lang/String;)Ljava/lang/String;
+ move-result-object v$register
+ """
+ )
+ }
+
+ override fun execute(context: BytecodeContext) {
+ SettingsPatch.PreferenceScreen.MISC.addPreferences(
+ SwitchPreference(
+ "revanced_external_browser",
+ StringResource("revanced_external_browser_title", "Open links in browser"),
+ StringResource("revanced_external_browser_summary_on", "Opening links externally"),
+ StringResource("revanced_external_browser_summary_off", "Opening links in app")
+ )
+ )
+
+ super.execute(context)
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ComponentContextParserFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ComponentContextParserFingerprint.kt
index b0fad80b96..5fa5401dc7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ComponentContextParserFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ComponentContextParserFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.misc.litho.filter.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object ComponentContextParserFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/EmptyComponentBuilderFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/EmptyComponentBuilderFingerprint.kt
index 7c77b9f96c..7d29ce2424 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/EmptyComponentBuilderFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/EmptyComponentBuilderFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.misc.litho.filter.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object EmptyComponentBuilderFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/LithoFilterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/LithoFilterFingerprint.kt
index 9839efc310..9d1df7cf49 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/LithoFilterFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/LithoFilterFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.litho.filter.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object LithoFilterFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC or AccessFlags.CONSTRUCTOR,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ProtobufBufferReferenceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ProtobufBufferReferenceFingerprint.kt
index aeecb9e2a2..abe792753f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ProtobufBufferReferenceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ProtobufBufferReferenceFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.litho.filter.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ProtobufBufferReferenceFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ReadComponentIdentifierFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ReadComponentIdentifierFingerprint.kt
index b78e48af14..c7f8966c12 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ReadComponentIdentifierFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/fingerprints/ReadComponentIdentifierFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.misc.litho.filter.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object ReadComponentIdentifierFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
index 6ad8cfffb5..99b2474e20 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.misc.litho.filter.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
@@ -9,23 +9,17 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWith
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
-import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
-import app.revanced.patcher.util.proxy.mutableTypes.MutableField.Companion.toMutable
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.litho.filter.fingerprints.*
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.Instruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.immutable.ImmutableField
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
import java.io.Closeable
@DependsOn([IntegrationsPatch::class])
@@ -41,59 +35,47 @@ class LithoFilterPatch : BytecodePatch(
* Additionally, the method contains a reference to the components identifier.
* The identifier is used to filter components by their identifier.
*
- * In addition to that, a static field is added to the class of this method. (See protobufBufferField).
- * This field holds a reference to the protobuf buffer object.
- * The field is being set in another method that holds a reference to the protobuf buffer object.
- * The object contains a large byte array that represents the component tree.
+ * The protobuf buffer is passed along from a different injection point before the filtering occurs.
+ * The buffer is a large byte array that represents the component tree.
* This byte array is searched for strings that indicate the current component.
*
* The following pseudo code shows how the patch works:
*
+ * class SomeOtherClass {
+ * // Called before ComponentContextParser.parseBytesToComponentContext method.
+ * public void someOtherMethod(ByteBuffer byteBuffer) {
+ * IntegrationsClass.setProtoBuffer(byteBuffer); // Inserted by this patch.
+ * ...
+ * }
+ * }
+ *
* class ComponentContextParser {
- * public static ByteBuffer buffer; // Inserted by this patch.
*
* public ComponentContext parseBytesToComponentContext(...) {
* ...
- * if (filter(identifier, pathBuilder, buffer)); // Inserted by this patch.
+ * if (IntegrationsClass.filter(identifier, pathBuilder)); // Inserted by this patch.
* return emptyComponent;
* ...
* }
* }
- *
- * class SomeOtherClass {
- * // Called before ComponentContextParser.parseBytesToComponentContext method.
- * public void someOtherMethod(ByteBuffer byteBuffer) {
- * ComponentContextParser.buffer = byteBuffer; // Inserted by this patch.
- * ...
- * }
- * }
*/
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ComponentContextParserFingerprint.result?.also {
arrayOf(
EmptyComponentBuilderFingerprint,
ReadComponentIdentifierFingerprint
).forEach { fingerprint ->
if (fingerprint.resolve(context, it.mutableMethod, it.mutableClass)) return@forEach
- return fingerprint.toErrorResult()
+ throw fingerprint.exception
}
}?.let { bytesToComponentContextMethod ->
- // region Add a static field that holds a reference to the protobuf buffer object.
- val protobufBufferField = ImmutableField(
- bytesToComponentContextMethod.mutableClass.type,
- "buffer",
- "Ljava/nio/ByteBuffer;",
- AccessFlags.PUBLIC or AccessFlags.STATIC,
- null,
- null,
- null
- ).toMutable()
- bytesToComponentContextMethod.mutableClass.staticFields.add(protobufBufferField)
-
- // Set the field with the reference to the protobuf buffer object.
+
+ // region Pass the buffer into Integrations.
+
ProtobufBufferReferenceFingerprint.result
- ?.mutableMethod?.addInstruction(0, "sput-object p2, $protobufBufferField")
- ?: return ProtobufBufferReferenceFingerprint.toErrorResult()
+ ?.mutableMethod?.addInstruction(0,
+ " invoke-static { p2 }, $INTEGRATIONS_CLASS_DESCRIPTOR->setProtoBuffer(Ljava/nio/ByteBuffer;)V")
+ ?: throw ProtobufBufferReferenceFingerprint.exception
// endregion
@@ -135,17 +117,13 @@ class LithoFilterPatch : BytecodePatch(
// region Patch the method.
// Insert the instructions that are responsible
- // to return an EmptyComponent instead of the original component if the filter method returns false.
+ // to return an EmptyComponent instead of the original component if the filter method returns true.
addInstructionsWithLabels(
insertHookIndex,
"""
- # Register "free1" holds the protobuf buffer object
-
- sget-object v$free1, $protobufBufferField
-
# Invoke the filter method.
- invoke-static { v$stringBuilderRegister, v$identifierRegister, v$free1 }, $FILTER_METHOD_DESCRIPTOR
+ invoke-static { v$identifierRegister, v$stringBuilderRegister }, $INTEGRATIONS_CLASS_DESCRIPTOR->filter(Ljava/lang/String;Ljava/lang/StringBuilder;)Z
move-result v$free1
if-eqz v$free1, :unfiltered
@@ -163,7 +141,7 @@ class LithoFilterPatch : BytecodePatch(
}
// endregion
- } ?: return ComponentContextParserFingerprint.toErrorResult()
+ } ?: throw ComponentContextParserFingerprint.exception
LithoFilterFingerprint.result?.mutableMethod?.apply {
removeInstructions(2, 4) // Remove dummy filter.
@@ -179,9 +157,7 @@ class LithoFilterPatch : BytecodePatch(
"""
)
}
- } ?: return LithoFilterFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw LithoFilterFingerprint.exception
}
override fun close() = LithoFilterFingerprint.result!!
@@ -197,9 +173,7 @@ class LithoFilterPatch : BytecodePatch(
private val Instruction.descriptor
get() = (this as ReferenceInstruction).reference.toString()
- private const val FILTER_METHOD_DESCRIPTOR =
- "Lapp/revanced/integrations/patches/components/LithoFilterPatch;" +
- "->filter(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/nio/ByteBuffer;)Z"
+ const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/components/LithoFilterPatch;"
internal lateinit var addFilter: (String) -> Unit
private set
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/annotations/MicroGPatchCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/annotations/MicroGPatchCompatibility.kt
index 30383fbf33..479c201ca6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/annotations/MicroGPatchCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/annotations/MicroGPatchCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.microg.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class MicroGPatchCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
index ebca7a6ba3..5276b8fbe7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.microg.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object GooglePlayUtilityFingerprint : MethodFingerprint(
returnType = "I",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
index 8c98f055a6..64083f0f04 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.microg.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object ServiceCheckFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/bytecode/MicroGBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
index 0833b12a48..59296187a4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/bytecode/MicroGBytecodePatch.kt
@@ -4,8 +4,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.fingerprints.WatchWhileActivityFingerprint
@@ -40,7 +38,7 @@ class MicroGBytecodePatch : BytecodePatch(
WatchWhileActivityFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// apply common microG patch
MicroGBytecodeHelper.patchBytecode(
context, arrayOf(
@@ -65,7 +63,5 @@ class MicroGBytecodePatch : BytecodePatch(
// inject the notice for MicroG
MicroGBytecodeHelper.injectNotice(WatchWhileActivityFingerprint)
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/resource/MicroGResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/resource/MicroGResourcePatch.kt
index 14bb6b6192..0c07e4ab7d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/resource/MicroGResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/patch/resource/MicroGResourcePatch.kt
@@ -1,8 +1,6 @@
package app.revanced.patches.youtube.misc.microg.patch.resource
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.Preference
@@ -20,7 +18,7 @@ import app.revanced.util.microg.MicroGResourceHelper
@DependsOn([SettingsResourcePatch::class])
class MicroGResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.addPreference(
Preference(
StringResource("microg_settings", "MicroG Settings"),
@@ -47,7 +45,5 @@ class MicroGResourcePatch : ResourcePatch {
// add strings
MicroGResourceHelper.addStrings(context)
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
index 782a7709c5..31f431b0ab 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.minimizedplayback.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class MinimizedPlaybackCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/KidsMinimizedPlaybackPolicyControllerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/KidsMinimizedPlaybackPolicyControllerFingerprint.kt
index 9763d18d3f..1a24e194a5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/KidsMinimizedPlaybackPolicyControllerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/KidsMinimizedPlaybackPolicyControllerFingerprint.kt
@@ -2,24 +2,33 @@ package app.revanced.patches.youtube.misc.minimizedplayback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.NarrowLiteralInstruction
object KidsMinimizedPlaybackPolicyControllerFingerprint : MethodFingerprint(
returnType = "V",
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
- parameters = listOf("I", "L", "L"),
+ parameters = listOf("I", "L", "L"),
opcodes = listOf(
- Opcode.IF_EQZ,
+ Opcode.CONST_4,
+ Opcode.IF_NE,
Opcode.SGET_OBJECT,
Opcode.IF_NE,
- Opcode.CONST_4,
- Opcode.IPUT_BOOLEAN,
- Opcode.IF_EQZ,
Opcode.IGET,
- Opcode.INVOKE_STATIC
+ Opcode.CONST_4,
+ Opcode.IF_NE,
+ Opcode.IGET_OBJECT,
+ Opcode.SGET_OBJECT,
+ Opcode.IF_EQ,
+ Opcode.GOTO,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.RETURN_VOID
),
customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("MinimizedPlaybackPolicyController;")
+ methodDef.implementation!!.instructions.any {
+ ((it as? NarrowLiteralInstruction)?.narrowLiteral == 5)
+ }
}
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
index dbb7e1e45d..c72bc2333c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackManagerFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.minimizedplayback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MinimizedPlaybackManagerFingerprint : MethodFingerprint(
"Z",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
index a184fe77d5..f428c2be24 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.minimizedplayback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object MinimizedPlaybackSettingsFingerprint : MethodFingerprint(
returnType = "Ljava/lang/String;",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsParentFingerprint.kt
index 180547a2e2..f7d8cf59b6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/fingerprints/MinimizedPlaybackSettingsParentFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.minimizedplayback.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
/**
* Class fingerprint for [MinimizedPlaybackSettingsFingerprint]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/patch/MinimizedPlaybackPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/patch/MinimizedPlaybackPatch.kt
index d9c8b8ef8e..7c3cd333f4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/patch/MinimizedPlaybackPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/patch/MinimizedPlaybackPatch.kt
@@ -1,16 +1,13 @@
package app.revanced.patches.youtube.misc.minimizedplayback.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
@@ -24,8 +21,8 @@ import app.revanced.patches.youtube.misc.minimizedplayback.fingerprints.Minimize
import app.revanced.patches.youtube.misc.minimizedplayback.fingerprints.MinimizedPlaybackSettingsParentFingerprint
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Patch
@Name("Minimized playback")
@@ -39,7 +36,7 @@ class MinimizedPlaybackPatch : BytecodePatch(
KidsMinimizedPlaybackPolicyControllerFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// TODO: remove this empty preference sometime after mid 2023
SettingsPatch.PreferenceScreen.MISC.addPreferences(
NonInteractivePreference(
@@ -57,10 +54,10 @@ class MinimizedPlaybackPatch : BytecodePatch(
return v0
"""
)
- } ?: return MinimizedPlaybackManagerFingerprint.toErrorResult()
+ } ?: throw MinimizedPlaybackManagerFingerprint.exception
// Enable minimized playback option in YouTube settings
- MinimizedPlaybackSettingsParentFingerprint.result ?: return MinimizedPlaybackSettingsParentFingerprint.toErrorResult()
+ MinimizedPlaybackSettingsParentFingerprint.result ?: throw MinimizedPlaybackSettingsParentFingerprint.exception
MinimizedPlaybackSettingsFingerprint.resolve(context, MinimizedPlaybackSettingsParentFingerprint.result!!.classDef)
MinimizedPlaybackSettingsFingerprint.result?.apply {
val booleanCalls = method.implementation!!.instructions.withIndex()
@@ -78,7 +75,7 @@ class MinimizedPlaybackPatch : BytecodePatch(
return v0
"""
)
- } ?: return MinimizedPlaybackSettingsFingerprint.toErrorResult()
+ } ?: throw MinimizedPlaybackSettingsFingerprint.exception
// Force allowing background play for videos labeled for kids.
// Some regions and YouTube accounts do not require this patch.
@@ -87,9 +84,7 @@ class MinimizedPlaybackPatch : BytecodePatch(
0,
"return-void"
)
- } ?: return KidsMinimizedPlaybackPolicyControllerFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw KidsMinimizedPlaybackPolicyControllerFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/annotation/PlayerControlsCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/annotation/PlayerControlsCompatibility.kt
index 311f48506d..6178b01f06 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/annotation/PlayerControlsCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/annotation/PlayerControlsCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.playercontrols.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlayerControlsCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/bytecode/patch/PlayerControlsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/bytecode/patch/PlayerControlsBytecodePatch.kt
index 2658d45024..095a510dec 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/bytecode/patch/PlayerControlsBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/bytecode/patch/PlayerControlsBytecodePatch.kt
@@ -1,32 +1,39 @@
package app.revanced.patches.youtube.misc.playercontrols.bytecode.patch
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patches.shared.fingerprints.LayoutConstructorFingerprint
import app.revanced.patches.youtube.misc.playercontrols.annotation.PlayerControlsCompatibility
import app.revanced.patches.youtube.misc.playercontrols.fingerprints.BottomControlsInflateFingerprint
import app.revanced.patches.youtube.misc.playercontrols.fingerprints.PlayerControlsVisibilityFingerprint
import app.revanced.patches.youtube.misc.playercontrols.resource.patch.BottomControlsResourcePatch
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Name("Player controls bytecode patch")
@DependsOn([BottomControlsResourcePatch::class])
@Description("Manages the code for the player controls of the YouTube player.")
@PlayerControlsCompatibility
class PlayerControlsBytecodePatch : BytecodePatch(
- listOf(PlayerControlsVisibilityFingerprint, BottomControlsInflateFingerprint)
+ listOf(
+ LayoutConstructorFingerprint,
+ BottomControlsInflateFingerprint
+ )
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
+ LayoutConstructorFingerprint.result?.let {
+ if (!PlayerControlsVisibilityFingerprint.resolve(context, it.classDef))
+ throw LayoutConstructorFingerprint.exception
+ } ?: throw LayoutConstructorFingerprint.exception
+
showPlayerControlsFingerprintResult = PlayerControlsVisibilityFingerprint.result!!
inflateFingerprintResult = BottomControlsInflateFingerprint.result!!
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/BottomControlsInflateFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/BottomControlsInflateFingerprint.kt
index 63864aa56c..6f340c2d4d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/BottomControlsInflateFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/BottomControlsInflateFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.misc.playercontrols.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.misc.playercontrols.resource.patch.BottomControlsResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object BottomControlsInflateFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL or AccessFlags.SYNTHETIC,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/PlayerControlsVisibilityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/PlayerControlsVisibilityFingerprint.kt
index db64aaaa4a..1f6951a0be 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/PlayerControlsVisibilityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/fingerprints/PlayerControlsVisibilityFingerprint.kt
@@ -2,13 +2,10 @@ package app.revanced.patches.youtube.misc.playercontrols.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object PlayerControlsVisibilityFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
returnType = "V",
- parameters = listOf("Z", "Z"),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("YouTubeControlsOverlay;")
- }
+ parameters = listOf("Z", "Z")
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/resource/patch/BottomControlsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/resource/patch/BottomControlsResourcePatch.kt
index 0df6883fb5..9d57a11290 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/resource/patch/BottomControlsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playercontrols/resource/patch/BottomControlsResourcePatch.kt
@@ -1,9 +1,7 @@
package app.revanced.patches.youtube.misc.playercontrols.resource.patch
-import app.revanced.patcher.data.DomFileEditor
+import app.revanced.patcher.util.DomFileEditor
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -11,14 +9,12 @@ import java.io.Closeable
@DependsOn([ResourceMappingPatch::class])
class BottomControlsResourcePatch : ResourcePatch, Closeable {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
resourceContext = context
targetXmlEditor = context.xmlEditor[TARGET_RESOURCE]
bottomUiContainerResourceId = ResourceMappingPatch.resourceMappings
.single { it.type == "id" && it.name == "bottom_ui_container_stub" }.id
-
- return PatchResultSuccess()
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/annotation/PlayerOverlaysHookCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/annotation/PlayerOverlaysHookCompatibility.kt
index f65f81708d..b6b4ce0e10 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/annotation/PlayerOverlaysHookCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/annotation/PlayerOverlaysHookCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.playeroverlay.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlayerOverlaysHookCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/patch/PlayerOverlaysHookPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/patch/PlayerOverlaysHookPatch.kt
index f78b879f15..406c694e84 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/patch/PlayerOverlaysHookPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playeroverlay/patch/PlayerOverlaysHookPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playeroverlay.annotation.PlayerOverlaysHookCompatibility
@@ -21,13 +19,12 @@ class PlayerOverlaysHookPatch : BytecodePatch(
PlayerOverlaysOnFinishInflateFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// hook YouTubePlayerOverlaysLayout.onFinishInflate()
val method = PlayerOverlaysOnFinishInflateFingerprint.result!!.mutableMethod
method.addInstruction(
method.implementation!!.instructions.size - 2,
"invoke-static { p0 }, Lapp/revanced/integrations/patches/PlayerOverlaysHookPatch;->YouTubePlayerOverlaysLayout_onFinishInflateHook(Ljava/lang/Object;)V"
)
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/annotation/PlayerTypeHookCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/annotation/PlayerTypeHookCompatibility.kt
index 8630c376b2..70d2f8a08a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/annotation/PlayerTypeHookCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/annotation/PlayerTypeHookCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.playertype.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlayerTypeHookCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/PlayerTypeFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/PlayerTypeFingerprint.kt
index c6588b82f5..dc252f97b8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/PlayerTypeFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/PlayerTypeFingerprint.kt
@@ -2,34 +2,16 @@ package app.revanced.patches.youtube.misc.playertype.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object PlayerTypeFingerprint : MethodFingerprint(
returnType = "V",
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
parameters = listOf("L"),
opcodes = listOf(
- Opcode.INVOKE_VIRTUAL,
- Opcode.IGET_OBJECT,
Opcode.IF_NE,
- Opcode.RETURN_VOID,
- Opcode.IPUT_OBJECT,
- Opcode.INVOKE_DIRECT,
- Opcode.INVOKE_VIRTUAL,
- Opcode.INVOKE_VIRTUAL,
- Opcode.INVOKE_VIRTUAL,
- Opcode.MOVE_RESULT,
- Opcode.IF_EQZ,
- Opcode.CONST_4,
- Opcode.INVOKE_STATIC,
- Opcode.RETURN_VOID,
- Opcode.CONST_4,
- Opcode.INVOKE_STATIC,
- Opcode.INVOKE_VIRTUAL,
Opcode.RETURN_VOID
),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("YouTubePlayerOverlaysLayout;")
- }
+ customFingerprint = { methodDef, _ -> methodDef.definingClass.endsWith("/YouTubePlayerOverlaysLayout;") }
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/VideoStateFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/VideoStateFingerprint.kt
index 259915bcaf..1fb9e7f0ae 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/VideoStateFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/fingerprint/VideoStateFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.misc.playertype.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object VideoStateFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
@@ -17,8 +17,5 @@ object VideoStateFingerprint : MethodFingerprint(
Opcode.IF_EQZ,
Opcode.IF_EQZ,
Opcode.IGET_OBJECT, // obfuscated parameter field name
- ),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("YouTubeControlsOverlay;")
- }
+ )
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/patch/PlayerTypeHookPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/patch/PlayerTypeHookPatch.kt
index ddf02cbdff..c64ddfccdc 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/patch/PlayerTypeHookPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/playertype/patch/PlayerTypeHookPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.misc.playertype.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -8,37 +8,29 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import app.revanced.patches.youtube.misc.playertype.annotation.PlayerTypeHookCompatibility
import app.revanced.patches.youtube.misc.playertype.fingerprint.PlayerTypeFingerprint
import app.revanced.patches.youtube.misc.playertype.fingerprint.VideoStateFingerprint
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
@Name("Player type hook")
@Description("Hook to get the current player type and video playback state.")
-@PlayerTypeHookCompatibility
@DependsOn([IntegrationsPatch::class])
class PlayerTypeHookPatch : BytecodePatch(
listOf(PlayerTypeFingerprint, VideoStateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
-
- PlayerTypeFingerprint.result?.let {
- it.mutableMethod.apply {
- addInstruction(
- 0,
- "invoke-static {p1}, $INTEGRATIONS_CLASS_DESCRIPTOR->setPlayerType(Ljava/lang/Enum;)V"
- )
- }
- } ?: return PlayerTypeFingerprint.toErrorResult()
+ override fun execute(context: BytecodeContext) {
+ PlayerTypeFingerprint.result?.mutableMethod?.addInstruction(
+ 0,
+ "invoke-static {p1}, $INTEGRATIONS_CLASS_DESCRIPTOR->setPlayerType(Ljava/lang/Enum;)V"
+ ) ?: throw PlayerTypeFingerprint.exception
VideoStateFingerprint.result?.let {
it.mutableMethod.apply {
val endIndex = it.scanResult.patternScanResult!!.endIndex
val videoStateFieldName = getInstruction<ReferenceInstruction>(endIndex).reference
+
addInstructions(
0,
"""
@@ -47,9 +39,7 @@ class PlayerTypeHookPatch : BytecodePatch(
"""
)
}
- } ?: return VideoStateFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw VideoStateFingerprint.exception
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/LicenseActivityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/LicenseActivityFingerprint.kt
index 05dfba24f9..ab6fea8f1d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/LicenseActivityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/LicenseActivityFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.youtube.misc.settings.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object LicenseActivityFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/SetThemeFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/SetThemeFingerprint.kt
index 77e5485686..f4e81b8478 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/SetThemeFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/SetThemeFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.misc.settings.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.util.patch.LiteralValueFingerprint
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsResourcePatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SetThemeFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
index 9bc4f46489..6f3db49fd7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.misc.settings.bytecode.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -9,8 +9,6 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.settings.preference.impl.Preference
import app.revanced.patches.shared.settings.util.AbstractPreferenceScreen
@@ -18,9 +16,9 @@ import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.LicenseActivityFingerprint
import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.SetThemeFingerprint
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsResourcePatch
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.util.MethodUtil
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.util.MethodUtil
import java.io.Closeable
@DependsOn([IntegrationsPatch::class, SettingsResourcePatch::class])
@@ -29,7 +27,7 @@ import java.io.Closeable
class SettingsPatch : BytecodePatch(
listOf(LicenseActivityFingerprint, SetThemeFingerprint)
), Closeable {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// TODO: Remove this when it is only required at one place.
fun getSetThemeInstructionString(
registers: String = "v0",
@@ -57,7 +55,7 @@ class SettingsPatch : BytecodePatch(
addInstruction(returnIndex + 1, "return-object v0")
}
}
- } ?: return SetThemeFingerprint.toErrorResult()
+ } ?: throw SetThemeFingerprint.exception
// Modify the license activity and remove all existing layout code.
@@ -88,8 +86,6 @@ class SettingsPatch : BytecodePatch(
}
}
-
- return PatchResultSuccess()
}
internal companion object {
@@ -123,7 +119,7 @@ class SettingsPatch : BytecodePatch(
/**
* Preference screens patches should add their settings to.
*/
- internal object PreferenceScreen : AbstractPreferenceScreen() {
+ object PreferenceScreen : AbstractPreferenceScreen() {
val ADS = Screen("ads", "Ads", "Ad related settings")
val INTERACTIONS = Screen("interactions", "Interaction", "Settings related to interactions")
val LAYOUT = Screen("layout", "Layout", "Settings related to the layout")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/resource/patch/SettingsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/resource/patch/SettingsResourcePatch.kt
index 3b3683511d..e2a447c057 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/resource/patch/SettingsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/resource/patch/SettingsResourcePatch.kt
@@ -1,10 +1,8 @@
package app.revanced.patches.youtube.misc.settings.resource.patch
-import app.revanced.patcher.data.DomFileEditor
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.util.DomFileEditor
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.shared.settings.preference.addPreference
import app.revanced.patches.shared.settings.preference.impl.*
@@ -21,7 +19,7 @@ class SettingsResourcePatch : AbstractSettingsResourcePatch(
"revanced_prefs",
"settings"
) {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
super.execute(context)
// Used for a fingerprint from SettingsPatch.
@@ -88,8 +86,6 @@ class SettingsResourcePatch : AbstractSettingsResourcePatch(
)
context.mergeStrings("settings/host/values/strings.xml")
-
- return PatchResultSuccess()
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/zoomhaptics/patch/ZoomHapticsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/zoomhaptics/patch/ZoomHapticsPatch.kt
index 719aa0013e..ad801b4378 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/zoomhaptics/patch/ZoomHapticsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/zoomhaptics/patch/ZoomHapticsPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
@@ -25,7 +23,7 @@ import app.revanced.patches.youtube.misc.zoomhaptics.fingerprints.ZoomHapticsFin
class ZoomHapticsPatch : BytecodePatch(
listOf(ZoomHapticsFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.MISC.addPreferences(
SwitchPreference(
"revanced_disable_zoom_haptics",
@@ -47,7 +45,5 @@ class ZoomHapticsPatch : BytecodePatch(
""",
ExternalLabel("vibrate", zoomHapticsFingerprintMethod.getInstruction(0))
)
-
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/annotations/HDRBrightnessCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
index 85bb22dcfc..7d104ee5cb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.hdrbrightness.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class HDRBrightnessCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
index 0db80f8807..80db39acf7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.video.hdrbrightness.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object HDRBrightnessFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/patch/HDRBrightnessPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/patch/HDRBrightnessPatch.kt
index 69de869687..be339f03ac 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/patch/HDRBrightnessPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/patch/HDRBrightnessPatch.kt
@@ -5,8 +5,6 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.StringResource
@@ -15,9 +13,9 @@ import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import app.revanced.patches.youtube.video.hdrbrightness.annotations.HDRBrightnessCompatibility
import app.revanced.patches.youtube.video.hdrbrightness.fingerprints.HDRBrightnessFingerprint
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
-import org.jf.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
@Patch
@Name("HDR auto brightness")
@@ -27,7 +25,7 @@ import org.jf.dexlib2.iface.reference.FieldReference
class HDRBrightnessPatch : BytecodePatch(
listOf(HDRBrightnessFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.VIDEO.addPreferences(
SwitchPreference(
"revanced_hdr_auto_brightness",
@@ -55,7 +53,5 @@ class HDRBrightnessPatch : BytecodePatch(
"""
)
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/information/annotation/VideoInformationCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/information/annotation/VideoInformationCompatibility.kt
index 1b52f4df0a..46cc4a5e02 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/information/annotation/VideoInformationCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/information/annotation/VideoInformationCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.information.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class VideoInformationCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/OnPlaybackSpeedItemClickFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/OnPlaybackSpeedItemClickFingerprint.kt
index 81de6a392f..cdb5fd1727 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/OnPlaybackSpeedItemClickFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/OnPlaybackSpeedItemClickFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.video.information.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object OnPlaybackSpeedItemClickFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/PlayerControllerSetTimeReferenceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/PlayerControllerSetTimeReferenceFingerprint.kt
index 628421a01d..578bb6a282 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/PlayerControllerSetTimeReferenceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/PlayerControllerSetTimeReferenceFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.video.information.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object PlayerControllerSetTimeReferenceFingerprint : MethodFingerprint(
opcodes = listOf(Opcode.INVOKE_DIRECT_RANGE, Opcode.IGET_OBJECT),
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/VideoLengthFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/VideoLengthFingerprint.kt
index 89d4d16c6e..6dbeef1918 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/VideoLengthFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/information/fingerprints/VideoLengthFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.youtube.video.information.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
object VideoLengthFingerprint : MethodFingerprint(
opcodes = listOf(
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/information/patch/VideoInformationPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/information/patch/VideoInformationPatch.kt
index 3b3a3dcae9..ea744ef5b3 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/information/patch/VideoInformationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/information/patch/VideoInformationPatch.kt
@@ -1,18 +1,15 @@
package app.revanced.patches.youtube.video.information.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
-import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
@@ -21,16 +18,16 @@ import app.revanced.patches.youtube.video.information.annotation.VideoInformatio
import app.revanced.patches.youtube.video.information.fingerprints.*
import app.revanced.patches.youtube.video.speed.remember.patch.RememberPlaybackSpeedPatch
import app.revanced.patches.youtube.video.videoid.patch.VideoIdPatch
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.builder.BuilderInstruction
-import org.jf.dexlib2.builder.MutableMethodImplementation
-import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.immutable.ImmutableMethod
-import org.jf.dexlib2.immutable.ImmutableMethodParameter
-import org.jf.dexlib2.util.MethodUtil
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.BuilderInstruction
+import com.android.tools.smali.dexlib2.builder.MutableMethodImplementation
+import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
+import com.android.tools.smali.dexlib2.immutable.ImmutableMethodParameter
+import com.android.tools.smali.dexlib2.util.MethodUtil
@Name("Video information")
@Description("Hooks YouTube to get information about the current playing video.")
@@ -44,7 +41,7 @@ class VideoInformationPatch : BytecodePatch(
OnPlaybackSpeedItemClickFingerprint,
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
with(PlayerInitFingerprint.result!!) {
playerInitMethod = mutableClass.methods.first { MethodUtil.isConstructor(it) }
@@ -136,11 +133,9 @@ class VideoInformationPatch : BytecodePatch(
getReference(speedSelectionMethodInstructions, 1, Opcode.IGET)
setPlaybackSpeedMethodReference =
getReference(speedSelectionMethodInstructions, 2, Opcode.IGET)
- } ?: return OnPlaybackSpeedItemClickFingerprint.toErrorResult()
+ } ?: throw OnPlaybackSpeedItemClickFingerprint.exception
userSelectedPlaybackSpeedHook(INTEGRATIONS_CLASS_DESCRIPTOR, "userSelectedPlaybackSpeed")
-
- return PatchResultSuccess()
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/annotations/RememberVideoQualityCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/annotations/RememberVideoQualityCompatibility.kt
index deb0185e90..96834b575d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/annotations/RememberVideoQualityCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/annotations/RememberVideoQualityCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.quality.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class RememberVideoQualityCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/NewVideoQualityChangedFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/NewVideoQualityChangedFingerprint.kt
index f1dcf0a5bb..c37910da70 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/NewVideoQualityChangedFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/NewVideoQualityChangedFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.video.quality.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object NewVideoQualityChangedFingerprint : MethodFingerprint(
returnType = "L",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/SetQualityByIndexMethodClassFieldReferenceFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/SetQualityByIndexMethodClassFieldReferenceFingerprint.kt
index a4707a492a..aa76503fa9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/SetQualityByIndexMethodClassFieldReferenceFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/SetQualityByIndexMethodClassFieldReferenceFingerprint.kt
@@ -1,7 +1,7 @@
package app.revanced.patches.youtube.video.quality.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
/**
* Resolves with the class found in [VideoQualitySetterFingerprint].
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/VideoQualitySetterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/VideoQualitySetterFingerprint.kt
index ab95b0b5bd..01dc3cf62f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/VideoQualitySetterFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/fingerprints/VideoQualitySetterFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.video.quality.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object VideoQualitySetterFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/patch/RememberVideoQualityPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/patch/RememberVideoQualityPatch.kt
index 6cf2e89790..a90246bd74 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/patch/RememberVideoQualityPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/patch/RememberVideoQualityPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.video.quality.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -9,9 +9,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.settings.preference.impl.ArrayResource
@@ -26,9 +24,9 @@ import app.revanced.patches.youtube.video.quality.fingerprints.NewVideoQualityCh
import app.revanced.patches.youtube.video.quality.fingerprints.SetQualityByIndexMethodClassFieldReferenceFingerprint
import app.revanced.patches.youtube.video.quality.fingerprints.VideoQualityItemOnClickParentFingerprint
import app.revanced.patches.youtube.video.quality.fingerprints.VideoQualitySetterFingerprint
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
-import org.jf.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
@Patch
@DependsOn([IntegrationsPatch::class, VideoInformationPatch::class, SettingsPatch::class])
@@ -42,7 +40,7 @@ class RememberVideoQualityPatch : BytecodePatch(
NewVideoQualityChangedFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// This is bloated as each value has it's own String key/value
// ideally the entries would be raw values (and not a key to a String resource)
val entries = listOf(
@@ -119,7 +117,7 @@ class RememberVideoQualityPatch : BytecodePatch(
// Inject a call to set the remembered quality once a video loads.
VideoQualitySetterFingerprint.result?.also {
if (!SetQualityByIndexMethodClassFieldReferenceFingerprint.resolve(context, it.classDef))
- return PatchResultError("Could not resolve fingerprint to find setQualityByIndex method")
+ throw PatchException("Could not resolve fingerprint to find setQualityByIndex method")
}?.let {
// This instruction refers to the field with the type that contains the setQualityByIndex method.
val instructions = SetQualityByIndexMethodClassFieldReferenceFingerprint.result!!
@@ -139,7 +137,7 @@ class RememberVideoQualityPatch : BytecodePatch(
// Get the name of the setQualityByIndex method.
val setQualityByIndexMethod = setQualityByIndexMethodClass.methods
.find { method -> method.parameterTypes.first() == "I" }
- ?: return PatchResultError("Could not find setQualityByIndex method")
+ ?: throw PatchException("Could not find setQualityByIndex method")
it.mutableMethod.addInstructions(
0,
@@ -160,7 +158,7 @@ class RememberVideoQualityPatch : BytecodePatch(
move-result p2
""",
)
- } ?: return VideoQualitySetterFingerprint.toErrorResult()
+ } ?: throw VideoQualitySetterFingerprint.exception
// Inject a call to remember the selected quality.
@@ -174,8 +172,8 @@ class RememberVideoQualityPatch : BytecodePatch(
0,
"invoke-static {p$listItemIndexParameter}, $INTEGRATIONS_CLASS_DESCRIPTOR->userChangedQuality(I)V"
)
- } ?: return PatchResultError("Failed to find onItemClick method")
- } ?: return VideoQualityItemOnClickParentFingerprint.toErrorResult()
+ } ?: throw PatchException("Failed to find onItemClick method")
+ } ?: throw VideoQualityItemOnClickParentFingerprint.exception
// Remember video quality if not using old layout menu.
@@ -189,10 +187,8 @@ class RememberVideoQualityPatch : BytecodePatch(
"invoke-static {v$qualityRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->userChangedQualityInNewFlyout(I)V"
)
}
- } ?: return NewVideoQualityChangedFingerprint.toErrorResult()
+ } ?: throw NewVideoQualityChangedFingerprint.exception
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeed.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeed.kt
index 5eb3a30a78..895e43fa82 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeed.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeed.kt
@@ -4,8 +4,6 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.video.speed.custom.patch.CustomPlaybackSpeedPatch
@@ -17,7 +15,6 @@ import app.revanced.patches.youtube.video.speed.remember.patch.RememberPlaybackS
@DependsOn([CustomPlaybackSpeedPatch::class, RememberPlaybackSpeedPatch::class])
@PlaybackSpeedCompatibility
class PlaybackSpeed : BytecodePatch() {
- override fun execute(context: BytecodeContext): PatchResult {
- return PatchResultSuccess() // All patches this patch depends on succeed.
+ override fun execute(context: BytecodeContext) { // All patches this patch depends on succeed.
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedCompatibility.kt
index 2181dc9187..6a91ac7b85 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.speed
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class PlaybackSpeedCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedArrayGeneratorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedArrayGeneratorFingerprint.kt
index ba9982988d..734ef993e0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedArrayGeneratorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedArrayGeneratorFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.video.speed.custom.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SpeedArrayGeneratorFingerprint : MethodFingerprint(
returnType = "[L",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedLimiterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedLimiterFingerprint.kt
index 30c315de82..8e615f8544 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedLimiterFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/fingerprints/SpeedLimiterFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtube.video.speed.custom.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object SpeedLimiterFingerprint : MethodFingerprint(
"V",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/patch/CustomPlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/patch/CustomPlaybackSpeedPatch.kt
index f3c08a83af..befcebc3b5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/patch/CustomPlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/custom/patch/CustomPlaybackSpeedPatch.kt
@@ -1,6 +1,6 @@
package app.revanced.patches.youtube.video.speed.custom.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
@@ -11,24 +11,24 @@ import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.proxy.mutableTypes.MutableField.Companion.toMutable
-import app.revanced.patches.shared.settings.preference.impl.*
+import app.revanced.patches.shared.settings.preference.impl.InputType
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.TextPreference
import app.revanced.patches.youtube.misc.bottomsheet.hook.patch.BottomSheetHookPatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import app.revanced.patches.youtube.video.speed.custom.fingerprints.*
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
-import org.jf.dexlib2.iface.reference.FieldReference
-import org.jf.dexlib2.iface.reference.MethodReference
-import org.jf.dexlib2.immutable.ImmutableField
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.iface.instruction.NarrowLiteralInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.reference.FieldReference
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.immutable.ImmutableField
@Name("Custom playback speed")
@Description("Adds custom playback speed options.")
@@ -42,7 +42,7 @@ class CustomPlaybackSpeedPatch : BytecodePatch(
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.VIDEO.addPreferences(
TextPreference(
key = "revanced_custom_playback_speeds",
@@ -64,7 +64,7 @@ class CustomPlaybackSpeedPatch : BytecodePatch(
val sizeCallIndex = arrayGenMethodImpl.instructions
.indexOfFirst { ((it as? ReferenceInstruction)?.reference as? MethodReference)?.name == "size" }
- if (sizeCallIndex == -1) return PatchResultError("Couldn't find call to size()")
+ if (sizeCallIndex == -1) throw PatchException("Couldn't find call to size()")
val sizeCallResultRegister =
(arrayGenMethodImpl.instructions.elementAt(sizeCallIndex + 1) as OneRegisterInstruction).registerA
@@ -156,7 +156,7 @@ class CustomPlaybackSpeedPatch : BytecodePatch(
// This is later called on the field INSTANCE.
val showOldPlaybackSpeedMenuMethod = ShowOldPlaybackSpeedMenuFingerprint.also {
if (!it.resolve(context, result.classDef))
- throw ShowOldPlaybackSpeedMenuFingerprint.toErrorResult()
+ throw ShowOldPlaybackSpeedMenuFingerprint.exception
}.result!!.method.toString()
// Insert the call to the "showOldPlaybackSpeedMenu" method on the field INSTANCE.
@@ -171,12 +171,10 @@ class CustomPlaybackSpeedPatch : BytecodePatch(
invoke-virtual { v0 }, $showOldPlaybackSpeedMenuMethod
"""
)
- } ?: return ShowOldPlaybackSpeedMenuIntegrationsFingerprint.toErrorResult()
- } ?: return GetOldPlaybackSpeedsFingerprint.toErrorResult()
+ } ?: throw ShowOldPlaybackSpeedMenuIntegrationsFingerprint.exception
+ } ?: throw GetOldPlaybackSpeedsFingerprint.exception
// endregion
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
index 620e743994..5b274d461c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
@@ -1,14 +1,12 @@
package app.revanced.patches.youtube.video.speed.remember.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.shared.settings.preference.impl.ArrayResource
@@ -20,7 +18,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import app.revanced.patches.youtube.video.information.patch.VideoInformationPatch
import app.revanced.patches.youtube.video.speed.custom.patch.CustomPlaybackSpeedPatch
import app.revanced.patches.youtube.video.speed.remember.fingerprint.InitializePlaybackSpeedValuesFingerprint
-import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
@Name("Remember playback speed")
@Description("Adds the ability to remember the playback speed you chose in the playback speed flyout.")
@@ -30,7 +28,7 @@ class RememberPlaybackSpeedPatch : BytecodePatch(
InitializePlaybackSpeedValuesFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
SettingsPatch.PreferenceScreen.VIDEO.addPreferences(
SwitchPreference(
"revanced_remember_playback_speed_last_selected",
@@ -105,9 +103,7 @@ class RememberPlaybackSpeedPatch : BytecodePatch(
""".trimIndent(),
ExternalLabel("do_not_override", mutableMethod.getInstruction(0))
)
- } ?: return InitializePlaybackSpeedValuesFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw InitializePlaybackSpeedValuesFingerprint.exception
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/annotation/VideoIdCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/annotation/VideoIdCompatibility.kt
index a5fa69c6fc..b26c05ef04 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/annotation/VideoIdCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/annotation/VideoIdCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.videoid.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35", "18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class VideoIdCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprint.kt
index 3f4a0e2371..dcb8df5cb4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprint.kt
@@ -2,14 +2,15 @@ package app.revanced.patches.youtube.video.videoid.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object VideoIdFingerprint : MethodFingerprint(
returnType = "V",
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
parameters = listOf("L"),
opcodes = listOf(
+ Opcode.MOVE_RESULT_OBJECT,
Opcode.IF_EQZ,
Opcode.INVOKE_VIRTUAL,
Opcode.MOVE_RESULT_OBJECT,
@@ -23,8 +24,5 @@ object VideoIdFingerprint : MethodFingerprint(
Opcode.MOVE_RESULT_OBJECT,
Opcode.INVOKE_INTERFACE,
Opcode.MOVE_RESULT_OBJECT
- ),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("SubtitlesOverlayPresenter;")
- }
+ )
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprintBackgroundPlay.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprintBackgroundPlay.kt
index 6f7da47b4a..23de434cf7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprintBackgroundPlay.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/fingerprint/VideoIdFingerprintBackgroundPlay.kt
@@ -2,15 +2,28 @@ package app.revanced.patches.youtube.video.videoid.fingerprint
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object VideoIdFingerprintBackgroundPlay : MethodFingerprint(
returnType = "V",
accessFlags = AccessFlags.DECLARED_SYNCHRONIZED or AccessFlags.FINAL or AccessFlags.PUBLIC,
parameters = listOf("L"),
- opcodes = listOf(Opcode.INVOKE_INTERFACE),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass.endsWith("PlaybackLifecycleMonitor;")
- }
+ opcodes = listOf(
+ Opcode.MONITOR_EXIT,
+ Opcode.RETURN_VOID,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.NEW_ARRAY,
+ Opcode.SGET_OBJECT,
+ Opcode.APUT_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.IF_EQZ,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.IF_EQZ,
+ Opcode.INVOKE_INTERFACE,
+ Opcode.MOVE_RESULT_OBJECT,
+ ),
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/patch/VideoIdPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/patch/VideoIdPatch.kt
index 8f7b190243..adf5a6153d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoid/patch/VideoIdPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoid/patch/VideoIdPatch.kt
@@ -1,21 +1,20 @@
package app.revanced.patches.youtube.video.videoid.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.video.videoid.annotation.VideoIdCompatibility
import app.revanced.patches.youtube.video.videoid.fingerprint.VideoIdFingerprint
import app.revanced.patches.youtube.video.videoid.fingerprint.VideoIdFingerprintBackgroundPlay
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Name("Video id hook")
@Description("Hooks to detect when the video id changes")
@@ -24,30 +23,34 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
class VideoIdPatch : BytecodePatch(
listOf(VideoIdFingerprint, VideoIdFingerprintBackgroundPlay)
) {
- override fun execute(context: BytecodeContext): PatchResult {
- VideoIdFingerprint.result?.let { result ->
- val videoIdRegisterInstructionIndex = result.scanResult.patternScanResult!!.endIndex
-
- result.mutableMethod.also {
- insertMethod = it
- }.apply {
- videoIdRegister = getInstruction<OneRegisterInstruction>(videoIdRegisterInstructionIndex).registerA
- insertIndex = videoIdRegisterInstructionIndex + 1
- }
- } ?: return VideoIdFingerprint.toErrorResult()
+ override fun execute(context: BytecodeContext) {
+ /**
+ * Supplies the method and register index of the video id register.
+ *
+ * @param consumer Consumer that receives the method, insert index and video id register index.
+ */
+ fun MethodFingerprint.setFields(consumer: (MutableMethod, Int, Int) -> Unit) = result?.let { result ->
+ val videoIdRegisterIndex = result.scanResult.patternScanResult!!.endIndex
- VideoIdFingerprintBackgroundPlay.result?.let { result ->
- val endIndex = result.scanResult.patternScanResult!!.endIndex
+ result.mutableMethod.let {
+ val videoIdRegister = it.getInstruction<OneRegisterInstruction>(videoIdRegisterIndex).registerA
+ val insertIndex = videoIdRegisterIndex + 1
+ consumer(it, insertIndex, videoIdRegister)
- result.mutableMethod.also {
- backgroundPlaybackMethod = it
- }.apply {
- backgroundPlaybackVideoIdRegister = getInstruction<OneRegisterInstruction>(endIndex + 1).registerA
- backgroundPlaybackInsertIndex = endIndex + 2
}
- } ?: return VideoIdFingerprintBackgroundPlay.toErrorResult()
+ } ?: throw VideoIdFingerprint.exception
+
+ VideoIdFingerprint.setFields { method, insertIndex, videoIdRegister ->
+ insertMethod = method
+ VideoIdPatch.insertIndex = insertIndex
+ VideoIdPatch.videoIdRegister = videoIdRegister
+ }
- return PatchResultSuccess()
+ VideoIdFingerprintBackgroundPlay.setFields { method, insertIndex, videoIdRegister ->
+ backgroundPlaybackMethod = method
+ backgroundPlaybackInsertIndex = insertIndex
+ backgroundPlaybackVideoIdRegister = videoIdRegister
+ }
}
companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/annotations/OldVideoQualityMenuCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/annotations/OldVideoQualityMenuCompatibility.kt
index 5fe280f941..85c8948825 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/annotations/OldVideoQualityMenuCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/annotations/OldVideoQualityMenuCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.video.videoqualitymenu.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.20.39", "18.23.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.20.39", "18.23.35", "18.29.38", "18.32.39"))])
@Target(AnnotationTarget.CLASS)
internal annotation class OldVideoQualityMenuCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/fingerprints/VideoQualityMenuViewInflateFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/fingerprints/VideoQualityMenuViewInflateFingerprint.kt
index 4e2424a33e..989aa0deb2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/fingerprints/VideoQualityMenuViewInflateFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/fingerprints/VideoQualityMenuViewInflateFingerprint.kt
@@ -3,8 +3,8 @@ package app.revanced.patches.youtube.video.videoqualitymenu.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patches.youtube.video.videoqualitymenu.patch.OldVideoQualityMenuResourcePatch
import app.revanced.util.patch.LiteralValueFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object VideoQualityMenuViewInflateFingerprint : LiteralValueFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuPatch.kt
index ed50f07d24..e10cca26fe 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.youtube.misc.bottomsheet.hook.patch.BottomSheetHookPatch
@@ -15,7 +13,7 @@ import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch
import app.revanced.patches.youtube.video.videoqualitymenu.annotations.OldVideoQualityMenuCompatibility
import app.revanced.patches.youtube.video.videoqualitymenu.fingerprints.VideoQualityMenuViewInflateFingerprint
-import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@DependsOn([
@@ -30,7 +28,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
class OldVideoQualityMenuPatch : BytecodePatch(
listOf(VideoQualityMenuViewInflateFingerprint)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// region Patch for the old type of the video quality menu.
VideoQualityMenuViewInflateFingerprint.result?.let {
@@ -57,8 +55,6 @@ class OldVideoQualityMenuPatch : BytecodePatch(
LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
// endregion
-
- return PatchResultSuccess()
}
private companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuResourcePatch.kt
index c74137a22e..5c21965d06 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/patch/OldVideoQualityMenuResourcePatch.kt
@@ -1,9 +1,7 @@
package app.revanced.patches.youtube.video.videoqualitymenu.patch
import app.revanced.patcher.data.ResourceContext
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultError
-import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.PatchException
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
@@ -13,7 +11,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
class OldVideoQualityMenuResourcePatch : ResourcePatch {
- override fun execute(context: ResourceContext): PatchResult {
+ override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.VIDEO.addPreferences(
SwitchPreference(
"revanced_show_old_video_quality_menu",
@@ -24,12 +22,10 @@ class OldVideoQualityMenuResourcePatch : ResourcePatch {
)
fun findResource(name: String) = ResourceMappingPatch.resourceMappings.find { it.name == name }?.id
- ?: throw PatchResultError("Could not find resource")
+ ?: throw PatchException("Could not find resource")
// Used for the old type of the video quality menu.
videoQualityBottomSheetListFragmentTitle = findResource("video_quality_bottom_sheet_list_fragment_title")
-
- return PatchResultSuccess()
}
internal companion object {
diff --git a/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/fingerprints/ContainsAdFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/fingerprints/ContainsAdFingerprint.kt
index 3d77a14474..1ed40c6add 100644
--- a/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/fingerprints/ContainsAdFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/fingerprints/ContainsAdFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.youtubevanced.ad.general.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object ContainsAdFingerprint:MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/patch/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/patch/HideAdsPatch.kt
index 439a44a2f7..bf96a84493 100644
--- a/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/patch/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/patch/HideAdsPatch.kt
@@ -1,20 +1,18 @@
package app.revanced.patches.youtubevanced.ad.general.patch
-import app.revanced.extensions.toErrorResult
+import app.revanced.extensions.exception
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.misc.fix.verticalscroll.patch.VerticalScrollPatch
import app.revanced.patches.youtubevanced.ad.general.annotations.HideAdsCompatibility
import app.revanced.patches.youtubevanced.ad.general.fingerprints.ContainsAdFingerprint
-import org.jf.dexlib2.iface.instruction.formats.Instruction21c
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
@Patch
@Name("Hide ads")
@@ -26,7 +24,7 @@ class HideAdsPatch : BytecodePatch(
ContainsAdFingerprint
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
ContainsAdFingerprint.result?.let { result ->
result.mutableMethod.apply {
val insertIndex = result.scanResult.patternScanResult!!.endIndex + 1
@@ -56,8 +54,6 @@ class HideAdsPatch : BytecodePatch(
)
}
}
- } ?: return ContainsAdFingerprint.toErrorResult()
-
- return PatchResultSuccess()
+ } ?: throw ContainsAdFingerprint.exception
}
}
diff --git a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/IsPremiumFingerprint.kt b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/IsPremiumFingerprint.kt
index 4835c40483..06b4a3770c 100644
--- a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/IsPremiumFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/IsPremiumFingerprint.kt
@@ -2,8 +2,8 @@ package app.revanced.patches.yuka.misc.unlockpremium.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
object IsPremiumFingerprint : MethodFingerprint(
returnType = "Z",
diff --git a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/YukaUserConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/YukaUserConstructorFingerprint.kt
index 67aba37200..5d9d2237b2 100644
--- a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/YukaUserConstructorFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/fingerprints/YukaUserConstructorFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.patches.yuka.misc.unlockpremium.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.AccessFlags
object YukaUserConstructorFingerprint : MethodFingerprint(
returnType = "V",
diff --git a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/patch/UnlockPremiunPatch.kt b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/patch/UnlockPremiunPatch.kt
index e409dd081e..3c5aaf45d4 100644
--- a/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/patch/UnlockPremiunPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/yuka/misc/unlockpremium/patch/UnlockPremiunPatch.kt
@@ -6,8 +6,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.yuka.misc.unlockpremium.annotations.UnlockPremiumCompatibility
import app.revanced.patches.yuka.misc.unlockpremium.fingerprints.IsPremiumFingerprint
@@ -23,7 +21,7 @@ class UnlockPremiunPatch : BytecodePatch(
)
) {
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
IsPremiumFingerprint.resolve(context,YukaUserConstructorFingerprint.result!!.classDef)
val method = IsPremiumFingerprint.result!!.mutableMethod
method.addInstructions(
@@ -33,7 +31,6 @@ class UnlockPremiunPatch : BytecodePatch(
return v0
"""
)
- return PatchResultSuccess()
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt b/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
index ccc57627be..d6d1bb9e04 100644
--- a/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
+++ b/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
@@ -1,22 +1,22 @@
package app.revanced.util.microg
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.util.microg.Constants.ACTIONS
import app.revanced.util.microg.Constants.AUTHORITIES
import app.revanced.util.microg.Constants.MICROG_VENDOR
import app.revanced.util.microg.Constants.PERMISSIONS
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.builder.instruction.BuilderInstruction21c
-import org.jf.dexlib2.iface.instruction.formats.Instruction21c
-import org.jf.dexlib2.iface.reference.StringReference
-import org.jf.dexlib2.immutable.reference.ImmutableStringReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction21c
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
+import com.android.tools.smali.dexlib2.iface.reference.StringReference
+import com.android.tools.smali.dexlib2.immutable.reference.ImmutableStringReference
/**
* Helper class for applying bytecode patches needed for the microg-support patches.
@@ -219,25 +219,25 @@ internal object MicroGBytecodeHelper {
*/
private fun List<MethodFingerprint>.returnEarly() {
this.forEach { fingerprint ->
- if (fingerprint.result == null) throw PatchResultError(fingerprint.toString())
- val result = fingerprint.result!!
- val stringInstructions = when (result.method.returnType.first()) {
- 'L' -> """
+ fingerprint.result?.let { result ->
+ val stringInstructions = when (result.method.returnType.first()) {
+ 'L' -> """
const/4 v0, 0x0
return-object v0
"""
- 'V' -> "return-void"
- 'I' -> """
+ 'V' -> "return-void"
+ 'I' -> """
const/4 v0, 0x0
return v0
"""
- else -> throw Exception("This case should never happen.")
- }
- result.mutableMethod.addInstructions(
- 0, stringInstructions
- )
+ else -> throw Exception("This case should never happen.")
+ }
+ result.mutableMethod.addInstructions(
+ 0, stringInstructions
+ )
+ } ?: throw fingerprint.exception
}
}
}
diff --git a/src/main/kotlin/app/revanced/util/patch/AbstractTransformInstructionsPatch.kt b/src/main/kotlin/app/revanced/util/patch/AbstractTransformInstructionsPatch.kt
index a8354c6bd3..54123cb3b1 100644
--- a/src/main/kotlin/app/revanced/util/patch/AbstractTransformInstructionsPatch.kt
+++ b/src/main/kotlin/app/revanced/util/patch/AbstractTransformInstructionsPatch.kt
@@ -3,14 +3,12 @@ package app.revanced.util.patch
import app.revanced.extensions.findMutableMethodOf
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.Method
-import org.jf.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.Method
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
-internal abstract class AbstractTransformInstructionsPatch<T> : BytecodePatch() {
+abstract class AbstractTransformInstructionsPatch<T> : BytecodePatch() {
abstract fun filterMap(
classDef: ClassDef,
@@ -28,7 +26,7 @@ internal abstract class AbstractTransformInstructionsPatch<T> : BytecodePatch()
}
}
- override fun execute(context: BytecodeContext): PatchResult {
+ override fun execute(context: BytecodeContext) {
// Find all methods to patch
buildMap {
context.classes.forEach { classDef ->
@@ -62,7 +60,5 @@ internal abstract class AbstractTransformInstructionsPatch<T> : BytecodePatch()
}
}
}
-
- return PatchResultSuccess()
}
}
diff --git a/src/main/kotlin/app/revanced/util/patch/LiteralValueFingerprint.kt b/src/main/kotlin/app/revanced/util/patch/LiteralValueFingerprint.kt
index ec977e062b..86c3b98e52 100644
--- a/src/main/kotlin/app/revanced/util/patch/LiteralValueFingerprint.kt
+++ b/src/main/kotlin/app/revanced/util/patch/LiteralValueFingerprint.kt
@@ -2,7 +2,7 @@ package app.revanced.util.patch
import app.revanced.extensions.containsConstantInstructionValue
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.Opcode
abstract class LiteralValueFingerprint(
returnType: String? = null,
diff --git a/src/main/kotlin/app/revanced/util/patch/MethodCall.kt b/src/main/kotlin/app/revanced/util/patch/MethodCall.kt
index 9bd1bd447c..48a38ad07e 100644
--- a/src/main/kotlin/app/revanced/util/patch/MethodCall.kt
+++ b/src/main/kotlin/app/revanced/util/patch/MethodCall.kt
@@ -2,15 +2,15 @@ package app.revanced.util.patch
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
-import org.jf.dexlib2.Opcode
-import org.jf.dexlib2.iface.ClassDef
-import org.jf.dexlib2.iface.instruction.Instruction
-import org.jf.dexlib2.iface.instruction.formats.Instruction35c
-import org.jf.dexlib2.iface.reference.MethodReference
+import com.android.tools.smali.dexlib2.Opcode
+import com.android.tools.smali.dexlib2.iface.ClassDef
+import com.android.tools.smali.dexlib2.iface.instruction.Instruction
+import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
+import com.android.tools.smali.dexlib2.iface.reference.MethodReference
-internal typealias Instruction35cInfo = Triple<IMethodCall, Instruction35c, Int>
+typealias Instruction35cInfo = Triple<IMethodCall, Instruction35c, Int>
-internal interface IMethodCall {
+interface IMethodCall {
val definedClassName: String
val methodName: String
val methodParams: Array<String>
@@ -62,14 +62,14 @@ internal interface IMethodCall {
}
}
-internal inline fun <reified E> fromMethodReference(methodReference: MethodReference)
+inline fun <reified E> fromMethodReference(methodReference: MethodReference)
where E : Enum<E>, E : IMethodCall = enumValues<E>().firstOrNull { search ->
search.definedClassName == methodReference.definingClass
&& search.methodName == methodReference.name
&& methodReference.parameterTypes.toTypedArray().contentEquals(search.methodParams)
}
-internal inline fun <reified E> filterMapInstruction35c(
+inline fun <reified E> filterMapInstruction35c(
integrationsClassDescriptorPrefix: String,
classDef: ClassDef,
instruction: Instruction,
diff --git a/src/main/kotlin/app/revanced/util/resources/ResourceUtils.kt b/src/main/kotlin/app/revanced/util/resources/ResourceUtils.kt
index be6a774866..0cb67a06ff 100644
--- a/src/main/kotlin/app/revanced/util/resources/ResourceUtils.kt
+++ b/src/main/kotlin/app/revanced/util/resources/ResourceUtils.kt
@@ -1,20 +1,22 @@
package app.revanced.util.resources
-import app.revanced.patcher.data.DomFileEditor
import app.revanced.patcher.data.ResourceContext
+import app.revanced.patcher.util.DomFileEditor
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import org.w3c.dom.Node
import java.nio.file.Files
import java.nio.file.StandardCopyOption
-internal object ResourceUtils {
+@Suppress("MemberVisibilityCanBePrivate")
+object ResourceUtils {
/**
* Merge strings. This manages [StringResource]s automatically.
+ *
* @param host The hosting xml resource. Needs to be a valid strings.xml resource.
*/
- internal fun ResourceContext.mergeStrings(host: String) {
+ fun ResourceContext.mergeStrings(host: String) {
this.iterateXmlNodeChildren(host, "resources") {
// TODO: figure out why this is needed
if (!it.hasAttributes()) return@iterateXmlNodeChildren
@@ -31,10 +33,11 @@ internal object ResourceUtils {
/**
* Copy resources from the current class loader to the resource directory.
+ *
* @param sourceResourceDirectory The source resource directory name.
* @param resources The resources to copy.
*/
- internal fun ResourceContext.copyResources(sourceResourceDirectory: String, vararg resources: ResourceGroup) {
+ fun ResourceContext.copyResources(sourceResourceDirectory: String, vararg resources: ResourceGroup) {
val classLoader = ResourceUtils.javaClass.classLoader
val targetResourceDirectory = this["res"]
@@ -54,7 +57,7 @@ internal object ResourceUtils {
* @param resourceDirectoryName The name of the directory of the resource.
* @param resources A list of resource names.
*/
- internal class ResourceGroup(val resourceDirectoryName: String, vararg val resources: String)
+ class ResourceGroup(val resourceDirectoryName: String, vararg val resources: String)
/**
* Iterate through the children of a node by its tag.
@@ -62,7 +65,7 @@ internal object ResourceUtils {
* @param targetTag The target xml node.
* @param callback The callback to call when iterating over the nodes.
*/
- internal fun ResourceContext.iterateXmlNodeChildren(
+ fun ResourceContext.iterateXmlNodeChildren(
resource: String,
targetTag: String,
callback: (node: Node) -> Unit
|
feat
|
Restore previous release
|
8a43d75e2db63c47bb9ad1b75027df0868c094e5
|
2023-05-07 21:57:35
|
LisoUseInAIKyrios
|
fix(youtube/integrations): allow playback of embedded videos (#2092)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
index 2ef2e48dcb..018d2f14ef 100644
--- a/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/integrations/patch/AbstractIntegrationsPatch.kt
@@ -9,6 +9,7 @@ import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.patch.PatchResultSuccess
+import org.jf.dexlib2.Opcode
import org.jf.dexlib2.iface.Method
@Description("Applies mandatory patches to implement the ReVanced integrations into the application.")
@@ -24,10 +25,21 @@ abstract class AbstractIntegrationsPatch(
* @see MethodFingerprint
*/
abstract class IntegrationsFingerprint(
+ returnType: String? = null,
+ access: Int? = null,
+ parameters: Iterable<String>? = null,
+ opcodes: Iterable<Opcode?>? = null,
strings: Iterable<String>? = null,
customFingerprint: ((methodDef: Method) -> Boolean)? = null,
private val contextRegisterResolver: (Method) -> Int = object : RegisterResolver {}
- ) : MethodFingerprint(strings = strings, customFingerprint = customFingerprint) {
+ ) : MethodFingerprint(
+ returnType,
+ access,
+ parameters,
+ opcodes,
+ strings,
+ customFingerprint
+ ) {
fun invoke(integrationsDescriptor: String): PatchResult {
result?.mutableMethod?.let { method ->
val contextRegister = contextRegisterResolver(method)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt
new file mode 100644
index 0000000000..6b10316562
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/fingerprints/EmbeddedPlayerControlsOverlayFingerprint.kt
@@ -0,0 +1,15 @@
+package app.revanced.patches.youtube.misc.integrations.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch.IntegrationsFingerprint
+import org.jf.dexlib2.AccessFlags
+
+object EmbeddedPlayerControlsOverlayFingerprint : IntegrationsFingerprint(
+ access = AccessFlags.PRIVATE or AccessFlags.CONSTRUCTOR,
+ returnType = "V",
+ parameters = listOf("L", "L", "L"),
+ customFingerprint = { methodDef ->
+ methodDef.definingClass.startsWith("Lcom/google/android/apps/youtube/embeddedplayer/service/ui/overlays/controlsoverlay/remoteloaded/")
+ },
+ contextRegisterResolver = { it.implementation!!.registerCount - it.parameters.size }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
index 6fb114bafd..10a9dc93d1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/integrations/patch/IntegrationsPatch.kt
@@ -5,6 +5,7 @@ import app.revanced.patcher.patch.annotations.RequiresIntegrations
import app.revanced.patches.shared.integrations.patch.AbstractIntegrationsPatch
import app.revanced.patches.youtube.misc.integrations.annotations.IntegrationsCompatibility
import app.revanced.patches.youtube.misc.integrations.fingerprints.InitFingerprint
+import app.revanced.patches.youtube.misc.integrations.fingerprints.EmbeddedPlayerControlsOverlayFingerprint
import app.revanced.patches.youtube.misc.integrations.fingerprints.ServiceFingerprint
import app.revanced.patches.youtube.misc.integrations.fingerprints.StandalonePlayerFingerprint
@@ -13,5 +14,5 @@ import app.revanced.patches.youtube.misc.integrations.fingerprints.StandalonePla
@RequiresIntegrations
class IntegrationsPatch : AbstractIntegrationsPatch(
"Lapp/revanced/integrations/utils/ReVancedUtils;",
- listOf(InitFingerprint, StandalonePlayerFingerprint, ServiceFingerprint),
+ listOf(InitFingerprint, StandalonePlayerFingerprint, ServiceFingerprint, EmbeddedPlayerControlsOverlayFingerprint),
)
\ No newline at end of file
|
fix
|
allow playback of embedded videos (#2092)
|
a9258d48d3ddf8552ab56219677a3b31ee553666
|
2024-06-08 22:12:45
|
Yan
|
feat(Boost for Reddit): Add `Fix audio missing in video downloads` patch (#3287)
| false
|
diff --git a/api/revanced-patches.api b/api/revanced-patches.api
index 5b4d868120..299b38f4ac 100644
--- a/api/revanced-patches.api
+++ b/api/revanced-patches.api
@@ -582,6 +582,12 @@ public final class app/revanced/patches/reddit/customclients/boostforreddit/api/
public fun patchUserAgent (Ljava/util/Set;Lapp/revanced/patcher/data/BytecodeContext;)V
}
+public final class app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/FixAudioMissingInDownloadsPatch : app/revanced/patcher/patch/BytecodePatch {
+ public static final field INSTANCE Lapp/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/FixAudioMissingInDownloadsPatch;
+ public fun execute (Lapp/revanced/patcher/data/BytecodeContext;)V
+ public synthetic fun execute (Lapp/revanced/patcher/data/Context;)V
+}
+
public final class app/revanced/patches/reddit/customclients/boostforreddit/fix/slink/FixSLinksPatch : app/revanced/patches/reddit/customclients/BaseFixSLinksPatch {
public static final field INSTANCE Lapp/revanced/patches/reddit/customclients/boostforreddit/fix/slink/FixSLinksPatch;
}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/FixAudioMissingInDownloadsPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/FixAudioMissingInDownloadsPatch.kt
new file mode 100644
index 0000000000..103569656a
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/FixAudioMissingInDownloadsPatch.kt
@@ -0,0 +1,38 @@
+package app.revanced.patches.reddit.customclients.boostforreddit.fix.downloads
+
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotation.CompatiblePackage
+import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.reddit.customclients.boostforreddit.fix.downloads.fingerprints.DownloadAudioFingerprint
+import app.revanced.util.resultOrThrow
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+
+@Patch(
+ name = "Fix missing audio in video downloads",
+ description = "Fixes audio missing in videos downloaded from v.redd.it.",
+ compatiblePackages = [CompatiblePackage("com.rubenmayayo.reddit")],
+)
+@Suppress("unused")
+object FixAudioMissingInDownloadsPatch : BytecodePatch(
+ setOf(DownloadAudioFingerprint),
+) {
+ private val endpointReplacements = mapOf(
+ "/DASH_audio.mp4" to "/DASH_AUDIO_128.mp4",
+ "/audio" to "/DASH_AUDIO_64.mp4",
+ )
+ override fun execute(context: BytecodeContext) {
+ DownloadAudioFingerprint.resultOrThrow().let { result ->
+ result.scanResult.stringsScanResult!!.matches.take(2).forEach { match ->
+ result.mutableMethod.apply {
+ val replacement = endpointReplacements[match.string]
+ val register = getInstruction<OneRegisterInstruction>(match.index).registerA
+
+ replaceInstruction(match.index, "const-string v$register, \"$replacement\"")
+ }
+ }
+ }
+ }
+}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/fingerprints/DownloadAudioFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/fingerprints/DownloadAudioFingerprint.kt
new file mode 100644
index 0000000000..b5261523fb
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/boostforreddit/fix/downloads/fingerprints/DownloadAudioFingerprint.kt
@@ -0,0 +1,7 @@
+package app.revanced.patches.reddit.customclients.boostforreddit.fix.downloads.fingerprints
+
+import app.revanced.patcher.fingerprint.MethodFingerprint
+
+internal object DownloadAudioFingerprint : MethodFingerprint(
+ strings = setOf("/DASH_audio.mp4", "/audio", "v.redd.it", "/"),
+)
|
feat
|
Add `Fix audio missing in video downloads` patch (#3287)
|
1f08047b48cc9555a4887d16ec7219a55a77251f
|
2025-02-25 00:04:28
|
MarcaD
|
fix(YouTube): Resolve button flickering when taping seekbar (#4500)
| false
|
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/videoplayer/PlayerControlButton.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/videoplayer/PlayerControlButton.java
index d2b47b888f..6d3c320171 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/videoplayer/PlayerControlButton.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/videoplayer/PlayerControlButton.java
@@ -90,7 +90,13 @@ public PlayerControlButton(View controlsViewGroup,
}
public void setVisibilityImmediate(boolean visible) {
- private_setVisibility(visible, false);
+ if (visible) {
+ // Fix button flickering, by pushing this call to the back of
+ // the main thread and letting other layout code run first.
+ Utils.runOnMainThread(() -> private_setVisibility(true, false));
+ } else {
+ private_setVisibility(false, false);
+ }
}
public void setVisibility(boolean visible, boolean animated) {
|
fix
|
Resolve button flickering when taping seekbar (#4500)
|
b6ea5a43b3eec6a06c7514cd79569b97a2b7d333
|
2022-12-09 22:41:16
|
Lisouseinaikyrios
|
fix: inconsistencies in preference switches (#1207)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/DownloadsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/DownloadsResourcePatch.kt
index e757cd2c7a..4030a77357 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/DownloadsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/resource/patch/DownloadsResourcePatch.kt
@@ -37,8 +37,8 @@ class DownloadsResourcePatch : ResourcePatch {
"revanced_downloads",
StringResource("revanced_downloads_enabled_title", "Show download button"),
true,
- StringResource("revanced_downloads_enabled_summary_on", "Download button is visible"),
- StringResource("revanced_downloads_enabled_summary_off", "Download button is hidden")
+ StringResource("revanced_downloads_enabled_summary_on", "Download button is shown"),
+ StringResource("revanced_downloads_enabled_summary_off", "Download button is not shown")
),
TextPreference(
"revanced_downloads_package_name",
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autoplaybutton/patch/HideAutoplayButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autoplaybutton/patch/HideAutoplayButtonPatch.kt
index 3a30a50625..0791144325 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autoplaybutton/patch/HideAutoplayButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autoplaybutton/patch/HideAutoplayButtonPatch.kt
@@ -38,11 +38,11 @@ class HideAutoplayButtonPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_autoplay_button_enabled",
- StringResource("revanced_autoplay_button_enabled_title", "Show autoplay button"),
- false,
- StringResource("revanced_autoplay_button_summary_on", "Autoplay button is shown"),
- StringResource("revanced_autoplay_button_summary_off", "Autoplay button is hidden")
+ "revanced_hide_autoplay_button",
+ StringResource("revanced_hide_autoplay_button_title", "Hide autoplay button"),
+ true,
+ StringResource("revanced_hide_autoplay_button_summary_on", "Autoplay button is hidden"),
+ StringResource("revanced_hide_autoplay_button_summary_off", "Autoplay button is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt
index b458971709..bd82e1dda8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt
@@ -31,46 +31,46 @@ class HideButtonsPatch : ResourcePatch {
StringResource("revanced_hide_buttons_title", "Hide action buttons"),
listOf(
SwitchPreference(
- "revanced_like_button",
- StringResource("revanced_like_button_title", "Hide like button"),
+ "revanced_hide_like_button",
+ StringResource("revanced_hide_like_button_title", "Hide like button"),
false,
- StringResource("revanced_like_button_on", "Like button is hidden"),
- StringResource("revanced_like_button_off", "Like button is shown")
+ StringResource("revanced_hide_like_button_summary_on", "Like button is hidden"),
+ StringResource("revanced_hide_like_button_summary_off", "Like button is shown")
),
SwitchPreference(
- "revanced_dislike_button",
- StringResource("revanced_dislike_button_title", "Hide dislike button"),
+ "revanced_hide_dislike_button",
+ StringResource("revanced_hide_dislike_button_title", "Hide dislike button"),
false,
- StringResource("revanced_dislike_button_on", "Dislike button is hidden"),
- StringResource("revanced_dislike_button_off", "Dislike button is shown")
+ StringResource("revanced_hide_dislike_button_summary_on", "Dislike button is hidden"),
+ StringResource("revanced_hide_dislike_button_summary_off", "Dislike button is shown")
),
SwitchPreference(
- "revanced_download_button",
- StringResource("revanced_download_button_title", "Hide download button"),
+ "revanced_hide_download_button",
+ StringResource("revanced_hide_download_button_title", "Hide download button"),
false,
- StringResource("revanced_download_button_on", "Download button is hidden"),
- StringResource("revanced_download_button_off", "Download button is shown")
+ StringResource("revanced_hide_download_button_summary_on", "Download button is hidden"),
+ StringResource("revanced_hide_download_button_summary_off", "Download button is shown")
),
SwitchPreference(
- "revanced_playlist_button",
- StringResource("revanced_playlist_button_title", "Hide playlist button"),
+ "revanced_hide_playlist_button",
+ StringResource("revanced_hide_playlist_button_title", "Hide playlist button"),
false,
- StringResource("revanced_playlist_button_on", "Playlist button is hidden"),
- StringResource("revanced_playlist_button_off", "Playlist button is shown")
+ StringResource("revanced_hide_playlist_button_summary_on", "Playlist button is hidden"),
+ StringResource("revanced_hide_playlist_button_summary_off", "Playlist button is shown")
),
SwitchPreference(
- "revanced_action_button",
- StringResource("revanced_action_button_title", "Hide create, clip and thanks buttons"),
+ "revanced_hide_action_button",
+ StringResource("revanced_hide_action_button_title", "Hide create, clip and thanks buttons"),
true,
- StringResource("revanced_action_button_on", "Buttons are hidden"),
- StringResource("revanced_action_button_off", "Buttons are shown")
+ StringResource("revanced_hide_action_button_summary_on", "Buttons are hidden"),
+ StringResource("revanced_hide_action_button_summary_off", "Buttons are shown")
),
SwitchPreference(
- "revanced_share_button",
- StringResource("revanced_share_button_title", "Hide share button"),
+ "revanced_hide_share_button",
+ StringResource("revanced_hide_share_button_title", "Hide share button"),
false,
- StringResource("revanced_share_button_on", "Share button is hidden"),
- StringResource("revanced_share_button_off", "Share button is shown")
+ StringResource("revanced_hide_share_button_summary_on", "Share button is hidden"),
+ StringResource("revanced_hide_share_button_summaryoff", "Share button is shown")
),
),
StringResource("revanced_hide_buttons_summary", "Hide or show buttons under videos")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/castbutton/patch/HideCastButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/castbutton/patch/HideCastButtonPatch.kt
index 7a56ab2f10..f1925c0a36 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/castbutton/patch/HideCastButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/castbutton/patch/HideCastButtonPatch.kt
@@ -27,11 +27,11 @@ class HideCastButtonPatch : BytecodePatch() {
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_cast_button_enabled",
- StringResource("revanced_cast_button_enabled_title", "Show cast button"),
- false,
- StringResource("revanced_cast_button_summary_on", "Cast button is shown"),
- StringResource("revanced_cast_button_summary_off", "Cast button is hidden")
+ "revanced_hide_cast_button",
+ StringResource("revanced_hide_cast_button_title", "Hide cast button"),
+ true,
+ StringResource("revanced_hide_cast_button_summary_on", "Cast button is hidden"),
+ StringResource("revanced_hide_cast_button_summary_off", "Cast button is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/comments/resource/patch/CommentsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/resource/patch/CommentsResourcePatch.kt
index 7d15197f77..052b130597 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/comments/resource/patch/CommentsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/comments/resource/patch/CommentsResourcePatch.kt
@@ -31,7 +31,7 @@ class CommentsResourcePatch : ResourcePatch {
listOf(
SwitchPreference(
"revanced_hide_comments_section",
- StringResource("revanced_hide_comments_section_title", "Remove comments section"),
+ StringResource("revanced_hide_comments_section_title", "Hide comments section"),
false,
StringResource("revanced_hide_comments_section_summary_on", "Comment section is hidden"),
StringResource("revanced_hide_comments_section_summary_off", "Comment section is shown")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/fullscreenpanels/patch/FullscreenPanelsRemoverPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/fullscreenpanels/patch/FullscreenPanelsRemoverPatch.kt
index 75485120d6..e61de0f8c3 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/fullscreenpanels/patch/FullscreenPanelsRemoverPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/fullscreenpanels/patch/FullscreenPanelsRemoverPatch.kt
@@ -35,11 +35,11 @@ class FullscreenPanelsRemoverPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_fullscreen_panels_enabled",
- StringResource("revanced_fullscreen_panels_enabled_title", "Show fullscreen panels"),
- false,
- StringResource("revanced_fullscreen_panels_summary_on", "Fullscreen panels are shown"),
- StringResource("revanced_fullscreen_panels_summary_off", "Fullscreen panels are hidden")
+ "revanced_hide_fullscreen_panels",
+ StringResource("revanced_hide_fullscreen_panels_title", "Hide fullscreen panels"),
+ true,
+ StringResource("revanced_hide_fullscreen_panels_summary_on", "Fullscreen panels are hidden"),
+ StringResource("revanced_hide_fullscreen_panels_summary_off", "Fullscreen panels are shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidealbumcards/resource/patch/AlbumCardsResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidealbumcards/resource/patch/AlbumCardsResourcePatch.kt
index c0a2ae155e..faf757593b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hidealbumcards/resource/patch/AlbumCardsResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidealbumcards/resource/patch/AlbumCardsResourcePatch.kt
@@ -26,10 +26,10 @@ class AlbumCardsResourcePatch : ResourcePatch {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_album_cards",
- StringResource("revanced_hide_album_cards_title", "Hide the album cards"),
+ StringResource("revanced_hide_album_cards_title", "Hide album cards"),
false,
- StringResource("revanced_hide_album_cards_summary_on", "Album cards is hidden"),
- StringResource("revanced_hide_album_cards_summary_off", "Album cards is visible")
+ StringResource("revanced_hide_album_cards_summary_on", "Music album cards are hidden"),
+ StringResource("revanced_hide_album_cards_summary_off", "Music album cards are shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidecrowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidecrowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
index 1ae6eea25a..2529b26b80 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hidecrowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidecrowdfundingbox/resource/patch/CrowdfundingBoxResourcePatch.kt
@@ -26,10 +26,10 @@ class CrowdfundingBoxResourcePatch : ResourcePatch {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_crowdfunding_box",
- StringResource("revanced_hide_crowdfunding_box_title", "Hide the crowdfunding box"),
+ StringResource("revanced_hide_crowdfunding_box_title", "Hide crowdfunding box"),
false,
StringResource("revanced_hide_crowdfunding_box_summary_on", "Crowdfunding box is hidden"),
- StringResource("revanced_hide_crowdfunding_box_summary_off", "Crowdfunding box is visible")
+ StringResource("revanced_hide_crowdfunding_box_summary_off", "Crowdfunding box is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidemixplaylists/patch/MixPlaylistsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidemixplaylists/patch/MixPlaylistsPatch.kt
index d44b0598a7..e241848143 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hidemixplaylists/patch/MixPlaylistsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidemixplaylists/patch/MixPlaylistsPatch.kt
@@ -35,11 +35,11 @@ class MixPlaylistsPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_mix_playlists_hidden",
- StringResource("revanced_mix_playlists_title", "Hide mix playlists"),
+ "revanced_hide_mix_playlists",
+ StringResource("revanced_hide_mix_playlists_title", "Hide mix playlists"),
false,
- StringResource("revanced_mix_playlists_summary_on", "Mix playlists are hidden"),
- StringResource("revanced_mix_playlists_summary_off", "Mix playlists are shown")
+ StringResource("revanced_hide_mix_playlists_summary_on", "Mix playlists are hidden"),
+ StringResource("revanced_hide_mix_playlists_summary_off", "Mix playlists are shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
index 31bf1fab70..a616be48f2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
@@ -36,7 +36,7 @@ class HideTimeAndSeekbarPatch : BytecodePatch(
StringResource("revanced_hide_time_and_seekbar_title", "Hide time and seekbar"),
false,
StringResource("revanced_hide_time_and_seekbar_summary_on", "Time and seekbar are hidden"),
- StringResource("revanced_hide_time_and_seekbar_summary_off", "Time and seekbar are visible")
+ StringResource("revanced_hide_time_and_seekbar_summary_off", "Time and seekbar are shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/oldqualitylayout/patch/OldQualityLayoutPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/oldqualitylayout/patch/OldQualityLayoutPatch.kt
index 68b1b2f6dd..dd4597b01a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/oldqualitylayout/patch/OldQualityLayoutPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/oldqualitylayout/patch/OldQualityLayoutPatch.kt
@@ -21,9 +21,11 @@ import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@Name("old-quality-layout")
-@Description("Enables the original quality flyout menu.")
+@Description("Enables the original video quality flyout in the video player settings")
@OldQualityLayoutCompatibility
@Version("0.0.1")
+// new ReVanced users have no idea what it means to use the "old quality layout menu"
+// maybe rename this patch to better describe what it provides (ie: user-selectable-video-resolution )
class OldQualityLayoutPatch : BytecodePatch(
listOf(QualityMenuViewInflateFingerprint)
) {
@@ -31,10 +33,10 @@ class OldQualityLayoutPatch : BytecodePatch(
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_use_old_style_quality_settings",
- StringResource("revanced_old_style_quality_settings_enabled_title", "Use old quality layout"),
+ StringResource("revanced_old_style_quality_settings_enabled_title", "Use old video quality player menu"),
true,
- StringResource("revanced_old_style_quality_settings_summary_on", "Old quality settings are shown"),
- StringResource("revanced_old_style_quality_settings_summary_off", "New quality settings are shown")
+ StringResource("revanced_old_style_quality_settings_summary_on", "Old video quality menu is used"),
+ StringResource("revanced_old_style_quality_settings_summary_off", "Old video quality menu is not used")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
index 917ab4563a..4029b8313e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/resource/patch/HideEmailAddressResourcePatch.kt
@@ -26,10 +26,10 @@ class HideEmailAddressResourcePatch : ResourcePatch {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_email_address",
- StringResource("revanced_hide_email_address_title", "Hide the email address"),
+ StringResource("revanced_hide_email_address_title", "Hide email in account switcher"),
false,
StringResource("revanced_hide_email_address_summary_on", "Email address is hidden"),
- StringResource("revanced_hide_email_address_summary_off", "Email address is visible")
+ StringResource("revanced_hide_email_address_summary_off", "Email address is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/createbutton/patch/CreateButtonRemoverPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/createbutton/patch/CreateButtonRemoverPatch.kt
index a70dc9f2a4..f3b70d54a1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/createbutton/patch/CreateButtonRemoverPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/createbutton/patch/CreateButtonRemoverPatch.kt
@@ -37,11 +37,11 @@ class CreateButtonRemoverPatch : BytecodePatch() {
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_create_button_enabled",
- StringResource("revanced_create_button_enabled_title", "Show create button"),
- false,
- StringResource("revanced_create_button_summary_on", "Create button is shown"),
- StringResource("revanced_create_button_summary_off", "Create button is hidden")
+ "revanced_hide_create_button",
+ StringResource("revanced_hide_create_button_title", "Hide create button"),
+ true,
+ StringResource("revanced_hide_create_button_summary_on", "Create button is hidden"),
+ StringResource("revanced_hide_create_button_summary_off", "Create button is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/shortsbutton/patch/ShortsButtonRemoverPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/shortsbutton/patch/ShortsButtonRemoverPatch.kt
index b1e9e7d286..259f1bcecf 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/shortsbutton/patch/ShortsButtonRemoverPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/pivotbar/shortsbutton/patch/ShortsButtonRemoverPatch.kt
@@ -37,11 +37,11 @@ class ShortsButtonRemoverPatch : BytecodePatch() {
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_shorts_button_enabled",
- StringResource("revanced_shorts_button_enabled_title", "Show shorts button"),
- false,
- StringResource("revanced_shorts_button_summary_on", "Shorts button is shown"),
- StringResource("revanced_shorts_button_summary_off", "Shorts button is hidden")
+ "revanced_hide_shorts_button",
+ StringResource("revanced_hide_shorts_button_title", "Hide shorts button"),
+ true,
+ StringResource("revanced_hide_shorts_button_summary_on", "Shorts button is hidden"),
+ StringResource("revanced_hide_shorts_button_summary_off", "Shorts button is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/reels/patch/HideReelsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/reels/patch/HideReelsPatch.kt
index 89e6de8002..65ed14c9c2 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/reels/patch/HideReelsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/reels/patch/HideReelsPatch.kt
@@ -29,11 +29,11 @@ class HideReelsPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_reel_button_enabled",
- StringResource("revanced_reel_button_enabled_title", "Show reels button"),
- false,
- StringResource("revanced_reel_button_summary_on", "Reels button is shown"),
- StringResource("revanced_reel_button_summary_off", "Reels button is hidden")
+ "revanced_hide_reel_button",
+ StringResource("revanced_hide_reel_button_title", "Hide reels button"),
+ true,
+ StringResource("revanced_hide_reel_button_summary_on", "Reels button is hidden"),
+ StringResource("revanced_hide_reel_button_summary_off", "Reels button is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/watchinvr/patch/WatchinVRPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/watchinvr/patch/WatchinVRPatch.kt
index 89de127f8d..d2915f3bc6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/watchinvr/patch/WatchinVRPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/watchinvr/patch/WatchinVRPatch.kt
@@ -20,7 +20,7 @@ import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@Name("hide-watch-in-vr")
-@Description("Hides the Watch in VR option from the player settings flyout panel.")
+@Description("Hides the Watch in VR option in the player settings flyout panel.")
@WatchinVRCompatibility
@Version("0.0.1")
class WatchinVRPatch : BytecodePatch(
@@ -32,10 +32,10 @@ class WatchinVRPatch : BytecodePatch(
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
"revanced_hide_watch_in_vr",
- StringResource("revanced_hide_watch_in_vr_title", "Hide Watch in VR option"),
+ StringResource("revanced_hide_watch_in_vr_title", "Hide watch in VR"),
false,
- StringResource("revanced_hide_watch_in_vr_summary_on", "Watch in VR option is hidden"),
- StringResource("revanced_hide_watch_in_vr_summary_off", "Watch in VR option is shown")
+ StringResource("revanced_hide_watch_in_vr_summary_on", "Watch in VR player setting is hidden"),
+ StringResource("revanced_hide_watch_in_vr_summary_off", "Watch in VR player setting is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/watermark/patch/HideWatermarkPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/watermark/patch/HideWatermarkPatch.kt
index 909ccd2478..ec5c1b3105 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/watermark/patch/HideWatermarkPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/watermark/patch/HideWatermarkPatch.kt
@@ -35,11 +35,11 @@ class HideWatermarkPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
SwitchPreference(
- "revanced_branding_watermark_enabled",
- StringResource("revanced_branding_watermark_enabled_title", "Show branding watermark"),
- false,
- StringResource("revanced_branding_watermark_summary_on", "Branding watermark is shown"),
- StringResource("revanced_branding_watermark_summary_off", "Branding watermark is hidden")
+ "revanced_hide_video_watermark",
+ StringResource("revanced_hide_video_watermark_title", "Hide creator watermark on videos"),
+ true,
+ StringResource("revanced_hide_video_watermark_summary_on", "Watermark is hidden"),
+ StringResource("revanced_hide_video_watermark_summary_off", "Watermark is shown")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/openlinksdirectly/patch/OpenLinksDirectlyPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/openlinksdirectly/patch/OpenLinksDirectlyPatch.kt
index a15da9b2eb..fc4fb510d5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/openlinksdirectly/patch/OpenLinksDirectlyPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/openlinksdirectly/patch/OpenLinksDirectlyPatch.kt
@@ -25,7 +25,7 @@ import org.jf.dexlib2.iface.instruction.formats.Instruction35c
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@Name("open-links-directly")
-@Description("Bypasses redirect links and allows opening links directly.")
+@Description("Bypasses URL redirects and opens links directly inside YouTube app.")
@OpenLinksDirectlyCompatibility
@Version("0.0.1")
class OpenLinksDirectlyPatch : BytecodePatch(
@@ -37,10 +37,10 @@ class OpenLinksDirectlyPatch : BytecodePatch(
SettingsPatch.PreferenceScreen.MISC.addPreferences(
SwitchPreference(
"revanced_uri_redirect",
- StringResource("revanced_uri_redirect_title", "Open links directly"),
+ StringResource("revanced_uri_redirect_title", "Open YouTube links inside app"),
true,
- StringResource("revanced_uri_redirect_summary_on", "Enabled"),
- StringResource("revanced_uri_redirect_summary_off", "Disabled")
+ StringResource("revanced_uri_redirect_summary_on", "Links opened inside YouTube ReVanced"),
+ StringResource("revanced_uri_redirect_summary_off", "Links opened in web browser")
)
)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
index 4c090dcee9..08dd6723b4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
@@ -38,16 +38,16 @@ class RememberVideoQualityPatch : BytecodePatch(
override fun execute(context: BytecodeContext): PatchResult {
SettingsPatch.PreferenceScreen.MISC.addPreferences(
SwitchPreference(
- "revanced_remember_video_quality_selection",
- StringResource("revanced_remember_video_quality_selection_title", "Remember current video quality"),
- false,
+ "revanced_remember_video_quality_last_selected",
+ StringResource("revanced_remember_video_quality_last_selected_title", "Remember video quality changes"),
+ true,
StringResource(
- "revanced_remember_video_quality_selection_summary_on",
- "The current video quality will not change"
+ "revanced_remember_video_quality_last_selected_summary_on",
+ "Quality changes apply to all videos"
),
StringResource(
- "revanced_remember_video_quality_selection_summary_off",
- "Video quality will be remembered until a new quality is chosen"
+ "revanced_remember_video_quality_last_selected_summary_off",
+ "Quality changes only apply to the current video and are reverted back to the last remembered quality for future playbacks"
)
)
)
|
fix
|
inconsistencies in preference switches (#1207)
|
346b9bdaae6da72adc5b0f2330ef4fd0a10e9551
|
2022-09-28 16:58:07
|
OxrxL
|
feat: `hide-email-address` patch (#578)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/annotations/HideEmailAddressCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/annotations/HideEmailAddressCompatibility.kt
new file mode 100644
index 0000000000..dec9f04b5a
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/annotations/HideEmailAddressCompatibility.kt
@@ -0,0 +1,13 @@
+package app.revanced.patches.youtube.layout.personalinformation.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility(
+ [Package(
+ "com.google.android.youtube", arrayOf("17.25.34", "17.26.35", "17.27.39", "17.28.34", "17.29.34", "17.32.35", "17.33.42", "17.34.35", "17.34.36", "17.36.37")
+ )]
+)
+@Target(AnnotationTarget.CLASS)
+@Retention(AnnotationRetention.RUNTIME)
+internal annotation class HideEmailAddressCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt
new file mode 100644
index 0000000000..ec6e5e2ae2
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/fingerprints/AccountSwitcherAccessibilityLabelFingerprint.kt
@@ -0,0 +1,46 @@
+package app.revanced.patches.youtube.layout.personalinformation.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.youtube.layout.personalinformation.annotations.HideEmailAddressCompatibility
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+
+@Name("account-switcher-accessibility-label-fingerprint")
+@MatchingMethod("Lqvs;", "mH")
+@FuzzyPatternScanMethod(3)
+@HideEmailAddressCompatibility
+@Version("0.0.1")
+object AccountSwitcherAccessibilityLabelFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.FINAL or AccessFlags.BRIDGE or AccessFlags.SYNTHETIC,
+ listOf("L", "L"),
+ listOf(
+ Opcode.CHECK_CAST,
+ Opcode.IGET_OBJECT,
+ Opcode.NEW_INSTANCE,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_DIRECT,
+ Opcode.CONST_4,
+ Opcode.INVOKE_INTERFACE,
+ Opcode.IGET,
+ Opcode.CONST_4,
+ Opcode.ADD_INT_2ADDR,
+ Opcode.IF_EQZ,
+ Opcode.IGET_OBJECT,
+ Opcode.IF_NEZ,
+ Opcode.SGET_OBJECT,
+ Opcode.GOTO,
+ Opcode.MOVE_OBJECT,
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.IGET_OBJECT,
+ Opcode.IGET_OBJECT,
+ )
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/patch/HideEmailAddressPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/patch/HideEmailAddressPatch.kt
new file mode 100644
index 0000000000..9748459fad
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/personalinformation/patch/HideEmailAddressPatch.kt
@@ -0,0 +1,76 @@
+package app.revanced.patches.youtube.layout.personalinformation.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.impl.BytecodeData
+import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.patch.impl.BytecodePatch
+import app.revanced.patches.youtube.layout.personalinformation.annotations.HideEmailAddressCompatibility
+import app.revanced.patches.youtube.layout.personalinformation.fingerprints.AccountSwitcherAccessibilityLabelFingerprint
+import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
+import app.revanced.patches.youtube.misc.mapping.patch.ResourceMappingResourcePatch
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+import app.revanced.patches.youtube.misc.settings.framework.components.impl.StringResource
+import app.revanced.patches.youtube.misc.settings.framework.components.impl.SwitchPreference
+import org.jf.dexlib2.Opcode
+import org.jf.dexlib2.builder.instruction.BuilderInstruction35c
+import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
+import org.jf.dexlib2.iface.instruction.WideLiteralInstruction
+import org.jf.dexlib2.iface.reference.MethodReference
+
+@Patch
+@DependsOn([IntegrationsPatch::class, SettingsPatch::class, ResourceMappingResourcePatch::class])
+@Name("hide-email-address")
+@Description("Hides the email address in the account switcher.")
+@HideEmailAddressCompatibility
+@Version("0.0.1")
+class HideEmailAddressPatch : BytecodePatch(
+ listOf(
+ AccountSwitcherAccessibilityLabelFingerprint
+ )
+) {
+ override fun execute(data: BytecodeData): PatchResult {
+ SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
+ SwitchPreference(
+ "revanced_hide_email_address",
+ StringResource("revanced_hide_email_address_title", "Hide the email address"),
+ false,
+ StringResource("revanced_hide_email_address_summary_on", "Email address is hidden"),
+ StringResource("revanced_hide_email_address_summary_off", "Email address is visible")
+ )
+ )
+
+ val accountSwitcherAccessibilityLabelId =
+ ResourceMappingResourcePatch.resourceMappings.single {
+ it.type == "string" && it.name == "account_switcher_accessibility_label"
+ }.id
+
+ val accountSwitcherAccessibilityLabelMethod = AccountSwitcherAccessibilityLabelFingerprint.result!!.mutableMethod
+ val accountSwitcherAccessibilityLabelInstruction = accountSwitcherAccessibilityLabelMethod.implementation!!.instructions
+
+ val setVisibilityConstIndex = accountSwitcherAccessibilityLabelInstruction.indexOfFirst {
+ (it as? WideLiteralInstruction)?.wideLiteral == accountSwitcherAccessibilityLabelId
+ } - 2
+
+ val setVisibilityConstRegister = (accountSwitcherAccessibilityLabelInstruction[setVisibilityConstIndex] as OneRegisterInstruction).registerA
+ val toggleRegister = (setVisibilityConstRegister - 3)
+
+ accountSwitcherAccessibilityLabelMethod.addInstructions(
+ setVisibilityConstIndex + 1, """
+ invoke-static {}, Lapp/revanced/integrations/patches/HideEmailAddressPatch;->hideEmailAddress()Z
+ move-result v$toggleRegister
+ if-eqz v$toggleRegister, :hide
+ const/16 v$setVisibilityConstRegister, 0x8
+ :hide
+ nop
+ """
+ )
+
+ return PatchResultSuccess()
+ }
+}
|
feat
|
`hide-email-address` patch (#578)
|
6b12bc8ae2d72cf94c7baab99633eefdc319d5e9
|
2024-09-23 19:40:49
|
semantic-release-bot
|
chore(release): 4.15.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e23f81ec36..24dc996700 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+# [4.15.0](https://github.com/ReVanced/revanced-patches/compare/v4.14.1...v4.15.0) (2024-09-23)
+
+
+### Bug Fixes
+
+* **TikTok - Playback speed:** Prevent crash by fixing invalid patch ([82d53cb](https://github.com/ReVanced/revanced-patches/commit/82d53cbc3bbfa585ba4337fdfaec9f0f19c802e6))
+* **TikTok - Settings:** Prevent crash by fixing invalid patch ([8074032](https://github.com/ReVanced/revanced-patches/commit/8074032fad3eff1c03296a882d2e2820da99b592))
+* **Twitter - Open links with app chooser:** Constrain patch to last working version `10.48.0-release` ([b9955d5](https://github.com/ReVanced/revanced-patches/commit/b9955d5ff6e456593b01f0f25d80ff660d02082a))
+* **YouTube - Spoof video streams:** Change default client type to Android VR ([74c8637](https://github.com/ReVanced/revanced-patches/commit/74c8637943347078955f51325bc6af92a35d4463))
+* **YouTube - Spoof video streams:** Change default client type to Android VR ([#3672](https://github.com/ReVanced/revanced-patches/issues/3672)) ([a3306f6](https://github.com/ReVanced/revanced-patches/commit/a3306f6717a09b734354f00363a96abad0ae14e7))
+
+
+### Features
+
+* **TikTok:** Bump patches to support the latest version 36.5.4 ([e5dcb72](https://github.com/ReVanced/revanced-patches/commit/e5dcb72597092fb32003f11fdf6f861ede4e7ff3))
+
# [4.15.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v4.14.2-dev.2...v4.15.0-dev.1) (2024-09-22)
diff --git a/gradle.properties b/gradle.properties
index e862af09fa..ec37ec90c9 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.15.0-dev.1
+version = 4.15.0
|
chore
|
4.15.0 [skip ci]
|
d9147cd60c0c25d0c5cc05409b8889dfacd89af9
|
2022-07-03 04:31:20
|
oSumAtrIX
|
feat: migrate to breaking changes of patcher
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralResourceAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralResourceAdsPatch.kt
index 0366ece89e..bee2ec9c0b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralResourceAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/resource/patch/GeneralResourceAdsPatch.kt
@@ -6,10 +6,10 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.impl.ResourceData
-import app.revanced.patcher.patch.annotations.Dependencies
-import app.revanced.patcher.patch.impl.ResourcePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.Dependencies
+import app.revanced.patcher.patch.impl.ResourcePatch
import app.revanced.patches.youtube.ad.general.annotation.GeneralAdsCompatibility
import app.revanced.patches.youtube.misc.manifest.patch.FixLocaleConfigErrorPatch
import org.w3c.dom.Element
@@ -43,7 +43,7 @@ class GeneralResourceAdsPatch : ResourcePatch() {
if (!it.name.startsWithAny(*resourceFileNames)) return@forEach
// for each file in the "layouts" directory replace all necessary attributes content
- data.getXmlEditor(it.absolutePath).use { editor ->
+ data.xmlEditor[it.absolutePath].use { editor ->
editor.file.doRecursively { node ->
replacements.forEach replacement@{ replacement ->
if (node !is Element) return@replacement
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/amoled/patch/AmoledPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/amoled/patch/AmoledPatch.kt
index eea0146bcf..5a0c140fc1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/amoled/patch/AmoledPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/amoled/patch/AmoledPatch.kt
@@ -4,11 +4,11 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.impl.ResourceData
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.Dependencies
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.impl.ResourcePatch
-import app.revanced.patcher.patch.PatchResult
-import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patches.youtube.layout.amoled.annotations.AmoledCompatibility
import app.revanced.patches.youtube.misc.manifest.patch.FixLocaleConfigErrorPatch
import org.w3c.dom.Element
@@ -26,7 +26,7 @@ import java.io.File
@Version("0.0.1")
class AmoledPatch : ResourcePatch() {
override fun execute(data: ResourceData): PatchResult {
- data.getXmlEditor("res${File.separator}values${File.separator}colors.xml").use { editor ->
+ data.xmlEditor["res${File.separator}values${File.separator}colors.xml"].use { editor ->
val resourcesNode = editor.file.getElementsByTagName("resources").item(0) as Element
for (i in 0 until resourcesNode.childNodes.length) {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/manifest/patch/FixLocaleConfigErrorPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/manifest/patch/FixLocaleConfigErrorPatch.kt
index 3f3e55d3cb..ad4abb9c80 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/manifest/patch/FixLocaleConfigErrorPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/manifest/patch/FixLocaleConfigErrorPatch.kt
@@ -4,9 +4,9 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.impl.ResourceData
-import app.revanced.patcher.patch.impl.ResourcePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.impl.ResourcePatch
import app.revanced.patches.youtube.misc.manifest.annotations.FixLocaleConfigErrorCompatibility
import org.w3c.dom.Element
@@ -17,7 +17,7 @@ import org.w3c.dom.Element
class FixLocaleConfigErrorPatch : ResourcePatch() {
override fun execute(data: ResourceData): PatchResult {
// create an xml editor instance
- data.getXmlEditor("AndroidManifest.xml").use {
+ data.xmlEditor["AndroidManifest.xml"].use {
// edit the application nodes attribute...
val applicationNode = it
.file
|
feat
|
migrate to breaking changes of patcher
|
38b8e44ec494e7dea24066dc2f5af578e01d58dc
|
2023-11-18 09:14:02
|
oSumAtrIX
|
feat(YouTube - Hide layout components): Hide description components
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
index 390e74509a..b3ca96a9f4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
@@ -11,10 +11,7 @@ import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
import app.revanced.patcher.util.smali.ExternalLabel
-import app.revanced.patches.shared.settings.preference.impl.InputType
-import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
-import app.revanced.patches.shared.settings.preference.impl.TextPreference
+import app.revanced.patches.shared.settings.preference.impl.*
import app.revanced.patches.youtube.layout.hide.general.fingerprints.ParseElementFromBufferFingerprint
import app.revanced.patches.youtube.layout.hide.general.fingerprints.PlayerOverlayFingerprint
import app.revanced.patches.youtube.layout.hide.general.fingerprints.ShowWatermarkFingerprint
@@ -49,8 +46,10 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
object HideLayoutComponentsPatch : BytecodePatch(
setOf(ParseElementFromBufferFingerprint, PlayerOverlayFingerprint)
) {
- private const val FILTER_CLASS_DESCRIPTOR =
+ private const val LAYOUT_COMPONENTS_FILTER_CLASS_DESCRIPTOR =
"Lapp/revanced/integrations/patches/components/LayoutComponentsFilter;"
+ private const val DESCRIPTION_COMPONENTS_FILTER_CLASS_NAME =
+ "Lapp/revanced/integrations/patches/components/DescriptionComponentsFilter;"
override fun execute(context: BytecodeContext) {
PreferenceScreen.LAYOUT.addPreferences(
@@ -288,7 +287,95 @@ object HideLayoutComponentsPatch : BytecodePatch(
StringResource("revanced_hide_chips_shelf_on", "Chips shelf is hidden"),
StringResource("revanced_hide_chips_shelf_off", "Chips shelf is shown")
),
- app.revanced.patches.shared.settings.preference.impl.PreferenceScreen(
+ PreferenceScreen(
+ "revanced_hide_description_components_preference_screen",
+ StringResource(
+ "revanced_hide_description_components_preference_screen_title",
+ "Hide components in the video description"
+ ),
+ listOf(
+ SwitchPreference(
+ "revanced_hide_info_cards_section",
+ StringResource(
+ "revanced_hide_info_cards_section_title",
+ "Hide info cards section"
+ ),
+ StringResource(
+ "revanced_hide_info_cards_section_summary_on",
+ "Info cards section is hidden"
+ ),
+ StringResource(
+ "revanced_hide_info_cards_section_summary_off",
+ "Info cards section is shown"
+ )
+ ),
+ SwitchPreference(
+ "revanced_hide_game_section",
+ StringResource(
+ "revanced_hide_game_section_title",
+ "Hide game section"
+ ),
+ StringResource(
+ "revanced_hide_game_section_summary_on",
+ "Game section is hidden"
+ ),
+ StringResource(
+ "revanced_hide_game_section_summary_off",
+ "Game section is shown"
+ )
+ ),
+ SwitchPreference(
+ "revanced_hide_music_section",
+ StringResource(
+ "revanced_hide_music_section_title",
+ "Hide music section"
+ ),
+ StringResource(
+ "revanced_hide_music_section_summary_on",
+ "Music section is hidden"
+ ),
+ StringResource(
+ "revanced_hide_music_section_summary_off",
+ "Music section is shown"
+ )
+ ),
+ SwitchPreference(
+ "revanced_hide_podcast_section",
+ StringResource(
+ "revanced_hide_podcast_section_title",
+ "Hide podcast section"
+ ),
+ StringResource(
+ "revanced_hide_podcast_section_summary_on",
+ "Podcast section is hidden"
+ ),
+ StringResource(
+ "revanced_hide_podcast_section_summary_off",
+ "Podcast section is shown"
+ )
+ ),
+ SwitchPreference(
+ "revanced_hide_transcript_section",
+ StringResource(
+ "revanced_hide_transcript_section_title",
+ "Hide transcript section"
+ ),
+ StringResource(
+ "revanced_hide_transcript_section_summary_on",
+ "Transcript section is hidden"
+ ),
+ StringResource(
+ "revanced_hide_transcript_section_summary_off",
+ "Transcript section is shown"
+ )
+ ),
+ ),
+ StringResource(
+ "revanced_hide_description_components_preference_screen_summary",
+ "Hide components under the video description"
+ )
+ ),
+ PreferenceScreen(
"revanced_custom_filter_preference_screen",
StringResource("revanced_custom_filter_preference_screen_title", "Custom filter"),
listOf(
@@ -321,7 +408,8 @@ object HideLayoutComponentsPatch : BytecodePatch(
)
)
- LithoFilterPatch.addFilter(FILTER_CLASS_DESCRIPTOR)
+ LithoFilterPatch.addFilter(LAYOUT_COMPONENTS_FILTER_CLASS_DESCRIPTOR)
+ LithoFilterPatch.addFilter(DESCRIPTION_COMPONENTS_FILTER_CLASS_NAME)
// region Mix playlists
@@ -339,7 +427,7 @@ object HideLayoutComponentsPatch : BytecodePatch(
addInstructionsWithLabels(
consumeByteBufferIndex,
"""
- invoke-static {v$conversionContextRegister, v$byteBufferRegister}, $FILTER_CLASS_DESCRIPTOR->filterMixPlaylists(Ljava/lang/Object;[B)Z
+ invoke-static {v$conversionContextRegister, v$byteBufferRegister}, $LAYOUT_COMPONENTS_FILTER_CLASS_DESCRIPTOR->filterMixPlaylists(Ljava/lang/Object;[B)Z
move-result v0 # Conveniently same register happens to be free.
if-nez v0, :return_empty_component
""",
@@ -362,7 +450,7 @@ object HideLayoutComponentsPatch : BytecodePatch(
addInstructions(
index,
"""
- invoke-static {}, $FILTER_CLASS_DESCRIPTOR->showWatermark()Z
+ invoke-static {}, $LAYOUT_COMPONENTS_FILTER_CLASS_DESCRIPTOR->showWatermark()Z
move-result p2
"""
)
|
feat
|
Hide description components
|
a623abcd8cd09425f562d059afd085d0d0cd4f78
|
2025-03-06 23:54:22
|
github-actions[bot]
|
chore: Sync translations (#4556)
| false
|
diff --git a/patches/src/main/resources/addresources/values-af-rZA/strings.xml b/patches/src/main/resources/addresources/values-af-rZA/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-af-rZA/strings.xml
+++ b/patches/src/main/resources/addresources/values-af-rZA/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-am-rET/strings.xml b/patches/src/main/resources/addresources/values-am-rET/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-am-rET/strings.xml
+++ b/patches/src/main/resources/addresources/values-am-rET/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
index e19115da39..88b09f75a9 100644
--- a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
+++ b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml
@@ -1246,8 +1246,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">تمكين شاشة التحميل المتدرجة</string>
<string name="revanced_gradient_loading_screen_summary_on">ستحتوي شاشة التحميل على خلفية متدرجة</string>
<string name="revanced_gradient_loading_screen_summary_off">ستحتوي شاشة التحميل على خلفية ثابتة</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">تمكين لون شريط تقدم الفيديو المخصص</string>
<string name="revanced_seekbar_custom_color_summary_on">يتم عرض لون شريط تقدم الفيديو المخصص</string>
<string name="revanced_seekbar_custom_color_summary_off">يتم عرض لون شريط تقدم الفيديو الاصلي</string>
@@ -1353,6 +1351,7 @@ Second \"item\" text"</string>
<string name="revanced_disable_zoom_haptics_summary_off">تم تمكين الاهتزاز</string>
</patch>
<patch id="video.audio.forceOriginalAudioPatch">
+ <string name="revanced_force_original_audio_title">فرض لغة الصوت الأصلية</string>
<string name="revanced_force_original_audio_summary_on">استخدام لغة الصوت الأصلية</string>
<string name="revanced_force_original_audio_summary_off">استخدام الصوت الافتراضي</string>
<!-- 'Spoof video streams' should be the same translation used for revanced_spoof_video_streams_screen_title -->
@@ -1360,7 +1359,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">جودة الفيديو</string>
<string name="revanced_video_quality_default_entry_1">تلقائي</string>
<string name="revanced_remember_video_quality_last_selected_title">تذكر تغييرات جودة الفيديو</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">تنطبق تغييرات الجودة على جميع الفيديوهات</string>
@@ -1368,8 +1366,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">جودة الفيديو الافتراضية على شبكة Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">جودة الفيديو الافتراضية على شبكة الجوَّال</string>
<string name="revanced_remember_shorts_quality_last_selected_title">تذكر تغييرات جودة Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">تطبق تغييرات الجودة على جميع فيديوهات Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">تطبق تغييرات الجودة على فيديو Shorts الحالي فقط</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">تنطبق تغييرات الجودة على جميع فيديوهات Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">تنطبق تغييرات الجودة فقط على فيديو Short الحالي</string>
<string name="revanced_shorts_quality_default_wifi_title">جودة Shorts الافتراضية على شبكة Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">جودة Shorts الافتراضية على شبكة الجوال</string>
<string name="revanced_remember_video_quality_mobile">الجوّال</string>
@@ -1406,10 +1404,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">تم تعطيل فيديو HDR</string>
<string name="revanced_disable_hdr_video_summary_off">تم تمكين فيديو HDR</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">استعادة قائمة جودة الفيديو القديمة</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">يتم عرض قائمة جودة الفيديو القديمة</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">لا يتم عرض قائمة جودة الفيديو القديمة</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">إظهار قائمة جودة الفيديو المتقدمة</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">يتم عرض قائمة جودة الفيديو المتقدمة</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">لا يتم عرض قائمة جودة الفيديو المتقدمة</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">تمكين التمرير للتقديم أو الترجيع</string>
diff --git a/patches/src/main/resources/addresources/values-as-rIN/strings.xml b/patches/src/main/resources/addresources/values-as-rIN/strings.xml
index 82e94d3c5a..d7ed7c43d5 100644
--- a/patches/src/main/resources/addresources/values-as-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-as-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -221,7 +219,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
index 1131053944..ddcc28f513 100644
--- a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml
@@ -1234,8 +1234,6 @@ Genişləndirmək və ya bağlamaq üçün sürüşdür"</string>
<string name="revanced_gradient_loading_screen_title">Dəyişkən yükləmə ekranını aktivləşdir</string>
<string name="revanced_gradient_loading_screen_summary_on">Yükləmə ekranı, dəyişkən arxa plana malik olacaq</string>
<string name="revanced_gradient_loading_screen_summary_off">Yükləmə ekranı, vahid arxa plana malik olacaq</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Fərdi irəliləmə cizgisi rəngini aktivləşdir</string>
<string name="revanced_seekbar_custom_color_summary_on">Fərdi irəliləmə cizgisi rəngi göstərilir</string>
<string name="revanced_seekbar_custom_color_summary_off">Orijinal irəliləmə cizgisi rəngi göstərilir</string>
@@ -1386,10 +1384,7 @@ Bunu aktivləşdirmə daha yüksək video keyfiyyətləri əngəlin silə bilər
<string name="revanced_disable_hdr_video_summary_on">HDR video qapalıdır</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video aktivdir</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Köhnə video keyfiyyət menusun qaytar</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Köhnə video keyfiyyət siyahısı göstərilir</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Köhnə video keyfiyyət siyahısı görünmür</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Axtarmaq üçün sürüşdürməni aktiv et</string>
diff --git a/patches/src/main/resources/addresources/values-be-rBY/strings.xml b/patches/src/main/resources/addresources/values-be-rBY/strings.xml
index 6668b62f43..28d655b36f 100644
--- a/patches/src/main/resources/addresources/values-be-rBY/strings.xml
+++ b/patches/src/main/resources/addresources/values-be-rBY/strings.xml
@@ -1247,8 +1247,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Уключыць градыентны экран загрузкі</string>
<string name="revanced_gradient_loading_screen_summary_on">Экран загрузкі будзе мець градыентны фон</string>
<string name="revanced_gradient_loading_screen_summary_off">Экран загрузкі будзе мець суцэльны фон</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Уключыць уласны колер панэлі пошуку</string>
<string name="revanced_seekbar_custom_color_summary_on">Паказваецца карыстальніцкі колер панэлі пошуку</string>
<string name="revanced_seekbar_custom_color_summary_off">Паказаны зыходны колер панэлі пошуку</string>
@@ -1362,7 +1360,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Якасць відэа</string>
<string name="revanced_video_quality_default_entry_1">Аўто</string>
<string name="revanced_remember_video_quality_last_selected_title">Запомніце змены якасці відэа</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Змены якасці распаўсюджваюцца на ўсе відэа</string>
@@ -1370,8 +1367,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Стандартная якасць відэа ў сетцы Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Стандартная якасць відэа ў мабільнай сетцы</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Запомніць змены якасці Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Змены якасці прымяняюцца да ўсіх відэа Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Змены якасці прымяняюцца толькі да бягучага відэа Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Змены якасці прымяняюцца да ўсіх Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Змены якасці прымяняюцца толькі да бягучага Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Якасць Shorts па змаўчанні ў сетцы Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Якасць Shorts па змаўчанні ў мабільнай сетцы</string>
<string name="revanced_remember_video_quality_mobile">мабільны</string>
@@ -1408,10 +1405,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">Відэа ў фармаце HDR адключана</string>
<string name="revanced_disable_hdr_video_summary_off">Відэа ў фармаце HDR уключана</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Аднавіць старое меню якасці відэа</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Паказана старое меню якасці відэа</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Старое меню якасці відэа не паказваецца</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Паказаць пашыранае меню якасці відэа</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Пашыранае меню якасці відэа паказана</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Пашыранае меню якасці відэа не паказана</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Уключыць слайд для пошуку</string>
diff --git a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
index 0d5871dfa9..b2d0eb8c17 100644
--- a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
+++ b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml
@@ -1246,8 +1246,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Фон на екрана при зареждане на видео</string>
<string name="revanced_gradient_loading_screen_summary_on">Екранът за зареждане ще има градиентен фон</string>
<string name="revanced_gradient_loading_screen_summary_off">Екранът за зареждане ще има плътен фон</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Промяна на цвета на индикатора за време</string>
<string name="revanced_seekbar_custom_color_summary_on">Показва се персонализиран цвят на лентата за напредък</string>
<string name="revanced_seekbar_custom_color_summary_off">Показва се оригиналния цвят на лентата за напредък</string>
@@ -1361,7 +1359,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Качество на видеоклипа</string>
<string name="revanced_video_quality_default_entry_1">Авто</string>
<string name="revanced_remember_video_quality_last_selected_title">Запомни промените в качеството на видеото</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Промените в качеството се отнасят за всички видеоклипове</string>
@@ -1369,8 +1366,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Предпочитано качество при Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Предпочитано качество при мобилни данни</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Запомняне на промените в качеството на Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Промените в качеството се прилагат към всички Shorts видеа</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Промените в качеството се прилагат само към текущото Shorts видео</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Промените в качеството се прилагат за всички Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Промените в качеството се прилагат само за текущия Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Качество по подразбиране на Shorts във Wi-Fi мрежа</string>
<string name="revanced_shorts_quality_default_mobile_title">Качество по подразбиране на Shorts в мобилна мрежа</string>
<string name="revanced_remember_video_quality_mobile">мобилни данни</string>
@@ -1407,10 +1404,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR видеото е деактивирано</string>
<string name="revanced_disable_hdr_video_summary_off">HDR видеото е активирано</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Възстановете старото меню за качество на видеото</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Показва се старото меню за видео качество</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Старото меню за видео качество е скрито</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Показване на менюто за разширено качество на видеото</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Показва се менюто за разширено качество на видеото</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Менюто за разширено качество на видеото не се показва</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Активиране на слайд за превъртане</string>
diff --git a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
index 96ea7fa74a..7150577668 100644
--- a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
+++ b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml
@@ -1242,8 +1242,6 @@ Miniplayer স্ক্রিন থেকে বামে বা ডানে
<string name="revanced_gradient_loading_screen_title">গ্রেডিয়েন্ট লোডিং স্ক্রিণ সক্রিয় করুন</string>
<string name="revanced_gradient_loading_screen_summary_on">লোডিং স্ক্রিণে একটি গ্রেডিয়েন্ড ব্যাকগ্রাউন্ড থাকবে</string>
<string name="revanced_gradient_loading_screen_summary_off">লোডিং স্ক্রিণে একটি সলিড ব্যাকগ্রাউন্ড থাকবে</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">সিকবারে নিজস্ব রং সক্রিয় করুন</string>
<string name="revanced_seekbar_custom_color_summary_on">সিকবারে নিজস্ব রং প্রদর্শিত হয়েছে</string>
<string name="revanced_seekbar_custom_color_summary_off">সিকবারে মূল রং প্রদর্শিত হয়েছে</string>
@@ -1357,7 +1355,6 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">ভিডিওর গুণমান</string>
<string name="revanced_video_quality_default_entry_1">স্বতস্ফূর্তভাবে</string>
<string name="revanced_remember_video_quality_last_selected_title">ভিডিও গুণমান পরিবর্তন মনে রাখুন</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">গুণমান পরিবর্তন সব ভিডিওতে প্রয়োগ করা হয়েছে</string>
@@ -1365,8 +1362,8 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
<string name="revanced_video_quality_default_wifi_title">ওয়াই-ফাই নেটওয়ার্কে ডিফল্ট ভিডিও গুণমান</string>
<string name="revanced_video_quality_default_mobile_title">মোবাইল নেটওয়ার্কে ডিফল্ট ভিডিও গুণমান</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Shorts গুণমান পরিবর্তনের কথা মনে রাখুন</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">গুণমানের পরিবর্তন সমস্ত Shorts ভিডিওগুলিতে প্রযোজ্য</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">গুণমানের পরিবর্তনগুলি কেবল বর্তমান Shorts ভিডিওটিতে প্রযোজ্য</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">গুণমানের পরিবর্তনগুলি সমস্ত Shorts-এর জন্য প্রযোজ্য</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">গুণমানের পরিবর্তনগুলি শুধুমাত্র বর্তমান Short-এর জন্য প্রযোজ্য</string>
<string name="revanced_shorts_quality_default_wifi_title">Wi-Fi নেটওয়ার্কে ডিফল্ট Shorts গুণমান</string>
<string name="revanced_shorts_quality_default_mobile_title">মোবাইল নেটওয়ার্কে ডিফল্ট Shorts গুণমান</string>
<string name="revanced_remember_video_quality_mobile">মোবাইল</string>
@@ -1403,10 +1400,10 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
<string name="revanced_disable_hdr_video_summary_on">HDR ভিডিও নিষ্ক্রিয় করা হয়েছে</string>
<string name="revanced_disable_hdr_video_summary_off">HDR ভিডিও সক্রিয় হয়েছে</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">পুরোনো ভিডিও গুণমান উদ্ধার করুন</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">পুরোনো ভিডিও গুণমান মেনু প্রদর্শিত হয়েছে</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">পুরোনো ভিডিও গুণমান মেনু প্রদর্শিত হয়নি</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">উন্নত ভিডিও গুণমান মেনু দেখান</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">উন্নত ভিডিও গুণমান মেনু দেখানো হয়েছে</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">উন্নত ভিডিও গুণমান মেনু দেখানো হয়নি</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">ভিডিওর নির্দিষ্ট অংশে যেতে টানুন সক্রিয় করুন</string>
diff --git a/patches/src/main/resources/addresources/values-bs-rBA/strings.xml b/patches/src/main/resources/addresources/values-bs-rBA/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-bs-rBA/strings.xml
+++ b/patches/src/main/resources/addresources/values-bs-rBA/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ca-rES/strings.xml b/patches/src/main/resources/addresources/values-ca-rES/strings.xml
index f8d10ae551..df4b65573f 100644
--- a/patches/src/main/resources/addresources/values-ca-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-ca-rES/strings.xml
@@ -1245,8 +1245,6 @@ Desliza para ampliar o cerrar"</string>
<string name="revanced_gradient_loading_screen_title">Habilita la pantalla de càrrega amb degradació</string>
<string name="revanced_gradient_loading_screen_summary_on">La pantalla de càrrega tindrà un fons de degradació</string>
<string name="revanced_gradient_loading_screen_summary_off">La pantalla de càrrega tindrà un fons sòlid</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Habilita el color personalitzat de la barra de cerca</string>
<string name="revanced_seekbar_custom_color_summary_on">El color personalitzat de la barra de cerca es mostra</string>
<string name="revanced_seekbar_custom_color_summary_off">El color original de la barra de cerca es mostra</string>
@@ -1360,7 +1358,6 @@ Si actives aquesta opció, es poden desbloquejar qualitats de vídeo més altes"
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Qualitat de vídeo</string>
<string name="revanced_video_quality_default_entry_1">Automàtic</string>
<string name="revanced_remember_video_quality_last_selected_title">Recorda els canvis de qualitat de vídeo</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Els canvis de qualitat s\'apliquen a tots els vídeos</string>
@@ -1368,8 +1365,8 @@ Si actives aquesta opció, es poden desbloquejar qualitats de vídeo més altes"
<string name="revanced_video_quality_default_wifi_title">Qualitat de vídeo predeterminada a la xarxa Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Qualitat de vídeo predeterminada a la xarxa mòbil</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Recorda els canvis de qualitat de Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Els canvis de qualitat s\'apliquen a tots els vídeos de Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Els canvis de qualitat només s\'apliquen al vídeo actual de Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Els canvis de qualitat s\'apliquen a tots els Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Els canvis de qualitat només s\'apliquen al Short actual</string>
<string name="revanced_shorts_quality_default_wifi_title">Qualitat predeterminada de Shorts a la xarxa Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Qualitat predeterminada de Shorts a la xarxa mòbil</string>
<string name="revanced_remember_video_quality_mobile">mòbil</string>
@@ -1406,10 +1403,10 @@ Si actives aquesta opció, es poden desbloquejar qualitats de vídeo més altes"
<string name="revanced_disable_hdr_video_summary_on">El vídeo HDR està desactivat</string>
<string name="revanced_disable_hdr_video_summary_off">El vídeo HDR està activat</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaura el menú de qualitat de vídeo antic</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">El menú de qualitat de vídeo antic es mostra</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">El menú de qualitat de vídeo antic no es mostra</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Mostra el menú avançat de qualitat de vídeo</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Es mostra el menú avançat de qualitat de vídeo</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">No es mostra el menú avançat de qualitat de vídeo</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Habilita lliscar per buscar</string>
diff --git a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
index 52f2b4a114..bb4defb307 100644
--- a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml
@@ -1245,8 +1245,6 @@ Přejeďte prstem pro rozbalení nebo zavření"</string>
<string name="revanced_gradient_loading_screen_title">Povolit přechodovou obrazovku načítání</string>
<string name="revanced_gradient_loading_screen_summary_on">Obrazovka načítání bude mít přechodové pozadí</string>
<string name="revanced_gradient_loading_screen_summary_off">Obrazovka načítání bude mít pevné pozadí</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Povolit vlastní barvu posuvníku</string>
<string name="revanced_seekbar_custom_color_summary_on">Vlasní barva posuvníku je zobrazena</string>
<string name="revanced_seekbar_custom_color_summary_off">Původní barva posuvníku je zobrazena</string>
@@ -1360,7 +1358,6 @@ Povolením této funkce lze odemknout vyšší kvality videa"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kvalita videa</string>
<string name="revanced_video_quality_default_entry_1">Automaticky</string>
<string name="revanced_remember_video_quality_last_selected_title">Pamatovat si změny kvality videa</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Změny kvality se vztahují na všechna videa</string>
@@ -1368,8 +1365,8 @@ Povolením této funkce lze odemknout vyšší kvality videa"</string>
<string name="revanced_video_quality_default_wifi_title">Výchozí kvalita videa v síti Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Výchozí kvalita videa v mobilní síti</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapamatovat si změny kvality u položky Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Změny kvality se použijí u všech videí Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Změny kvality se vztahují pouze na aktuální video Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Změny kvality se vztahují na všechny {Shorts}</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Změny kvality se vztahují pouze na aktuální {Shorts}</string>
<string name="revanced_shorts_quality_default_wifi_title">Výchozí kvalita Shorts v síti Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Výchozí kvalita Shorts v mobilní síti</string>
<string name="revanced_remember_video_quality_mobile">mobilní</string>
@@ -1406,10 +1403,10 @@ Povolením této funkce lze odemknout vyšší kvality videa"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video je vypnuté.</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video je zapnuté.</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Obnovit staré menu kvality videa</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Staré menu kvality videa se zobrazuje</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Staré menu kvality videa se nezobrazuje</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Zobrazit rozšířené menu kvality videa</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Zobrazuje se rozšířené menu kvality videa</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Nezobrazuje se rozšířené menu kvality videa</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Povolit posun pro hledání</string>
diff --git a/patches/src/main/resources/addresources/values-da-rDK/strings.xml b/patches/src/main/resources/addresources/values-da-rDK/strings.xml
index fe0c764666..2777636610 100644
--- a/patches/src/main/resources/addresources/values-da-rDK/strings.xml
+++ b/patches/src/main/resources/addresources/values-da-rDK/strings.xml
@@ -1189,8 +1189,6 @@ Stryg for at udvide eller lukke"</string>
<string name="revanced_gradient_loading_screen_title">Aktiver gradient indlæsning af skærmen</string>
<string name="revanced_gradient_loading_screen_summary_on">Indlæser skærmen vil have en gradient baggrund</string>
<string name="revanced_gradient_loading_screen_summary_off">Indlæser skærmen vil have en solid baggrund</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Aktivér brugerdefineret søgelinjefarve</string>
<string name="revanced_seekbar_custom_color_summary_on">Brugerdefineret søgelinje farve vises</string>
<string name="revanced_seekbar_custom_color_summary_off">Original søgelinje farve vises</string>
@@ -1300,7 +1298,6 @@ Aktivering af dette kan låse op for højere videokvalitet"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Videokvalitet</string>
<string name="revanced_video_quality_default_entry_1">Automatisk</string>
<string name="revanced_remember_video_quality_last_selected_title">Husk ændringer i videokvalitet</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitetsændringer gælder for alle videoer</string>
@@ -1308,8 +1305,8 @@ Aktivering af dette kan låse op for højere videokvalitet"</string>
<string name="revanced_video_quality_default_wifi_title">Standard videokvalitet på Wi-Fi-netværk</string>
<string name="revanced_video_quality_default_mobile_title">Standard videokvalitet på mobilnetværk</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Husk kvalitetsændringer for Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitetsændringer gælder for alle Shorts-videoer</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitetsændringer gælder kun for den aktuelle Shorts-video</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitetsændringer gælder for alle Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitetsændringer gælder kun for den aktuelle Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Standard Shorts-kvalitet på Wi-Fi-netværk</string>
<string name="revanced_shorts_quality_default_mobile_title">Standard Shorts-kvalitet på mobilnetværk</string>
<string name="revanced_remember_video_quality_mobile">mobil</string>
@@ -1346,10 +1343,10 @@ Aktivering af dette kan låse op for højere videokvalitet"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR-video er deaktiveret</string>
<string name="revanced_disable_hdr_video_summary_off">HDR-video er aktiveret</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Gendan gamle video kvalitet menu</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Gammel videokvalitetsmenu vises</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Gammel videokvalitetsmenu vises ikke</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Vis avanceret menu for videokvalitet</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Avanceret menu for videokvalitet vises</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Avanceret menu for videokvalitet vises ikke</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Aktivér dias for at søge</string>
diff --git a/patches/src/main/resources/addresources/values-de-rDE/strings.xml b/patches/src/main/resources/addresources/values-de-rDE/strings.xml
index 0d42f91676..936ab65c9d 100644
--- a/patches/src/main/resources/addresources/values-de-rDE/strings.xml
+++ b/patches/src/main/resources/addresources/values-de-rDE/strings.xml
@@ -1239,8 +1239,6 @@ Wischen Sie, um zu erweitern oder zu schließen"</string>
<string name="revanced_gradient_loading_screen_title">Gradientenladebildschirm aktivieren</string>
<string name="revanced_gradient_loading_screen_summary_on">Lade Bildschirm hat einen Farbverlauf Hintergrund</string>
<string name="revanced_gradient_loading_screen_summary_off">Das Laden des Bildschirms wird einen soliden Hintergrund haben</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Eigene Suchleistenfarbe aktivieren</string>
<string name="revanced_seekbar_custom_color_summary_on">Angepasste Suchleistenfarbe wird angezeigt</string>
<string name="revanced_seekbar_custom_color_summary_off">Originalfarbe der Suchleiste wird angezeigt</string>
@@ -1354,7 +1352,6 @@ Durch Aktivieren dieser Option können höhere Videoqualitäten freigeschaltet w
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Videoqualität</string>
<string name="revanced_video_quality_default_entry_1">Autom</string>
<string name="revanced_remember_video_quality_last_selected_title">Änderungen der Videoqualität merken</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Qualitätsänderungen gelten für alle Videos</string>
@@ -1362,8 +1359,8 @@ Durch Aktivieren dieser Option können höhere Videoqualitäten freigeschaltet w
<string name="revanced_video_quality_default_wifi_title">Standard-Videoqualität im Wi-Fi-Netzwerk</string>
<string name="revanced_video_quality_default_mobile_title">Standard-Videoqualität im Mobilfunknetz</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Änderungen der Shorts-Qualität speichern</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Qualitätsänderungen gelten für alle Shorts-Videos</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Qualitätsänderungen gelten nur für das aktuelle Shorts-Video</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Qualitätsänderungen gelten für alle Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Qualitätsänderungen gelten nur für den aktuellen Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Standardmäßige Shorts-Qualität im WLAN</string>
<string name="revanced_shorts_quality_default_mobile_title">Standard-Shorts-Qualität im Mobilfunknetz</string>
<string name="revanced_remember_video_quality_mobile">Mobile</string>
@@ -1400,10 +1397,10 @@ Durch Aktivieren dieser Option können höhere Videoqualitäten freigeschaltet w
<string name="revanced_disable_hdr_video_summary_on">HDR-Video ist deaktiviert</string>
<string name="revanced_disable_hdr_video_summary_off">HDR-Video ist aktiviert</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Altes Videoqualitätsmenü wiederherstellen</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Altes Video-Qualitätsmenü wird angezeigt</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Altes Video-Qualitätsmenü wird nicht angezeigt</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Erweitertes Videoqualitätsmenü anzeigen</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Erweitertes Videoqualitätsmenü wird angezeigt</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Erweitertes Videoqualitätsmenü wird nicht angezeigt</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Folie zum Suchen aktivieren</string>
diff --git a/patches/src/main/resources/addresources/values-el-rGR/strings.xml b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
index 84702d3496..ddc39b103a 100644
--- a/patches/src/main/resources/addresources/values-el-rGR/strings.xml
+++ b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
@@ -1120,10 +1120,10 @@ Second \"item\" text"</string>
<string name="revanced_change_form_factor_user_dialog_message">"Οι αλλαγές περιλαμβάνουν:
Διάταξη tablet
-• Οι αναρτήσεις κοινότητας είναι κρυφές
+• Οι δημοσιεύσεις κοινότητας δεν εμφανίζονται
Διάταξη αυτοκινήτου
-• Τα Shorts ανοίγουν στην κανονική συσκευή αναπαραγωγής
+• Τα Shorts ανοίγουν στην κανονική οθόνη αναπαραγωγής
• Η ροή οργανώνεται ανά θέματα και κανάλια"</string>
</patch>
<patch id="layout.spoofappversion.spoofAppVersionPatch">
@@ -1247,8 +1247,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Διαβάθμιση οθόνης φόρτωσης</string>
<string name="revanced_gradient_loading_screen_summary_on">Η οθόνη φόρτωσης θα έχει σταδιακές αποχρώσεις φόντο</string>
<string name="revanced_gradient_loading_screen_summary_off">Η οθόνη φόρτωσης θα έχει στατική απόχρωση φόντο</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Προσαρμοσμένο χρώμα γραμμής προόδου</string>
<string name="revanced_seekbar_custom_color_summary_on">Η γραμμή προόδου εμφανίζεται με προσαρμοσμένο χρώμα</string>
<string name="revanced_seekbar_custom_color_summary_off">Η γραμμή προόδου εμφανίζεται με το αρχικό χρώμα</string>
@@ -1360,22 +1358,21 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Ποιότητα βίντεο</string>
<string name="revanced_video_quality_default_entry_1">Αυτόματη</string>
<string name="revanced_remember_video_quality_last_selected_title">Απομνημόνευση αλλαγών ποιότητας βίντεο</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Οι αλλαγές ποιότητας ισχύουν για όλα τα βίντεο</string>
<string name="revanced_remember_video_quality_last_selected_summary_off">Οι αλλαγές ποιότητας ισχύουν μόνο για το τρέχον βίντεο</string>
- <string name="revanced_video_quality_default_wifi_title">Προεπιλεγμένη ποιότητα βίντεο με Wi-Fi</string>
+ <string name="revanced_video_quality_default_wifi_title">Προεπιλεγμένη ποιότητα βίντεο σε δίκτυο Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Προεπιλεγμένη ποιότητα βίντεο με δεδομένα κινητής τηλεφωνίας</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Απομνημόνευση αλλαγών ποιότητας στα Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Οι αλλαγές ποιότητας ισχύουν για όλα τα βίντεο Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Οι αλλαγές ποιότητας ισχύουν μόνο για το τρέχον βίντεο Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Οι αλλαγές ποιότητας ισχύουν για όλα τα Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Οι αλλαγές ποιότητας ισχύουν μόνο για το τρέχον Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Προεπιλεγμένη ποιότητα Shorts σε δίκτυο Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Προεπιλεγμένη ποιότητα Shorts σε δίκτυο κινητής τηλεφωνίας</string>
<string name="revanced_remember_video_quality_mobile">δεδομένων</string>
<string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
<string name="revanced_remember_video_quality_toast">Η προεπιλεγμένη ποιότητα %1$s άλλαξε σε: %2$s</string>
- <string name="revanced_remember_video_quality_toast_shorts">Άλλαξε η ποιότητα των Shorts %1$s σε: %2$s</string>
+ <string name="revanced_remember_video_quality_toast_shorts">Η ποιότητα Shorts με %1$s άλλαξε σε: %2$s</string>
</patch>
<patch id="video.speed.button.playbackSpeedButtonPatch">
<string name="revanced_playback_speed_dialog_button_title">Εμφάνιση κουμπιού αλλαγής ταχύτητας</string>
@@ -1406,10 +1403,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">Τα βίντεο HDR είναι απενεργοποιημένα</string>
<string name="revanced_disable_hdr_video_summary_off">Τα βίντεο HDR είναι ενεργοποιημένα</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Επαναφορά παλιού μενού ποιότητας βίντεο</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Το μενού ποιότητας βίντεο εμφανίζεται με το παλιό στυλ</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Το μενού ποιότητας βίντεο εμφανίζεται με το νέο στυλ</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Εμφάνιση προχωρημένου μενού ποιότητας βίντεο</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Εμφανίζεται το προχωρημένο μενού ποιότητας βίντεο</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Δεν εμφανίζεται το προχωρημένο μενού ποιότητας βίντεο</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Χειρονομία συρσίματος για αναζήτηση</string>
diff --git a/patches/src/main/resources/addresources/values-es-rES/strings.xml b/patches/src/main/resources/addresources/values-es-rES/strings.xml
index 957fb0df2f..41ac0faaf0 100644
--- a/patches/src/main/resources/addresources/values-es-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-es-rES/strings.xml
@@ -1227,8 +1227,6 @@ Desliza para expandir o cerrar"</string>
<string name="revanced_gradient_loading_screen_title">Activar la pantalla de carga del degradado</string>
<string name="revanced_gradient_loading_screen_summary_on">La pantalla de carga tendrá un fondo de degradado</string>
<string name="revanced_gradient_loading_screen_summary_off">La pantalla de carga tendrá un fondo sólido</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Activar el color personalizado de la barra de búsqueda</string>
<string name="revanced_seekbar_custom_color_summary_on">Se muestra el color personalizado de la barra de búsqueda</string>
<string name="revanced_seekbar_custom_color_summary_off">Se muestra el color original de la barra de búsqueda</string>
@@ -1342,7 +1340,6 @@ Habilitar esto puede desbloquear calidades de vídeo más altas"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Calidad de video</string>
<string name="revanced_video_quality_default_entry_1">Automático</string>
<string name="revanced_remember_video_quality_last_selected_title">Recordar cambios de calidad de vídeo</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los vídeos</string>
@@ -1350,8 +1347,8 @@ Habilitar esto puede desbloquear calidades de vídeo más altas"</string>
<string name="revanced_video_quality_default_wifi_title">Calidad de vídeo predeterminada en la red Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Calidad de vídeo predeterminada en la red móvil</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Recordar cambios en la calidad de Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los videos de Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Los cambios de calidad solo se aplican al video de Shorts actual</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Los cambios de calidad solo se aplican al Short actual</string>
<string name="revanced_shorts_quality_default_wifi_title">Calidad predeterminada de Shorts en la red Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Calidad predeterminada de Shorts en la red móvil</string>
<string name="revanced_remember_video_quality_mobile">móvil</string>
@@ -1388,10 +1385,10 @@ Habilitar esto puede desbloquear calidades de vídeo más altas"</string>
<string name="revanced_disable_hdr_video_summary_on">El vídeo HDR está desactivado</string>
<string name="revanced_disable_hdr_video_summary_off">El vídeo HDR está activado</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaurar menú de calidad de vídeo antiguo</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Se muestra el antiguo menú de calidad de vídeo</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">El antiguo menú de calidad de vídeo no se muestra</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Mostrar menú de calidad de vídeo avanzado</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Se muestra el menú de calidad de vídeo avanzado</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">No se muestra el menú de calidad de vídeo avanzado</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Habilitar diapositiva para buscar</string>
diff --git a/patches/src/main/resources/addresources/values-et-rEE/strings.xml b/patches/src/main/resources/addresources/values-et-rEE/strings.xml
index aaaee51eec..413a82be40 100644
--- a/patches/src/main/resources/addresources/values-et-rEE/strings.xml
+++ b/patches/src/main/resources/addresources/values-et-rEE/strings.xml
@@ -1246,8 +1246,6 @@ Pühkige laiendamiseks või sulgemiseks"</string>
<string name="revanced_gradient_loading_screen_title">Lülita gradientega laadimiskuva sisse</string>
<string name="revanced_gradient_loading_screen_summary_on">Laadimiskuval on gradientega taust</string>
<string name="revanced_gradient_loading_screen_summary_off">Laadimiskuval on tahke taust</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Lülita kohandatud edastusriba värv sisse</string>
<string name="revanced_seekbar_custom_color_summary_on">Kohandatud edastusriba värv on nähtav</string>
<string name="revanced_seekbar_custom_color_summary_off">Originaal edastusriba värv on nähtav</string>
@@ -1361,7 +1359,6 @@ Selle lubamine võib avada kõrgema video kvaliteedi"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Video kvaliteet</string>
<string name="revanced_video_quality_default_entry_1">Automaatne</string>
<string name="revanced_remember_video_quality_last_selected_title">Määle video kvaliteedi muudatused meelde</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kvaliteedi muudatused kehtivad kõigile videotele</string>
@@ -1369,8 +1366,8 @@ Selle lubamine võib avada kõrgema video kvaliteedi"</string>
<string name="revanced_video_quality_default_wifi_title">Vaikimisi video kvaliteet Wi-Fi võrgus</string>
<string name="revanced_video_quality_default_mobile_title">Vaikimisi video kvaliteet mobiilsidevõrgus</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Jäta meelde Shorts\'i kvaliteedimuudatused</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvaliteedi muudatused kehtivad kõikidele [Shorts] videotele</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvaliteedi muudatused kehtivad ainult praegusele [Shorts] videole</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvaliteedimuudatused kehtivad kõigile videotele Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvaliteedimuudatused kehtivad ainult praegusele videole Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Vaikimisi [Shorts] kvaliteet WiFi võrgus</string>
<string name="revanced_shorts_quality_default_mobile_title">Vaikimisi [Shorts] kvaliteet mobiilivõrgus</string>
<string name="revanced_remember_video_quality_mobile">mobiil</string>
@@ -1407,10 +1404,10 @@ Selle lubamine võib avada kõrgema video kvaliteedi"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video on keelatud</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video on lubatud</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Taasta vana video kvaliteedi menüü</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Vana video kvaliteedi menüü kuvatakse</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Vana video kvaliteedi menüüd ei kuvata</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Kuva täiustatud video kvaliteedi menüü</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Täiustatud video kvaliteedi menüü on kuvatud</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Täiustatud video kvaliteedi menüü ei ole kuvatud</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Luba libistamine otsimiseks</string>
diff --git a/patches/src/main/resources/addresources/values-eu-rES/strings.xml b/patches/src/main/resources/addresources/values-eu-rES/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-eu-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-eu-rES/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-fa-rIR/strings.xml b/patches/src/main/resources/addresources/values-fa-rIR/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-fa-rIR/strings.xml
+++ b/patches/src/main/resources/addresources/values-fa-rIR/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
index d5866fb40b..a9dc971b4f 100644
--- a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
+++ b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml
@@ -1233,8 +1233,6 @@ Pyyhkäise laajentaaksesi tai sulkeaksesi"</string>
<string name="revanced_gradient_loading_screen_title">Ota liukuvärillinen latausruutu käyttöön</string>
<string name="revanced_gradient_loading_screen_summary_on">Latausruudulla on liukuvärillinen tausta</string>
<string name="revanced_gradient_loading_screen_summary_off">Latausruudulla on yksivärinen tausta</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Ota oma liukusäätimen väri käyttöön</string>
<string name="revanced_seekbar_custom_color_summary_on">Oma liukusäätimen väri näytetään</string>
<string name="revanced_seekbar_custom_color_summary_off">Alkuperäinen liukusäätimen väri näytetään</string>
@@ -1385,10 +1383,7 @@ Tämä voi avata korkealaatuisemmat videot"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR-video ei ole käytössä</string>
<string name="revanced_disable_hdr_video_summary_off">HDR-video on käytössä</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Palauta vanha videolaatuvalikko</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Vanha videolaatuvalikko näytetään</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Vanhaa videolaatuvalikkoa ei näytetä</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Ota kelaus liu\'uttamalla käyttöön</string>
diff --git a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
index 0008a5900c..376e7f4c40 100644
--- a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
+++ b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml
@@ -1243,8 +1243,6 @@ Mag-swipe upang palawakin o isara"</string>
<string name="revanced_gradient_loading_screen_title">Paganahin ang gradient loading screen</string>
<string name="revanced_gradient_loading_screen_summary_on">Ang paglo-load ng screen ay magkakaroon ng gradient na background</string>
<string name="revanced_gradient_loading_screen_summary_off">Ang paglo-load ng screen ay magkakaroon ng solidong background</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Paganahin ang custom na kulay ng seekbar</string>
<string name="revanced_seekbar_custom_color_summary_on">Ipinapakita ang kulay ng custom na seekbar</string>
<string name="revanced_seekbar_custom_color_summary_off">Ipinapakita ang orihinal na kulay ng seekbar</string>
@@ -1358,7 +1356,6 @@ Ang pagpapagana nito ay maaaring magbukas ng mas mataas na kalidad ng video"</st
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kalidad ng Video</string>
<string name="revanced_video_quality_default_entry_1">Awtomatik</string>
<string name="revanced_remember_video_quality_last_selected_title">Tandaan ang mga pagbabago sa kalidad ng video</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Nalalapat ang mga pagbabago sa kalidad sa lahat ng video</string>
@@ -1366,8 +1363,8 @@ Ang pagpapagana nito ay maaaring magbukas ng mas mataas na kalidad ng video"</st
<string name="revanced_video_quality_default_wifi_title">Default na kalidad ng video sa Wi-Fi network</string>
<string name="revanced_video_quality_default_mobile_title">Default na kalidad ng video sa mobile network</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Tandaan ang mga pagbabago sa kalidad ng Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Nalalapat ang mga pagbabago sa kalidad sa lahat ng mga video ng Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Nalalapat lang ang mga pagbabago sa kalidad sa kasalukuyang video ng Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Nalalapat ang mga pagbabago sa kalidad sa lahat ng Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Nalalapat lamang ang mga pagbabago sa kalidad sa kasalukuyang Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Default na kalidad ng Shorts sa Wi-Fi network</string>
<string name="revanced_shorts_quality_default_mobile_title">Default na kalidad ng Shorts sa mobile network</string>
<string name="revanced_remember_video_quality_mobile">Mobile</string>
@@ -1404,10 +1401,10 @@ Ang pagpapagana nito ay maaaring magbukas ng mas mataas na kalidad ng video"</st
<string name="revanced_disable_hdr_video_summary_on">Hindi pinagana ang HDR video</string>
<string name="revanced_disable_hdr_video_summary_off">Pinagana ang HDR video</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Ibalik ang lumang menu ng kalidad ng video</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Ipinapakita ang lumang menu ng kalidad ng video</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Hindi ipinapakita ang lumang menu ng kalidad ng video</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Ipakita ang advanced na menu ng kalidad ng video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Ipinapakita ang advanced na menu ng kalidad ng video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Hindi ipinapakita ang advanced na menu ng kalidad ng video</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Paganahin ang slide para maghanap</string>
diff --git a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
index 8d0272c692..7dfdd0c62b 100644
--- a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
+++ b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml
@@ -1115,13 +1115,13 @@ Prêt à soumettre ?"</string>
<string name="revanced_change_form_factor_entry_2">Téléphone</string>
<string name="revanced_change_form_factor_entry_3">Tablette</string>
<string name="revanced_change_form_factor_entry_4">Automotive</string>
- <string name="revanced_change_form_factor_user_dialog_message">"Les modifications incluent :
+ <string name="revanced_change_form_factor_user_dialog_message">"Les modifications comprennent :
-Disposition pour tablette
-• Les publications de la communauté sont masquées
+Format Tablette
+• Les posts destinés à la communauté sont masqués
-Disposition Automotive
-• Les Shorts s'ouvrent dans le lecteur classique
+Format Automotive
+• Les Shorts s'ouvrent dans le lecteur standard
• Le flux est organisé par sujets et par chaînes"</string>
</patch>
<patch id="layout.spoofappversion.spoofAppVersionPatch">
@@ -1179,8 +1179,8 @@ Si désactivé ultérieurement, il est recommandé d'effacer les données de l'a
<patch id="layout.shortsplayer.shortsPlayerTypePatch">
<string name="revanced_shorts_player_type_title">Ouvrir les Shorts avec</string>
<string name="revanced_shorts_player_type_shorts">Lecteur Shorts</string>
- <string name="revanced_shorts_player_type_regular_player">Lecteur classique</string>
- <string name="revanced_shorts_player_type_regular_player_fullscreen">Lecteur classique en plein écran</string>
+ <string name="revanced_shorts_player_type_regular_player">Lecteur standard</string>
+ <string name="revanced_shorts_player_type_regular_player_fullscreen">Lecteur standard en plein écran</string>
</patch>
<patch id="layout.shortsautoplay.shortsAutoplayPatch">
<string name="revanced_shorts_autoplay_title">Lire automatiquement les Shorts</string>
@@ -1245,8 +1245,6 @@ Balayez pour développer ou fermer"</string>
<string name="revanced_gradient_loading_screen_title">Activer le dégradé sur l\'écran de chargement</string>
<string name="revanced_gradient_loading_screen_summary_on">Le fond de l\'écran de chargement sera un dégradé de couleurs</string>
<string name="revanced_gradient_loading_screen_summary_off">Le fond de l\'écran de chargement sera une couleur unie</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Personnaliser la couleur de la barre de progression</string>
<string name="revanced_seekbar_custom_color_summary_on">La couleur de la barre de progression est personnalisée</string>
<string name="revanced_seekbar_custom_color_summary_off">La couleur originale de la barre de progression est affichée</string>
@@ -1360,22 +1358,21 @@ Activer cette option peut déverrouiller des qualités vidéo supérieures"</str
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Qualité vidéo</string>
<string name="revanced_video_quality_default_entry_1">Automatique</string>
- <string name="revanced_remember_video_quality_last_selected_title">Se souvenir des modifications de la qualité vidéo</string>
- <string name="revanced_remember_video_quality_last_selected_summary_on">Les modifications de qualité s\'appliquent à toutes les vidéos</string>
- <string name="revanced_remember_video_quality_last_selected_summary_off">Les modifications de qualité s\'appliquent uniquement à la vidéo en cours</string>
- <string name="revanced_video_quality_default_wifi_title">Qualité vidéo par défaut sur un réseau Wi-Fi</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Mémoriser les changements de qualité vidéo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Les changements de qualité s\'appliquent à toutes les vidéos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Les changements de qualité s\'appliquent uniquement à la vidéo actuelle</string>
+ <string name="revanced_video_quality_default_wifi_title">Qualité vidéo par défaut sur les réseaux Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Qualité vidéo par défaut sur le réseau mobile</string>
- <string name="revanced_remember_shorts_quality_last_selected_title">Se souvenir des modifications de la qualité des Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Les modifications de qualité s\'appliquent à toutes les vidéos Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Les modifications de qualité s\'appliquent uniquement à la vidéo Shorts en cours</string>
- <string name="revanced_shorts_quality_default_wifi_title">Qualité Shorts par défaut sur un réseau Wi-Fi</string>
- <string name="revanced_shorts_quality_default_mobile_title">Qualité Shorts par défaut sur le réseau mobile</string>
+ <string name="revanced_remember_shorts_quality_last_selected_title">Mémoriser les changements de qualité des Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Les changements de qualité s\'appliquent à tous les Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Les changements de qualité s\'appliquent uniquement au Short actuel</string>
+ <string name="revanced_shorts_quality_default_wifi_title">Qualité par défaut des Shorts sur les réseaux Wi-Fi</string>
+ <string name="revanced_shorts_quality_default_mobile_title">Qualité par défaut des Shorts sur le réseau mobile</string>
<string name="revanced_remember_video_quality_mobile">mobile</string>
<string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
<string name="revanced_remember_video_quality_toast">Nouvelle qualité %1$s par défaut : %2$s</string>
- <string name="revanced_remember_video_quality_toast_shorts">Nouvelle qualité Shorts %1$s par défaut : %2$s</string>
+ <string name="revanced_remember_video_quality_toast_shorts">Nouvelle qualité %1$s des Shorts par défaut : %2$s</string>
</patch>
<patch id="video.speed.button.playbackSpeedButtonPatch">
<string name="revanced_playback_speed_dialog_button_title">Afficher un bouton Vitesse</string>
@@ -1395,9 +1392,9 @@ Activer cette option peut déverrouiller des qualités vidéo supérieures"</str
<string name="revanced_speed_tap_and_hold_summary">Vitesse de lecture comprise entre 0 et 8</string>
</patch>
<patch id="video.speed.remember.rememberPlaybackSpeedPatch">
- <string name="revanced_remember_playback_speed_last_selected_title">Se souvenir des modifications de la vitesse de lecture</string>
- <string name="revanced_remember_playback_speed_last_selected_summary_on">Les modifications de vitesse de lecture s\'appliquent à toutes les vidéos</string>
- <string name="revanced_remember_playback_speed_last_selected_summary_off">Les modifications de vitesse de lecture ne s\'appliquent qu\'à la vidéo actuelle</string>
+ <string name="revanced_remember_playback_speed_last_selected_title">Mémoriser les changements de vitesse de lecture</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Les changements de vitesse de lecture s\'appliquent à toutes les vidéos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Les changements de vitesse de lecture ne s\'appliquent qu\'à la vidéo actuelle</string>
<string name="revanced_playback_speed_default_title">Vitesse de lecture par défaut</string>
<string name="revanced_remember_playback_speed_toast">Nouvelle vitesse par défaut : %s</string>
</patch>
@@ -1406,10 +1403,10 @@ Activer cette option peut déverrouiller des qualités vidéo supérieures"</str
<string name="revanced_disable_hdr_video_summary_on">Le HDR est désactivé dans les vidéos</string>
<string name="revanced_disable_hdr_video_summary_off">Le HDR est activé dans les vidéos</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaurer l\'ancien menu de qualité vidéo</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">L\'ancien menu de qualité vidéo est affiché</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">L\'ancien menu de qualité vidéo n\'est pas affiché</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Afficher le menu de qualité vidéo avancé</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Le menu de qualité vidéo avancé est affiché</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Le menu de qualité vidéo avancé n\'est pas affiché</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Activer Glisser pour rechercher</string>
diff --git a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
index 547ad8203d..ff3718c9ca 100644
--- a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
+++ b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml
@@ -1229,8 +1229,6 @@ Swipe chun leathnú nó dúnadh"</string>
<string name="revanced_gradient_loading_screen_title">Cumasaigh scáileán luchtaithe</string>
<string name="revanced_gradient_loading_screen_summary_on">Beidh cúlra grádáin ag an scáileán lódála</string>
<string name="revanced_gradient_loading_screen_summary_off">Beidh cúlra láidir ag scáileán luchtaithe</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Cumasaigh dath barra cuardaigh saincheaptha</string>
<string name="revanced_seekbar_custom_color_summary_on">Taispeántar dath barra cuardaigh saincheaptha</string>
<string name="revanced_seekbar_custom_color_summary_off">Taispeántar dath barr cuardaigh bunaidh</string>
@@ -1344,7 +1342,6 @@ Is féidir le seo caighdeáin físeáin níos airde a dhíghlasáil"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Cáilíocht físe</string>
<string name="revanced_video_quality_default_entry_1">Uathoibríoch</string>
<string name="revanced_remember_video_quality_last_selected_title">Cuimhnigh athruithe ar cháilíocht</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Baineann athruithe cáilíochta le gach físeán</string>
@@ -1352,8 +1349,8 @@ Is féidir le seo caighdeáin físeáin níos airde a dhíghlasáil"</string>
<string name="revanced_video_quality_default_wifi_title">Cáilíocht físe réamhshocraithe ar líonra</string>
<string name="revanced_video_quality_default_mobile_title">Cáilíocht físe réamhshocraithe ar líonra</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Cuimhnigh ar athruithe cáilíochta Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Baineann athruithe cáilíochta le gach físeán Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Ní bhaineann athruithe cáilíochta ach leis an bhfíseán reatha Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Baineann athruithe ar an gcáilíocht le gach Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Ní bhaineann athruithe ar an gcáilíocht ach leis an Short reatha</string>
<string name="revanced_shorts_quality_default_wifi_title">Cáilíocht réamhshocraithe Shorts ar líonra Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Cáilíocht réamhshocraithe Shorts ar líonra soghluaiste</string>
<string name="revanced_remember_video_quality_mobile">soghluaiste</string>
@@ -1390,10 +1387,10 @@ Is féidir le seo caighdeáin físeáin níos airde a dhíghlasáil"</string>
<string name="revanced_disable_hdr_video_summary_on"><p style="margin-left: 60px;">Tá físeán HDR díchumasaithe</p></string>
<string name="revanced_disable_hdr_video_summary_off"><p style="margin-left: 60px;">Tá físeán HDR arna chumhachtú</p></string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Athchóirigh sean-roghchlár cáilíochta físeáin</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Taispeántar sean-roghchlár cáilíochta físeáin</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Ní thaispeántar sean-roghchlár cáilíochta físeáin</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Taispeáin roghchlár ardcháilíochta físeáin</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Taispeántar roghchlár ardcháilíochta físeáin</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Ní thaispeántar roghchlár ardcháilíochta físeáin</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Cumasaigh sleamhnán a lorg</string>
diff --git a/patches/src/main/resources/addresources/values-gl-rES/strings.xml b/patches/src/main/resources/addresources/values-gl-rES/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-gl-rES/strings.xml
+++ b/patches/src/main/resources/addresources/values-gl-rES/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-gu-rIN/strings.xml b/patches/src/main/resources/addresources/values-gu-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-gu-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-gu-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-hi-rIN/strings.xml b/patches/src/main/resources/addresources/values-hi-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-hi-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-hi-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-hr-rHR/strings.xml b/patches/src/main/resources/addresources/values-hr-rHR/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-hr-rHR/strings.xml
+++ b/patches/src/main/resources/addresources/values-hr-rHR/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
index 68b30d914d..de4853bbac 100644
--- a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
+++ b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml
@@ -1245,8 +1245,6 @@ Húzza el a képernyőt a kibontáshoz vagy bezáráshoz"</string>
<string name="revanced_gradient_loading_screen_title">Színátmenetes betöltési képernyő engedélyezése</string>
<string name="revanced_gradient_loading_screen_summary_on">A betöltési képernyő színátmenetes hatterű lesz</string>
<string name="revanced_gradient_loading_screen_summary_off">A betöltési képernyő egyszínű hátterű lesz</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Egyéni keresősáv szín engedélyezése</string>
<string name="revanced_seekbar_custom_color_summary_on">Az egyéni keresősáv szín megjelenik</string>
<string name="revanced_seekbar_custom_color_summary_off">Az egyéni keresősáv szín nem jelenik meg</string>
@@ -1360,7 +1358,6 @@ Ez a beállítás lehetővé teszi a magasabb videóminőségek feloldását"</s
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Videóminőség</string>
<string name="revanced_video_quality_default_entry_1">Automatikus</string>
<string name="revanced_remember_video_quality_last_selected_title">Felbontás változtatások mentése</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Felbontás változtatások alkalmazása az összes videóra</string>
@@ -1368,8 +1365,8 @@ Ez a beállítás lehetővé teszi a magasabb videóminőségek feloldását"</s
<string name="revanced_video_quality_default_wifi_title">Alapértelmezett videó minőség Wi-Fi hálózaton</string>
<string name="revanced_video_quality_default_mobile_title">Alapértelmezett videó minőség mobilhálózaton</string>
<string name="revanced_remember_shorts_quality_last_selected_title">A Shorts minőség módosításainak megjegyzése</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">A minőségváltozások az összes Shorts-videóra érvényesek</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">A minőségváltozások csak az aktuális Shorts-videóra érvényesek</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">A minőségi beállítások az összes Shorts videóra vonatkoznak</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">A minőségi beállítások csak a jelenlegi Short videóra vonatkoznak</string>
<string name="revanced_shorts_quality_default_wifi_title">Alapértelmezett Shorts minőség Wi-Fi hálózaton</string>
<string name="revanced_shorts_quality_default_mobile_title">Alapértelmezett Shorts minőség mobilhálózaton</string>
<string name="revanced_remember_video_quality_mobile">mobil</string>
@@ -1406,10 +1403,10 @@ Ez a beállítás lehetővé teszi a magasabb videóminőségek feloldását"</s
<string name="revanced_disable_hdr_video_summary_on">Az HDR videó le van tiltva</string>
<string name="revanced_disable_hdr_video_summary_off">Az HDR videó engedélyezve van</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Régi videóminőség menü visszaállítása</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">A régi videóminőség menü jelenik meg</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">A régi videóminőség menü nem jelenik meg</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Speciális videóminőség menü megjelenítése</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">A speciális videóminőség menü látható</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">A speciális videóminőség menü nem látható</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Csúsztatás engedélyezése a kereséshez</string>
diff --git a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
index 231e9a6fdb..a9e3961740 100644
--- a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
+++ b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml
@@ -1244,8 +1244,6 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_gradient_loading_screen_title">Աктиվացնել գրադիենտի բեռնման էկրանը</string>
<string name="revanced_gradient_loading_screen_summary_on">Բեռնման էկրանը կունենա գրադիենտի ֆոն</string>
<string name="revanced_gradient_loading_screen_summary_off">Բեռնման էկրանը կունենա մեկ գույնի ֆոն</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Աктиվացնել հարմարեցված seekbar-ի գույնը</string>
<string name="revanced_seekbar_custom_color_summary_on">Հարմարեցված seekbar-ի գույնը ցուցադրվում է</string>
<string name="revanced_seekbar_custom_color_summary_off">Սկզբնական seekbar-ի գույնը ցուցադրվում է</string>
@@ -1366,8 +1364,8 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_video_quality_default_wifi_title">Wi-Fi ցանցի դեֆոլտ տեսանյութի որակը</string>
<string name="revanced_video_quality_default_mobile_title">Մೊբայլ ցանցի դեֆոլտ տեսանյութի որակը</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Հիշել Shorts-ի որակի փոփոխությունները</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Որակի փոփոխություններն ազդում են բոլոր Shorts տեսանյութերի վրա</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Որակի փոփոխություններն ազդում են միայն ընթացիկ Shorts տեսանյութի վրա</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Որակի փոփոխություններն ազդում են բոլոր Shorts-ի վրա</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Որակի փոփոխություններն ազդում են միայն ընթացիկ Short-ի վրա</string>
<string name="revanced_shorts_quality_default_wifi_title">Shorts-ի լռելյայն որակը Wi-Fi ցանցում</string>
<string name="revanced_shorts_quality_default_mobile_title">Shorts-ի լռելյայն որակը բջջային ցանցում</string>
<string name="revanced_remember_video_quality_mobile">վարկանիշ</string>
@@ -1404,10 +1402,10 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_disable_hdr_video_summary_on">HDR տեսանյութը անջատված է</string>
<string name="revanced_disable_hdr_video_summary_off">HDR տեսանյութը միացված է</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Վերականգնել տեսանյութի որակի հին մենյու</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Տեսանյութի որակի հին մենյուը ցուցադրվում է</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Տեսանյութի որակի հին մենյուը չի ցուցադրվում</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Ցուցադրել տեսանյութի որակի ընդլայնված մենյուն</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Տեսանյութի որակի ընդլայնված մենյուն ցուցադրվում է</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Տեսանյութի որակի ընդլայնված մենյուն չի ցուցադրվում</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Ակտիվացնել սահելը համար ընտրելու</string>
diff --git a/patches/src/main/resources/addresources/values-in-rID/strings.xml b/patches/src/main/resources/addresources/values-in-rID/strings.xml
index c8eab5393a..cdbb4ffff6 100644
--- a/patches/src/main/resources/addresources/values-in-rID/strings.xml
+++ b/patches/src/main/resources/addresources/values-in-rID/strings.xml
@@ -1245,8 +1245,6 @@ Usap untuk memperluas atau menutup"</string>
<string name="revanced_gradient_loading_screen_title">Aktifkan layar pemuatan gradien</string>
<string name="revanced_gradient_loading_screen_summary_on">Layar pemuatan akan memiliki latar belakang gradien</string>
<string name="revanced_gradient_loading_screen_summary_off">Layar pemuatan akan memiliki latar belakang yang solid</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Aktifkan warna seekbar khusus</string>
<string name="revanced_seekbar_custom_color_summary_on">Warna seekbar khusus ditampilkan</string>
<string name="revanced_seekbar_custom_color_summary_off">Warna seekbar asli ditampilkan</string>
@@ -1360,7 +1358,6 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kualitas video</string>
<string name="revanced_video_quality_default_entry_1">Otomatis</string>
<string name="revanced_remember_video_quality_last_selected_title">Ingat perubahan kualitas video</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Perubahan kualitas diatur ke semua video</string>
@@ -1368,8 +1365,8 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_video_quality_default_wifi_title">Kualitas video bawaan di jaringan Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Kualitas video bawaan di jaringan selular</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Ingat perubahan kualitas Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Perubahan kualitas berlaku untuk semua video Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Perubahan kualitas hanya diatur di video Shorts saat ini</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Perubahan kualitas berlaku untuk semua Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Perubahan kualitas hanya berlaku untuk Short saat ini</string>
<string name="revanced_shorts_quality_default_wifi_title">Kualitas Shorts bawaan di jaringan Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Kualitas Shorts bawaan di jaringan seluler</string>
<string name="revanced_remember_video_quality_mobile">seluler</string>
@@ -1406,10 +1403,10 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_disable_hdr_video_summary_on">Video HDR dinonaktifkan</string>
<string name="revanced_disable_hdr_video_summary_off">Video HDR diaktifkan</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Pulihkan menu kualitas video lawas</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Menu kualitas video lawas ditampilkan</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Menu kualitas video lawas tidak ditampilkan</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Tampilkan menu kualitas video lanjutan</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Menu kualitas video lanjutan ditampilkan</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Menu kualitas video lanjutan tidak ditampilkan</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Aktifkan geser untuk mencari</string>
diff --git a/patches/src/main/resources/addresources/values-is-rIS/strings.xml b/patches/src/main/resources/addresources/values-is-rIS/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-is-rIS/strings.xml
+++ b/patches/src/main/resources/addresources/values-is-rIS/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-it-rIT/strings.xml b/patches/src/main/resources/addresources/values-it-rIT/strings.xml
index c5fde19944..1113b945ba 100644
--- a/patches/src/main/resources/addresources/values-it-rIT/strings.xml
+++ b/patches/src/main/resources/addresources/values-it-rIT/strings.xml
@@ -1245,8 +1245,6 @@ Scorrere per espandere o chiudere"</string>
<string name="revanced_gradient_loading_screen_title">Abilita la schermata di caricamento col gradiente</string>
<string name="revanced_gradient_loading_screen_summary_on">La schermata di caricamento avrà uno sfondo col gradiente</string>
<string name="revanced_gradient_loading_screen_summary_off">La schermata di caricamento avrà uno sfondo a tinta unita</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Abilita colore personalizzato della barra di avanzamento</string>
<string name="revanced_seekbar_custom_color_summary_on">Il colore personalizzato della barra di avanzamento è visibile</string>
<string name="revanced_seekbar_custom_color_summary_off">Il colore originale della barra di avanzamento è visibile</string>
@@ -1360,7 +1358,6 @@ Abilitare questa opzione può sbloccare qualità video più elevate"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Qualità video</string>
<string name="revanced_video_quality_default_entry_1">Automatico</string>
<string name="revanced_remember_video_quality_last_selected_title">Ricorda le modifiche della qualità del video</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Le modifiche della qualità si applicano a tutti i video</string>
@@ -1368,8 +1365,8 @@ Abilitare questa opzione può sbloccare qualità video più elevate"</string>
<string name="revanced_video_quality_default_wifi_title">Qualità video predefinita sulla rete Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Qualità video predefinita sulla rete mobile</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Ricorda le modifiche alla qualità di Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Le modifiche della qualità si applicano a tutti i video di Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Le modifiche alla qualità si applicano solo al video Shorts corrente</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Le modifiche della qualità si applicano a tutti gli Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Le modifiche della qualità si applicano solo allo Short corrente</string>
<string name="revanced_shorts_quality_default_wifi_title">Qualità predefinita di Shorts sulla rete Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Qualità predefinita di Shorts sulla rete mobile</string>
<string name="revanced_remember_video_quality_mobile">cellulare</string>
@@ -1406,10 +1403,10 @@ Abilitare questa opzione può sbloccare qualità video più elevate"</string>
<string name="revanced_disable_hdr_video_summary_on">I video in HDR sono disabilitati</string>
<string name="revanced_disable_hdr_video_summary_off">I video in HDR sono abilitati</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Ripristina il vecchio menu di qualità video</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Il vecchio menu di qualità video è visibile</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Il vecchio menu di qualità video non è visibile</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Mostra il menu avanzato della qualità video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Viene mostrato il menu avanzato della qualità video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Il menu avanzato della qualità video non viene mostrato</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Abilita scorri per avanzare</string>
diff --git a/patches/src/main/resources/addresources/values-iw-rIL/strings.xml b/patches/src/main/resources/addresources/values-iw-rIL/strings.xml
index 17f8672939..660782eeb8 100644
--- a/patches/src/main/resources/addresources/values-iw-rIL/strings.xml
+++ b/patches/src/main/resources/addresources/values-iw-rIL/strings.xml
@@ -1235,8 +1235,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">הפעל מסך טעינה עם מעבר צבע</string>
<string name="revanced_gradient_loading_screen_summary_on">מסך הטעינה יהיה בעל רקע עם מעבר צבע</string>
<string name="revanced_gradient_loading_screen_summary_off">מסך הטעינה יהיה בעל רקע מוצק</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">הפעל צבע סרגל דילוג מותאם אישית</string>
<string name="revanced_seekbar_custom_color_summary_on">צבע סרגל דילוג מותאם אישית מוצג</string>
<string name="revanced_seekbar_custom_color_summary_off">צבע סרגל דילוג מקורי מוצג</string>
@@ -1387,10 +1385,7 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">סרטון HDR מושבת</string>
<string name="revanced_disable_hdr_video_summary_off">סרטון HDR מופעל</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">שחזר תפריט איכות סרטון ישן</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">תפריט איכות סרטון ישן מוצג</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">תפריט איכות סרטון ישן אינו מוצג</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">הפעל החלק כדי לדלג</string>
diff --git a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
index ad68ffb6ce..e5b130a6ea 100644
--- a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
+++ b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml
@@ -1119,13 +1119,13 @@ GmsCore の電池の最適化を無効にしても、バッテリーの使用に
<string name="revanced_change_form_factor_entry_2">スマートフォン</string>
<string name="revanced_change_form_factor_entry_3">タブレット</string>
<string name="revanced_change_form_factor_entry_4">Automotive</string>
- <string name="revanced_change_form_factor_user_dialog_message">"変更点は次のとおりです。
+ <string name="revanced_change_form_factor_user_dialog_message">"変更点は次のとおりです:
タブレット レイアウト
-• コミュニティ投稿は非表示になります
+• コミュニティ投稿は表示されません
-自動車レイアウト
-• Shorts が通常のプレーヤーで開きます
+Automotive レイアウト
+• ショート動画を通常のプレーヤーで開きます
• フィードはトピックとチャンネルで整理されています"</string>
</patch>
<patch id="layout.spoofappversion.spoofAppVersionPatch">
@@ -1249,8 +1249,6 @@ GmsCore の電池の最適化を無効にしても、バッテリーの使用に
<string name="revanced_gradient_loading_screen_title">グラデーション読み込み画面を有効にする</string>
<string name="revanced_gradient_loading_screen_summary_on">画面読み込み時にグラデーションの背景が表示されます</string>
<string name="revanced_gradient_loading_screen_summary_off">画面読み込み時に通常の背景が表示されます</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">編集したシークバーの色を使用する</string>
<string name="revanced_seekbar_custom_color_summary_on">編集したシークバーの色が表示されます</string>
<string name="revanced_seekbar_custom_color_summary_off">デフォルトのシークバーの色が表示されます</string>
@@ -1363,22 +1361,21 @@ DeArrow の詳細については、ここをタップしてください"</string
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">動画品質</string>
<string name="revanced_video_quality_default_entry_1">自動</string>
<string name="revanced_remember_video_quality_last_selected_title">画質の変更を保存する</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">画質の変更はすべての動画に適用されます</string>
<string name="revanced_remember_video_quality_last_selected_summary_off">画質の変更は現在の動画にのみ適用されます</string>
<string name="revanced_video_quality_default_wifi_title">デフォルトの画質(Wi-Fi)</string>
<string name="revanced_video_quality_default_mobile_title">デフォルトの画質(モバイル ネットワーク)</string>
- <string name="revanced_remember_shorts_quality_last_selected_title">Shortsの品質変更を記憶する</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">品質の変更はすべてのShorts動画に適用されます</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">品質の変更は現在のShorts動画にのみ適用されます</string>
- <string name="revanced_shorts_quality_default_wifi_title">Wi-FiネットワークでのデフォルトのShortsの品質</string>
- <string name="revanced_shorts_quality_default_mobile_title">モバイルネットワークでのデフォルトのShortsの品質</string>
+ <string name="revanced_remember_shorts_quality_last_selected_title">ショート動画の画質の変更を保存する</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">画質の変更はすべてのShortsに適用されます</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">画質の変更は現在のShorts動画にのみ適用されます</string>
+ <string name="revanced_shorts_quality_default_wifi_title">デフォルトのショート動画の画質(Wi-Fi)</string>
+ <string name="revanced_shorts_quality_default_mobile_title">デフォルトのショート動画の画質(モバイル ネットワーク)</string>
<string name="revanced_remember_video_quality_mobile">モバイル ネットワーク</string>
<string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
<string name="revanced_remember_video_quality_toast">デフォルトの画質(%1$s)を %2$s に変更しました</string>
- <string name="revanced_remember_video_quality_toast_shorts">Shortsの品質を%1$sから%2$sに変更しました</string>
+ <string name="revanced_remember_video_quality_toast_shorts">ショート動画の画質(%1$s) を %2$s に変更しました</string>
</patch>
<patch id="video.speed.button.playbackSpeedButtonPatch">
<string name="revanced_playback_speed_dialog_button_title">再生速度設定ボタンを非表示</string>
@@ -1409,10 +1406,10 @@ DeArrow の詳細については、ここをタップしてください"</string
<string name="revanced_disable_hdr_video_summary_on">HDR 動画は無効です</string>
<string name="revanced_disable_hdr_video_summary_off">HDR 動画は有効です</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">画質設定メニューを旧バージョンに戻す</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">旧バージョンの画質設定メニューが表示されます</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">通常の画質設定メニューが表示されます</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">詳細ビデオ画質メニューを表示</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">詳細ビデオ画質メニューが表示されます</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">詳細ビデオ画質メニューは表示されません</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">スライドしてシークする機能を有効にする</string>
diff --git a/patches/src/main/resources/addresources/values-ka-rGE/strings.xml b/patches/src/main/resources/addresources/values-ka-rGE/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ka-rGE/strings.xml
+++ b/patches/src/main/resources/addresources/values-ka-rGE/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-kk-rKZ/strings.xml b/patches/src/main/resources/addresources/values-kk-rKZ/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-kk-rKZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-kk-rKZ/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-km-rKH/strings.xml b/patches/src/main/resources/addresources/values-km-rKH/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-km-rKH/strings.xml
+++ b/patches/src/main/resources/addresources/values-km-rKH/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-kn-rIN/strings.xml b/patches/src/main/resources/addresources/values-kn-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-kn-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-kn-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
index d5231170db..6508580150 100644
--- a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
+++ b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml
@@ -1252,8 +1252,6 @@ MicroG 앱 배터리 최적화를 비활성화(제한 없음)하더라도, 배
<string name="revanced_gradient_loading_screen_title">그라데이션 색상 로딩 화면 활성화하기</string>
<string name="revanced_gradient_loading_screen_summary_on">그라데이션 색상 로딩 화면을 활성화합니다</string>
<string name="revanced_gradient_loading_screen_summary_off">기본 로딩 화면을 활성화합니다</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">사용자 정의 재생바 색상 활성화하기</string>
<string name="revanced_seekbar_custom_color_summary_on">사용자 정의 재생바 색상을 활성화합니다</string>
<string name="revanced_seekbar_custom_color_summary_off">기본 재생바 색상을 활성화합니다</string>
@@ -1367,16 +1365,15 @@ DeArrow에 대해 자세히 알아보려면 여기를 누르세요"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">동영상 화질</string>
<string name="revanced_video_quality_default_entry_1">자동</string>
<string name="revanced_remember_video_quality_last_selected_title">동영상 화질 저장 활성화하기</string>
- <string name="revanced_remember_video_quality_last_selected_summary_on">동영상 화질 값을 변경할 때마다 저장합니다</string>
- <string name="revanced_remember_video_quality_last_selected_summary_off">동영상 화질 값을 변경할 때마다 저장하지 않습니다</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">동영상 화질 값을 변경할 때마다 기본 동영상 화질으로 저장합니다</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">동영상 화질 값을 변경할 때마다 기본 동영상 화질으로 저장하지 않습니다</string>
<string name="revanced_video_quality_default_wifi_title">Wi-Fi 이용 시 기본 동영상 화질</string>
<string name="revanced_video_quality_default_mobile_title">모바일 네트워크 이용 시 기본 동영상 화질</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Shorts 화질 저장 활성화하기</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Shorts 화질 값을 변경할 때마다 저장합니다</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Shorts 화질 값을 변경할 때마다 저장하지 않습니다</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Shorts 화질 값을 변경할 때마다 기본 Shorts 화질으로 저장합니다</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Shorts 화질 값을 변경할 때마다 기본 Shorts 화질으로 저장하지 않습니다</string>
<string name="revanced_shorts_quality_default_wifi_title">Wi-Fi 이용 시 기본 Shorts 화질</string>
<string name="revanced_shorts_quality_default_mobile_title">모바일 네트워크 이용 시 기본 Shorts 화질</string>
<string name="revanced_remember_video_quality_mobile">모바일 네트워크</string>
@@ -1403,8 +1400,8 @@ DeArrow에 대해 자세히 알아보려면 여기를 누르세요"</string>
</patch>
<patch id="video.speed.remember.rememberPlaybackSpeedPatch">
<string name="revanced_remember_playback_speed_last_selected_title">동영상 재생 속도 저장 활성화하기</string>
- <string name="revanced_remember_playback_speed_last_selected_summary_on">동영상 재생 속도 값을 변경할 때마다 저장합니다</string>
- <string name="revanced_remember_playback_speed_last_selected_summary_off">동영상 재생 속도 값을 변경할 때마다 저장하지 않습니다</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">동영상 재생 속도 값을 변경할 때마다 기본 동영상 재생 속도로 저장합니다</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">동영상 재생 속도 값을 변경할 때마다 기본 동영상 재생 속도로 저장하지 않습니다</string>
<string name="revanced_playback_speed_default_title">기본 동영상 재생 속도</string>
<string name="revanced_remember_playback_speed_toast">기본 동영상 재생 속도 값을 %s 로 변경합니다</string>
</patch>
@@ -1413,10 +1410,10 @@ DeArrow에 대해 자세히 알아보려면 여기를 누르세요"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR 동영상을 비활성화합니다</string>
<string name="revanced_disable_hdr_video_summary_off">HDR 동영상을 활성화합니다</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">이전 동영상 화질 설정 메뉴 활성화하기</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">이전 동영상 화질 설정 메뉴를 활성화합니다</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">이전 동영상 화질 설정 메뉴를 비활성화합니다</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">고급 동영상 화질 설정 메뉴 표시하기</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">고급 동영상 화질 설정 메뉴를 표시합니다</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">고급 동영상 화질 설정 메뉴를 표시하지 않습니다</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">슬라이드하여 탐색 활성화하기</string>
diff --git a/patches/src/main/resources/addresources/values-ky-rKG/strings.xml b/patches/src/main/resources/addresources/values-ky-rKG/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ky-rKG/strings.xml
+++ b/patches/src/main/resources/addresources/values-ky-rKG/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-lo-rLA/strings.xml b/patches/src/main/resources/addresources/values-lo-rLA/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-lo-rLA/strings.xml
+++ b/patches/src/main/resources/addresources/values-lo-rLA/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
index fa272f8c0e..7b9033397c 100644
--- a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
+++ b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml
@@ -1247,8 +1247,6 @@ Braukite, kad išplėstumėte arba uždarytumėte"</string>
<string name="revanced_gradient_loading_screen_title">Įgalinti gradientinį įkėlimo ekraną</string>
<string name="revanced_gradient_loading_screen_summary_on">Įkėlimo ekranas turės gradientinį foną</string>
<string name="revanced_gradient_loading_screen_summary_off">Įkėlimo ekranas turės tvirtą foną</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Įgalinti pritaikytą slankiklio spalvą</string>
<string name="revanced_seekbar_custom_color_summary_on">Rodoma pritaikyta slankiklio spalva</string>
<string name="revanced_seekbar_custom_color_summary_off">Rodoma originali slankiklio spalva</string>
@@ -1362,7 +1360,6 @@ Gali būti atrakinta aukštesnės vaizdo įrašų kokybės, bet galite patirti v
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Vaizdo įrašo kokybė</string>
<string name="revanced_video_quality_default_entry_1">Automatinis</string>
<string name="revanced_remember_video_quality_last_selected_title">Atsiminti vaizdo įrašų kokybės pakeitimus</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kokybės pakeitimai taikomi visiems vaizdo įrašams</string>
@@ -1370,8 +1367,8 @@ Gali būti atrakinta aukštesnės vaizdo įrašų kokybės, bet galite patirti v
<string name="revanced_video_quality_default_wifi_title">Numatytoji vaizdo įrašų kokybė „Wi-Fi“ tinkle</string>
<string name="revanced_video_quality_default_mobile_title">Numatytoji vaizdo įrašų kokybė mobiliojo ryšio tinkle</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Atsiminti „Shorts“ kokybės pakeitimus</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kokybės pakeitimai taikomi visiems „Shorts“ vaizdo įrašams</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kokybės pakeitimai taikomi tik dabartiniam „Shorts“ vaizdo įrašui</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kokybės pakeitimai taikomi visiems „Shorts“</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kokybės pakeitimai taikomi tik dabartiniam „Shorts“</string>
<string name="revanced_shorts_quality_default_wifi_title">Numatytoji „Shorts“ kokybė naudojant „Wi-Fi“ tinklą</string>
<string name="revanced_shorts_quality_default_mobile_title">Numatytoji „Shorts“ kokybė mobiliųjų tinklų atveju</string>
<string name="revanced_remember_video_quality_mobile">mobilusis</string>
@@ -1408,10 +1405,10 @@ Gali būti atrakinta aukštesnės vaizdo įrašų kokybės, bet galite patirti v
<string name="revanced_disable_hdr_video_summary_on">HDR vaizdo įrašas išjungtas</string>
<string name="revanced_disable_hdr_video_summary_off">HDR vaizdo įrašas įjungtas</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Atkurti senąjį vaizdo įrašų kokybės meniu</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Senasis vaizdo įrašų kokybės meniu rodomas</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Senasis vaizdo įrašų kokybės meniu nerodomas</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Rodyti išplėstinį vaizdo įrašo kokybės meniu</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Rodomas išplėstinis vaizdo įrašo kokybės meniu</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Nerodomas išplėstinis vaizdo įrašo kokybės meniu</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Įjungti slinkimą, kad ieškotumėte</string>
diff --git a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
index e3a1e63413..45cfb807ba 100644
--- a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
+++ b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml
@@ -1245,8 +1245,6 @@ Pārvelciet, lai paplašinātu vai aizvērtu"</string>
<string name="revanced_gradient_loading_screen_title">Iespējot gradientu ielādes ekrānu</string>
<string name="revanced_gradient_loading_screen_summary_on">Ielādes ekrānam būs gradientu fons</string>
<string name="revanced_gradient_loading_screen_summary_off">Ielādes ekrānam būs ciets fons</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Iespējot pielāgotu meklēšanas joslas krāsu</string>
<string name="revanced_seekbar_custom_color_summary_on">Pielāgota meklēšanas joslas krāsa ir redzama</string>
<string name="revanced_seekbar_custom_color_summary_off">Oriģinālā meklēšanas joslas krāsa ir redzama</string>
@@ -1360,7 +1358,6 @@ Var tikt atbloķētas augstākas video kvalitātes, taču var rasties video atsk
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Video kvalitāte</string>
<string name="revanced_video_quality_default_entry_1">Automātiski</string>
<string name="revanced_remember_video_quality_last_selected_title">Atcerēties video kvalitātes izmaiņas</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitātes izmaiņas attiecas uz visiem videoklipiem</string>
@@ -1368,8 +1365,8 @@ Var tikt atbloķētas augstākas video kvalitātes, taču var rasties video atsk
<string name="revanced_video_quality_default_wifi_title">Noklusējuma video kvalitāte Wi-Fi tīklā</string>
<string name="revanced_video_quality_default_mobile_title">Noklusējuma video kvalitāte mobilajā tīklā</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Atcerēties Shorts kvalitātes izmaiņas</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitātes izmaiņas attiecas uz visiem Shorts video</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitātes izmaiņas attiecas tikai uz pašreizējo Shorts video</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitātes izmaiņas attiecas uz visiem Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitātes izmaiņas attiecas tikai uz pašreizējo Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Noklusējuma Shorts kvalitāte Wi-Fi tīklā</string>
<string name="revanced_shorts_quality_default_mobile_title">Noklusējuma Shorts kvalitāte mobilajā tīklā</string>
<string name="revanced_remember_video_quality_mobile">mobilais</string>
@@ -1406,10 +1403,10 @@ Var tikt atbloķētas augstākas video kvalitātes, taču var rasties video atsk
<string name="revanced_disable_hdr_video_summary_on">HDR video ir deaktivizēts</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video ir aktivizēts</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Atjaunot veco video kvalitātes izvēlni</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Vecā video kvalitātes izvēlne tiek rādīta</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Vecā video kvalitātes izvēlne netiek rādīta</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Rādīt izvērsto video kvalitātes izvēlni</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Tiek rādīta izvērstā video kvalitātes izvēlne</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Izvērstā video kvalitātes izvēlne netiek rādīta</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Iespējot slīdēšanu, lai meklētu</string>
diff --git a/patches/src/main/resources/addresources/values-mk-rMK/strings.xml b/patches/src/main/resources/addresources/values-mk-rMK/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-mk-rMK/strings.xml
+++ b/patches/src/main/resources/addresources/values-mk-rMK/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ml-rIN/strings.xml b/patches/src/main/resources/addresources/values-ml-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ml-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-ml-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-mn-rMN/strings.xml b/patches/src/main/resources/addresources/values-mn-rMN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-mn-rMN/strings.xml
+++ b/patches/src/main/resources/addresources/values-mn-rMN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-mr-rIN/strings.xml b/patches/src/main/resources/addresources/values-mr-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-mr-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-mr-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ms-rMY/strings.xml b/patches/src/main/resources/addresources/values-ms-rMY/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ms-rMY/strings.xml
+++ b/patches/src/main/resources/addresources/values-ms-rMY/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-my-rMM/strings.xml b/patches/src/main/resources/addresources/values-my-rMM/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-my-rMM/strings.xml
+++ b/patches/src/main/resources/addresources/values-my-rMM/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-nb-rNO/strings.xml b/patches/src/main/resources/addresources/values-nb-rNO/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-nb-rNO/strings.xml
+++ b/patches/src/main/resources/addresources/values-nb-rNO/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ne-rIN/strings.xml b/patches/src/main/resources/addresources/values-ne-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ne-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-ne-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
index c244ef39ad..f0974f6319 100644
--- a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
+++ b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml
@@ -1246,8 +1246,6 @@ Veeg om uit te vouwen of te sluiten"</string>
<string name="revanced_gradient_loading_screen_title">Schakel het laden van het verloopscherm in</string>
<string name="revanced_gradient_loading_screen_summary_on">Het laadscherm heeft een verlopende achtergrond</string>
<string name="revanced_gradient_loading_screen_summary_off">Het laadscherm heeft een effen achtergrond</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Schakel aangepaste schuifregelaar kleur in</string>
<string name="revanced_seekbar_custom_color_summary_on">De aangepaste kleur van de schuifregelaar is zichtbaar</string>
<string name="revanced_seekbar_custom_color_summary_off">De oorspronkelijke kleur van de schuifregelaar is zichtbaar</string>
@@ -1361,7 +1359,6 @@ Het inschakelen hiervan kan hogere videokwaliteiten ontgrendelen"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Videokwaliteit</string>
<string name="revanced_video_quality_default_entry_1">Automatisch</string>
<string name="revanced_remember_video_quality_last_selected_title">Onthoud wijzigingen in videokwaliteit</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kwaliteitswijzigingen worden op alle video\'s toegepast</string>
@@ -1369,8 +1366,8 @@ Het inschakelen hiervan kan hogere videokwaliteiten ontgrendelen"</string>
<string name="revanced_video_quality_default_wifi_title">Standaard videokwaliteit op Wi-Fi-netwerk</string>
<string name="revanced_video_quality_default_mobile_title">Standaard videokwaliteit op mobiel netwerk</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Onthoud kwaliteitswijzigingen voor Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kwaliteitswijzigingen gelden voor alle Shorts video\'s</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kwaliteitswijzigingen gelden alleen voor de huidige Shorts-video</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kwaliteitswijzigingen zijn van toepassing op alle Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kwaliteitswijzigingen zijn alleen van toepassing op de huidige Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Standaardkwaliteit voor Shorts op wifi-netwerk</string>
<string name="revanced_shorts_quality_default_mobile_title">Standaardkwaliteit voor Shorts op mobiel netwerk</string>
<string name="revanced_remember_video_quality_mobile">mobiel</string>
@@ -1407,10 +1404,10 @@ Het inschakelen hiervan kan hogere videokwaliteiten ontgrendelen"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR-video is uitgeschakeld</string>
<string name="revanced_disable_hdr_video_summary_off">HDR-video is ingeschakeld</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Oud menu voor videokwaliteit herstellen</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Oud menu voor videokwaliteit wordt weergegeven</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Oud menu voor videokwaliteit wordt niet weergegeven</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Geavanceerd menu voor videokwaliteit weergeven</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Geavanceerd menu voor videokwaliteit wordt weergegeven</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Geavanceerd menu voor videokwaliteit wordt niet weergegeven</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Schuiven om te zoeken inschakelen</string>
diff --git a/patches/src/main/resources/addresources/values-or-rIN/strings.xml b/patches/src/main/resources/addresources/values-or-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-or-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-or-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-pa-rIN/strings.xml b/patches/src/main/resources/addresources/values-pa-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-pa-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-pa-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
index 3f8559d3aa..009839c1aa 100644
--- a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
+++ b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml
@@ -1246,8 +1246,6 @@ Przesuń, aby rozwinąć lub zamknąć"</string>
<string name="revanced_gradient_loading_screen_title">Kolorowy ekran ładowania</string>
<string name="revanced_gradient_loading_screen_summary_on">Ekran ładowania będzie miał kolorowe tło</string>
<string name="revanced_gradient_loading_screen_summary_off">Ekran ładowania będzie miał stałe tło</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Niestandardowy kolor paska postępu</string>
<string name="revanced_seekbar_custom_color_summary_on">Niestandardowy</string>
<string name="revanced_seekbar_custom_color_summary_off">Oryginalny</string>
@@ -1361,7 +1359,6 @@ Włączenie tego może odblokować wyższe jakości wideo"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Jakość wideo</string>
<string name="revanced_video_quality_default_entry_1">Automatycznie</string>
<string name="revanced_remember_video_quality_last_selected_title">Zapamiętaj zmiany jakości filmu</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Zmiany jakości dotyczą wszystkich filmów</string>
@@ -1369,8 +1366,8 @@ Włączenie tego może odblokować wyższe jakości wideo"</string>
<string name="revanced_video_quality_default_wifi_title">Domyślna jakość filmu w sieci Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Domyślna jakość filmu w sieci komórkowej</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapamiętaj zmiany jakości w Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Zmiany jakości dotyczą wszystkich filmów w Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Zmiany jakości dotyczą tylko bieżącego filmu w Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Zmiany jakości dotyczą wszystkich filmów Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Zmiany jakości dotyczą tylko bieżącego Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Domyślna jakość Shorts w sieci Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Domyślna jakość Shorts w sieci komórkowej</string>
<string name="revanced_remember_video_quality_mobile">telefonu</string>
@@ -1407,10 +1404,10 @@ Włączenie tego może odblokować wyższe jakości wideo"</string>
<string name="revanced_disable_hdr_video_summary_on">Wideo HDR jest wyłączone</string>
<string name="revanced_disable_hdr_video_summary_off">Wideo HDR jest włączone</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Stare menu jakości filmu</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Stare menu jakości filmu jest widoczne</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Stare menu jakości filmu nie jest widoczne</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Pokaż zaawansowane menu jakości filmu</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Zaawansowane menu jakości filmu jest wyświetlane</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Zaawansowane menu jakości filmu nie jest wyświetlane</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Przesuń, by przewinąć</string>
diff --git a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
index 84864940cf..f7d94aaf21 100644
--- a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
+++ b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml
@@ -1243,8 +1243,6 @@ Deslize para expandir ou fechar"</string>
<string name="revanced_gradient_loading_screen_title">Ativar tela de carregamento em gradiente</string>
<string name="revanced_gradient_loading_screen_summary_on">Tela de carregamento terá um fundo em gradiente</string>
<string name="revanced_gradient_loading_screen_summary_off">Tela de carregamento terá um fundo sólido</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Ativar cor personalizada da barra de busca</string>
<string name="revanced_seekbar_custom_color_summary_on">Cor personalizada da barra de busca é mostrada</string>
<string name="revanced_seekbar_custom_color_summary_off">Cor original da barra de busca é mostrada</string>
@@ -1358,7 +1356,6 @@ Habilitar isso pode desbloquear qualidades de vídeo mais altas"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Qualidade do vídeo</string>
<string name="revanced_video_quality_default_entry_1">Automático</string>
<string name="revanced_remember_video_quality_last_selected_title">Lembrar mudanças na qualidade do vídeo</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Mudança na qualidade se aplicam a todos os vídeos</string>
@@ -1366,8 +1363,8 @@ Habilitar isso pode desbloquear qualidades de vídeo mais altas"</string>
<string name="revanced_video_quality_default_wifi_title">Qualidade padrão do vídeo no Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Qualidade padrão do vídeo nos dados móveis</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Lembrar alterações na qualidade dos Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">As alterações de qualidade se aplicam a todos os vídeos do Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">As alterações de qualidade se aplicam apenas ao vídeo atual do Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">As alterações de qualidade se aplicam a todos os Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">As alterações de qualidade aplicam-se apenas ao Short atual</string>
<string name="revanced_shorts_quality_default_wifi_title">Qualidade padrão dos Shorts na rede Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Qualidade padrão dos Shorts na rede móvel</string>
<string name="revanced_remember_video_quality_mobile">dados móveis</string>
@@ -1404,10 +1401,10 @@ Habilitar isso pode desbloquear qualidades de vídeo mais altas"</string>
<string name="revanced_disable_hdr_video_summary_on">O vídeo HDR está desabilitado</string>
<string name="revanced_disable_hdr_video_summary_off">O vídeo HDR está habilitado</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaurar menu antigo de qualidade de vídeo</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Menu antigo de qualidade de vídeo está sendo mostrado</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Menu antigo de qualidade de vídeo não está sendo mostrado</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Mostrar menu de qualidade de vídeo avançado</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">O menu de qualidade de vídeo avançado é exibido</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">O menu de qualidade de vídeo avançado não é exibido</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Ativar gesto na barra de busca</string>
diff --git a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
index 90b6602174..02c52cfe94 100644
--- a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
+++ b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml
@@ -1246,8 +1246,6 @@ Vuốt để mở rộng hoặc đóng"</string>
<string name="revanced_gradient_loading_screen_title">Ativar ecrã de carregamento do gradiente</string>
<string name="revanced_gradient_loading_screen_summary_on">Carregar ecrã terá um fundo em gradiente</string>
<string name="revanced_gradient_loading_screen_summary_off">Carregar ecrã terá um fundo sólido</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Ativar a cor personalizada</string>
<string name="revanced_seekbar_custom_color_summary_on">Cor personalizada da barra de busca é visível</string>
<string name="revanced_seekbar_custom_color_summary_off">Cor original da barra de busca é visível</string>
@@ -1361,7 +1359,6 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Qualidade do vídeo</string>
<string name="revanced_video_quality_default_entry_1">Automático</string>
<string name="revanced_remember_video_quality_last_selected_title">Lembrar mudanças na qualidade do vídeo</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Alterações de qualidade se aplicam a todos os vídeos</string>
@@ -1369,8 +1366,8 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_video_quality_default_wifi_title">Qualidade de vídeo padrão na rede Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Qualidade de vídeo padrão na rede móvel</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Lembrar alterações na qualidade dos Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">As alterações de qualidade se aplicam a todos os vídeos do tipo Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">As alterações de qualidade se aplicam apenas ao vídeo atual do tipo Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">As alterações de qualidade se aplicam a todos os Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">As alterações de qualidade se aplicam apenas ao Short atual</string>
<string name="revanced_shorts_quality_default_wifi_title">Qualidade padrão de Shorts na rede Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Qualidade padrão de Shorts na rede móvel</string>
<string name="revanced_remember_video_quality_mobile">telemóvel</string>
@@ -1407,10 +1404,10 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_disable_hdr_video_summary_on">O vídeo HDR está desabilitado</string>
<string name="revanced_disable_hdr_video_summary_off">O vídeo HDR está ativado</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaurar menu antigo de qualidade de vídeo</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Menu antigo de qualidade de vídeo exibido</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Menu antigo de qualidade de vídeo não visível</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Mostrar menu de qualidade de vídeo avançado</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">O menu de qualidade de vídeo avançado é mostrado</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">O menu de qualidade de vídeo avançado não é mostrado</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Habilitar o slide para procurar</string>
diff --git a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
index 1e9e3a28f4..0d24e16cba 100644
--- a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
+++ b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml
@@ -1245,8 +1245,6 @@ Trageți pentru a extinde sau a închide"</string>
<string name="revanced_gradient_loading_screen_title">Activează ecranul de încărcare gradient</string>
<string name="revanced_gradient_loading_screen_summary_on">Încărcarea ecranului va avea un fundal pentru gradient</string>
<string name="revanced_gradient_loading_screen_summary_off">Ecranul de încărcare va avea un fundal solid</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Activează culoarea barei de căutare personalizate</string>
<string name="revanced_seekbar_custom_color_summary_on">Culoarea personalizată a barei de căutare este afișată</string>
<string name="revanced_seekbar_custom_color_summary_off">Culoarea bara de căutare originală este afișată</string>
@@ -1360,7 +1358,6 @@ Activarea acestei opțiuni poate debloca calități video mai mari"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Calitatea video</string>
<string name="revanced_video_quality_default_entry_1">Automat</string>
<string name="revanced_remember_video_quality_last_selected_title">Memorează modificările calității video</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Modificările de calitate se aplică tuturor videoclipurilor</string>
@@ -1368,8 +1365,8 @@ Activarea acestei opțiuni poate debloca calități video mai mari"</string>
<string name="revanced_video_quality_default_wifi_title">Calitate video implicită în rețeaua Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Calitatea video implicită în rețeaua mobilă</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Reține modificările calității pentru Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Modificările de calitate se aplică tuturor videoclipurilor Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Modificările de calitate se aplică doar videoclipului curent Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Modificările de calitate se aplică tuturor Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Modificările de calitate se aplică doar Shortului curent</string>
<string name="revanced_shorts_quality_default_wifi_title">Calitatea implicită a Shorts în rețeaua Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Calitatea implicită a Shorts în rețeaua mobilă</string>
<string name="revanced_remember_video_quality_mobile">mobil</string>
@@ -1406,10 +1403,10 @@ Activarea acestei opțiuni poate debloca calități video mai mari"</string>
<string name="revanced_disable_hdr_video_summary_on">Videoclipurile HDR sunt dezactivate</string>
<string name="revanced_disable_hdr_video_summary_off">Videoclipurile HDR sunt activate</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Restaurează meniul de calitate video vechi</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Vechea meniu de calitate a videoclipului este afișat</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Meniul vechi de calitate a videoclipului nu este afișat</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Afișează meniul avansat de calitate video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Se afișează meniul avansat de calitate video</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Nu se afișează meniul avansat de calitate video</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Activează diapozitivul pentru a căuta</string>
diff --git a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
index fc51af5ad3..aa40ed2b22 100644
--- a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
+++ b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml
@@ -1246,8 +1246,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Включить градиентный фон экрана загрузки</string>
<string name="revanced_gradient_loading_screen_summary_on">Градиентный фон экрана загрузки макета включен</string>
<string name="revanced_gradient_loading_screen_summary_off">Сплошной фон экрана загрузки макета включен</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Включить кастомный цвет полосы прогресса</string>
<string name="revanced_seekbar_custom_color_summary_on">Кастомный цвет полосы прогресса включен</string>
<string name="revanced_seekbar_custom_color_summary_off">Оригинальный цвет полосы прогресса включен</string>
@@ -1361,7 +1359,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Качество видео</string>
<string name="revanced_video_quality_default_entry_1">Авто</string>
<string name="revanced_remember_video_quality_last_selected_title">Запоминать изменения качества видео</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Изменения качества воспроизведения применяются ко всем видео</string>
@@ -1369,8 +1366,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Качество видео по умолчанию в Wi-Fi сети</string>
<string name="revanced_video_quality_default_mobile_title">Качество видео по умолчанию в мобильной сети</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Запоминать изменения качества Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Изменения качества воспроизведения применяются ко всем видео Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Изменения качества воспроизведения применяются только к текущему видео Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Изменения качества воспроизведения применяются ко всем Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Изменения качества воспроизведения применяются только к текущему Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Качество Shorts по умолчанию в Wi-Fi сети</string>
<string name="revanced_shorts_quality_default_mobile_title">Качество Shorts по умолчанию в мобильной сети</string>
<string name="revanced_remember_video_quality_mobile">мобильной сети</string>
@@ -1407,10 +1404,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR видео отключено</string>
<string name="revanced_disable_hdr_video_summary_off">HDR видео включено</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Включить старое меню качества видео</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Старое меню качества видео включено</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Новое меню качества видео включено</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Показывать расширенное меню качества видео</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Расширенное меню качества видео включено</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Новое меню качества видео включено</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Включить перемотку видео слайдом</string>
diff --git a/patches/src/main/resources/addresources/values-si-rLK/strings.xml b/patches/src/main/resources/addresources/values-si-rLK/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-si-rLK/strings.xml
+++ b/patches/src/main/resources/addresources/values-si-rLK/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
index 65d1c56f55..6066a7f521 100644
--- a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
+++ b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml
@@ -1234,8 +1234,6 @@ Potiahnite prstom na rozbalenie alebo zatvorenie"</string>
<string name="revanced_gradient_loading_screen_title">Povoliť obrazovku načítania gradientu</string>
<string name="revanced_gradient_loading_screen_summary_on">Načítavacia obrazovka bude mať pozadie s prechodom</string>
<string name="revanced_gradient_loading_screen_summary_off">Načítavacia obrazovka bude mať pevné pozadie</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Povoliť vlastnú farbu vyhľadávacieho panela</string>
<string name="revanced_seekbar_custom_color_summary_on">Zobrazí sa vlastná farba panela vyhľadávania</string>
<string name="revanced_seekbar_custom_color_summary_off">Zobrazí sa pôvodná farba vyhľadávacieho panela</string>
@@ -1349,7 +1347,6 @@ Povolením tejto možnosti môžete odomknúť vyššie kvality videa"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kvalita videa</string>
<string name="revanced_video_quality_default_entry_1">Automaticky</string>
<string name="revanced_remember_video_quality_last_selected_title">Pamätajte na zmeny kvality videa</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Zmeny kvality sa vzťahujú na všetky videá</string>
@@ -1357,8 +1354,8 @@ Povolením tejto možnosti môžete odomknúť vyššie kvality videa"</string>
<string name="revanced_video_quality_default_wifi_title">Predvolená kvalita videa v sieti Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Predvolená kvalita videa v mobilnej sieti</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapamätať si zmeny kvality pre Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Zmeny kvality sa použijú na všetky videá Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Zmeny kvality sa použijú iba na aktuálne video Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Zmeny kvality sa použijú na všetky Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Zmeny kvality sa použijú iba na aktuálny Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Predvolená kvalita pre Shorts v sieti Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Predvolená kvalita pre Shorts v mobilnej sieti</string>
<string name="revanced_remember_video_quality_mobile">mobilné</string>
@@ -1395,10 +1392,10 @@ Povolením tejto možnosti môžete odomknúť vyššie kvality videa"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video je vypnuté</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video je zapnuté</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Obnovte starú ponuku kvality videa</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Zobrazí sa stará ponuka kvality videa</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Stará ponuka kvality videa sa nezobrazuje</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Zobraziť rozšírenú ponuku kvality videa</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Zobrazuje sa rozšírená ponuka kvality videa</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Nezobrazuje sa rozšírená ponuka kvality videa</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Povoliť vyhľadávanie snímkou</string>
diff --git a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
index 0f77722df9..59ccf22a0c 100644
--- a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
+++ b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml
@@ -1245,8 +1245,6 @@ Podrsnite za razširitev ali zapiranje"</string>
<string name="revanced_gradient_loading_screen_title">Omogoči zaslon za nalaganje z gradientom</string>
<string name="revanced_gradient_loading_screen_summary_on">Zaslon za nalaganje bo imel ozadje z gradientom</string>
<string name="revanced_gradient_loading_screen_summary_off">Zaslon za nalaganje bo imel enobarvno ozadje</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Omogoči prilagojeno barvo drsnika</string>
<string name="revanced_seekbar_custom_color_summary_on">Prilagojena barva drsnika je prikazana</string>
<string name="revanced_seekbar_custom_color_summary_off">Izvorna barva drsnika je prikazana</string>
@@ -1360,7 +1358,6 @@ Omogočanje tega lahko odklene višje kakovosti videa"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kakovost videoposnetka</string>
<string name="revanced_video_quality_default_entry_1">Samodejno</string>
<string name="revanced_remember_video_quality_last_selected_title">Zapomni si spremembe kakovosti videoposnetka</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Spremembe kakovosti se uporabijo za vse videoposnetke</string>
@@ -1368,8 +1365,8 @@ Omogočanje tega lahko odklene višje kakovosti videa"</string>
<string name="revanced_video_quality_default_wifi_title">Privzeta kakovost videoposnetka v omrežju Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Privzeta kakovost videoposnetka v mobilnem omrežju</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapomni si spremembe kakovosti za Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Spremembe kakovosti se uporabljajo za vse videoposnetke Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Spremembe kakovosti se uporabljajo samo za trenutni videoposnetek Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Spremembe kakovosti veljajo za vse Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Spremembe kakovosti veljajo samo za trenutni Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Privzeta kakovost za Shorts v omrežju Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Privzeta kakovost za Shorts v mobilnem omrežju</string>
<string name="revanced_remember_video_quality_mobile">mobilni</string>
@@ -1406,10 +1403,10 @@ Omogočanje tega lahko odklene višje kakovosti videa"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video je onemogočen</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video je omogočen</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Obnovi stari meni za kakovost videoposnetkov</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Stari meni za kakovost videoposnetkov je prikazan</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Stari meni za kakovost videoposnetkov ni prikazan</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Pokaži napredni meni za kakovost videoposnetkov</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Napredni meni za kakovost videoposnetkov je prikazan</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Napredni meni za kakovost videoposnetkov ni prikazan</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Omogoči drsno iskanje</string>
diff --git a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
index 61f64694f9..410d2ae663 100644
--- a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
+++ b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml
@@ -1244,8 +1244,6 @@ Lëviz gishtin për të zgjeruar ose mbyllur"</string>
<string name="revanced_gradient_loading_screen_title">Aktivizo ekranin e ngarkimit me gradient</string>
<string name="revanced_gradient_loading_screen_summary_on">Ekrani i ngarkimit do të ketë një sfond me gradient</string>
<string name="revanced_gradient_loading_screen_summary_off">Ekrani i ngarkimit do të ketë një sfond të ngurtë</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Aktivizo ngjyrën e personalizuar të shkallës së kërkimit</string>
<string name="revanced_seekbar_custom_color_summary_on">Ngjyra e personalizuar e shkallës së kërkimit është e dukshme</string>
<string name="revanced_seekbar_custom_color_summary_off">Ngjyra origjinale e shkallës së kërkimit është e dukshme</string>
@@ -1359,7 +1357,6 @@ Aktivizimi i kësaj mund të zhbllokojë cilësi më të larta video"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Cilësia e videos</string>
<string name="revanced_video_quality_default_entry_1">Automatik</string>
<string name="revanced_remember_video_quality_last_selected_title">Mbani mend ndryshimet e cilësisë së videos</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Ndryshimet e cilësisë zbatohen për të gjitha videot</string>
@@ -1367,8 +1364,8 @@ Aktivizimi i kësaj mund të zhbllokojë cilësi më të larta video"</string>
<string name="revanced_video_quality_default_wifi_title">Cilësia e videos parazgjedhëse në rrjetin Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Cilësia e videos parazgjedhëse në rrjetin celular</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Mbani mend ndryshimet e cilësisë së Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Ndryshimet e cilësisë zbatohen për të gjitha videot e Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Ndryshimet e cilësisë zbatohen vetëm për videon aktuale të Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Ndryshimet e cilësisë zbatohen për të gjitha Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Ndryshimet e cilësisë zbatohen vetëm për Short-in aktual</string>
<string name="revanced_shorts_quality_default_wifi_title">Cilësia e parazgjedhur e Shorts në rrjetin Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Cilësia e parazgjedhur e Shorts në rrjetin celular</string>
<string name="revanced_remember_video_quality_mobile">celular</string>
@@ -1405,10 +1402,10 @@ Aktivizimi i kësaj mund të zhbllokojë cilësi më të larta video"</string>
<string name="revanced_disable_hdr_video_summary_on">Videoja HDR është çaktivizuar</string>
<string name="revanced_disable_hdr_video_summary_off">Videoja HDR është aktivizuar</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Rikthe menynë e vjetër të cilësisë së videos</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Menyja e vjetër e cilësisë së videos shfaqet</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Menyja e vjetër e cilësisë së videos nuk shfaqet</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Shfaq menunë e avancuar të cilësisë së videos</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Shfaqet menyja e avancuar e cilësisë së videos</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Menyja e avancuar e cilësisë së videos nuk shfaqet</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Aktivizo rrëshqitjen për kërkim</string>
diff --git a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
index 303ab7491c..ec5f55fc3d 100644
--- a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
+++ b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml
@@ -1245,8 +1245,6 @@ Prevucite za proširenje ili zatvaranje"</string>
<string name="revanced_gradient_loading_screen_title">Omogući gradijentnu pozadinu ekrana učitavanja</string>
<string name="revanced_gradient_loading_screen_summary_on">Ekran učitavanja će imati gradijentnu pozadinu</string>
<string name="revanced_gradient_loading_screen_summary_off">Ekran učitavanja će imati običnu pozadinu</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Omogući prilagođenu boju trake za premotavanje</string>
<string name="revanced_seekbar_custom_color_summary_on">Prilagođena boja trake za premotavanje je prikazana</string>
<string name="revanced_seekbar_custom_color_summary_off">Originalna boja trake za premotavanje je prikazana</string>
@@ -1360,7 +1358,6 @@ Ako ovo omogućite, mogu biti otključani viši kvaliteti videa"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kvalitet video snimka</string>
<string name="revanced_video_quality_default_entry_1">Automatski</string>
<string name="revanced_remember_video_quality_last_selected_title">Zapamti promene kvaliteta videa</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Promene kvaliteta se primenjuju na sve videe</string>
@@ -1368,8 +1365,8 @@ Ako ovo omogućite, mogu biti otključani viši kvaliteti videa"</string>
<string name="revanced_video_quality_default_wifi_title">Podrazumevani kvalitet videa na Wi-Fi mreži</string>
<string name="revanced_video_quality_default_mobile_title">Podrazumevani kvalitet videa na mobilnoj mreži</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapamti promene kvaliteta za Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Promene kvaliteta se primenjuju na sve Shorts video snimke</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Promene kvaliteta se primenjuju samo na trenutni Shorts video snimak</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Promene kvaliteta se primenjuju na sve Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Promene kvaliteta se primenjuju samo na trenutni Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Podrazumevani kvalitet za Shorts na Wi-Fi mreži</string>
<string name="revanced_shorts_quality_default_mobile_title">Podrazumevani kvalitet za Shorts na mobilnoj mreži</string>
<string name="revanced_remember_video_quality_mobile">mobilnoj mreži</string>
@@ -1406,10 +1403,10 @@ Ako ovo omogućite, mogu biti otključani viši kvaliteti videa"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video je onemogućen</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video je omogućen</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Vrati stari meni kvaliteta videa</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Stari meni kvaliteta videa je prikazan</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Stari meni kvaliteta videa nije prikazan</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Prikaži napredni meni kvaliteta videa</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Napredni meni kvaliteta videa je prikazan</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Napredni meni kvaliteta videa nije prikazan</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Omogući prevlačenje za premotavanje</string>
diff --git a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
index 9abb3c11c3..4705ace2c4 100644
--- a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
+++ b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml
@@ -1245,8 +1245,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Омогући градијентну позадину екрана учитавања</string>
<string name="revanced_gradient_loading_screen_summary_on">Екран учитавања ће имати градијентну позадину</string>
<string name="revanced_gradient_loading_screen_summary_off">Екран учитавања ће имати обичну позадину</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Омогући прилагођену боју траке за премотавање</string>
<string name="revanced_seekbar_custom_color_summary_on">Прилагођена боја траке за премотавање је приказана</string>
<string name="revanced_seekbar_custom_color_summary_off">Оригинална боја траке за премотавање је приказана</string>
@@ -1360,7 +1358,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Kvalitet video snimka</string>
<string name="revanced_video_quality_default_entry_1">Аутоматски</string>
<string name="revanced_remember_video_quality_last_selected_title">Запамти промене квалитета видеа</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Промене квалитета се примењују на све видее</string>
@@ -1368,8 +1365,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Подразумевани квалитет видеа на Wi-Fi мрежи</string>
<string name="revanced_video_quality_default_mobile_title">Подразумевани квалитет видеа на мобилној мрежи</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Zapamti promene kvaliteta za Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Promene kvaliteta se primenjuju na sve Shorts video snimke</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Promene kvaliteta se primenjuju samo na trenutni Shorts video snimak</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Промене квалитета се примењују на све Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Промене квалитета се примењују само на тренутни Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Podrazumevani kvalitet za Shorts na Wi-Fi mreži</string>
<string name="revanced_shorts_quality_default_mobile_title">Podrazumevani kvalitet za Shorts na mobilnoj mreži</string>
<string name="revanced_remember_video_quality_mobile">мобилној мрежи</string>
@@ -1406,10 +1403,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR видео је онемогућен</string>
<string name="revanced_disable_hdr_video_summary_off">HDR видео је омогућен</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Врати стари мени квалитета видеа</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Стари мени квалитета видеа је приказан</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Стари мени квалитета видеа није приказан</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Прикажи напредни мени квалитета видеа</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Приказан је напредни мени квалитета видеа</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Напредни мени квалитета видеа није приказан</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Омогући превлачење за премотавање</string>
diff --git a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
index a5349d5417..ba32f0299a 100644
--- a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
+++ b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml
@@ -1245,8 +1245,6 @@ Svep för att expandera eller stänga"</string>
<string name="revanced_gradient_loading_screen_title">Aktivera gradient laddar skärmen</string>
<string name="revanced_gradient_loading_screen_summary_on">Laddar skärmen kommer att ha en lutande bakgrund</string>
<string name="revanced_gradient_loading_screen_summary_off">Laddar skärmen kommer att ha en solid bakgrund</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Aktivera anpassad sökfält färg</string>
<string name="revanced_seekbar_custom_color_summary_on">Anpassad sökfält färg visas</string>
<string name="revanced_seekbar_custom_color_summary_off">Original sökfält färg visas</string>
@@ -1360,7 +1358,6 @@ Att aktivera detta kan låsa upp högre videokvalitet"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Videokvalitet</string>
<string name="revanced_video_quality_default_entry_1">Automatiskt</string>
<string name="revanced_remember_video_quality_last_selected_title">Kom ihåg förändringar i videokvaliteten</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitetsändringar gäller för alla videor</string>
@@ -1368,8 +1365,8 @@ Att aktivera detta kan låsa upp högre videokvalitet"</string>
<string name="revanced_video_quality_default_wifi_title">Standard videokvalitet på Wi-Fi-nätverk</string>
<string name="revanced_video_quality_default_mobile_title">Standard videokvalitet på mobilt nätverk</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Kom ihåg kvalitetsändringar för Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitetsändringar gäller alla Shorts-videor</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitetsändringar gäller endast den aktuella Shorts-videon</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kvalitetsändringar gäller alla Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kvalitetsändringar gäller endast aktuell Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Standardkvalitet för Shorts på Wi-Fi-nätverk</string>
<string name="revanced_shorts_quality_default_mobile_title">Standardkvalitet för Shorts på mobilnätverk</string>
<string name="revanced_remember_video_quality_mobile">mobil</string>
@@ -1406,10 +1403,10 @@ Att aktivera detta kan låsa upp högre videokvalitet"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR-video är inaktiverat</string>
<string name="revanced_disable_hdr_video_summary_off">HDR-video är aktiverat</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Återställ gamla videokvalitetsmenyn</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Gammal videokvalitetsmeny visas</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Gamla videokvalitetsmenyn visas inte</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Visa avancerad videokvalitetsmeny</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Avancerad videokvalitetsmeny visas</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Avancerad videokvalitetsmeny visas inte</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Aktivera glid för att söka</string>
diff --git a/patches/src/main/resources/addresources/values-sw-rKE/strings.xml b/patches/src/main/resources/addresources/values-sw-rKE/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-sw-rKE/strings.xml
+++ b/patches/src/main/resources/addresources/values-sw-rKE/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-ta-rIN/strings.xml b/patches/src/main/resources/addresources/values-ta-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ta-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-ta-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-te-rIN/strings.xml b/patches/src/main/resources/addresources/values-te-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-te-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-te-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-th-rTH/strings.xml b/patches/src/main/resources/addresources/values-th-rTH/strings.xml
index 729b65f2a0..c74384bd4f 100644
--- a/patches/src/main/resources/addresources/values-th-rTH/strings.xml
+++ b/patches/src/main/resources/addresources/values-th-rTH/strings.xml
@@ -1244,8 +1244,6 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_gradient_loading_screen_title">เปิดใช้งานหน้าจอโหลดแบบไล่ระดับสี</string>
<string name="revanced_gradient_loading_screen_summary_on">หน้าจอโหลดจะมีพื้นหลังแบบไล่ระดับสี</string>
<string name="revanced_gradient_loading_screen_summary_off">หน้าจอโหลดจะมีพื้นหลังแบบทึบ</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">เปิดใช้งานสีแถบเลื่อนแบบกำหนดเอง</string>
<string name="revanced_seekbar_custom_color_summary_on">แสดงสีแถบเลื่อนแบบกำหนดเอง</string>
<string name="revanced_seekbar_custom_color_summary_off">แสดงสีแถบเลื่อนดั้งเดิม</string>
@@ -1359,7 +1357,6 @@ User id ของคุณเหมือนกับรหัสผ่าน
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">คุณภาพวิดีโอ</string>
<string name="revanced_video_quality_default_entry_1">อัตโนมัติ</string>
<string name="revanced_remember_video_quality_last_selected_title">จำการเปลี่ยนแปลงคุณภาพวิดีโอ</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">การเปลี่ยนแปลงคุณภาพใช้กับวิดีโอทั้งหมด</string>
@@ -1367,8 +1364,8 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_video_quality_default_wifi_title">คุณภาพวิดีโอเริ่มต้นบนเครือข่าย Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">คุณภาพวิดีโอเริ่มต้นบนเครือข่ายมือถือ</string>
<string name="revanced_remember_shorts_quality_last_selected_title">จดจำการเปลี่ยนแปลงคุณภาพของ Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">การเปลี่ยนแปลงคุณภาพมีผลกับวิดีโอ Shorts ทั้งหมด</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">การเปลี่ยนแปลงคุณภาพมีผลกับวิดีโอ Shorts ปัจจุบันเท่านั้น</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">การเปลี่ยนแปลงคุณภาพมีผลกับ Shorts ทั้งหมด</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">การเปลี่ยนแปลงคุณภาพมีผลกับ Short ปัจจุบันเท่านั้น</string>
<string name="revanced_shorts_quality_default_wifi_title">คุณภาพ Shorts เริ่มต้นบนเครือข่าย Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">คุณภาพ Shorts เริ่มต้นบนเครือข่ายมือถือ</string>
<string name="revanced_remember_video_quality_mobile">มือถือ</string>
@@ -1405,10 +1402,10 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_disable_hdr_video_summary_on">ปิดใช้งานวิดีโอ HDR</string>
<string name="revanced_disable_hdr_video_summary_off">เปิดใช้งานวิดีโอ HDR</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">คืนค่าเมนูกำหนดคุณภาพวิดีโอแบบเก่า</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">แสดงเมนูกำหนดคุณภาพวิดีโอแบบเก่า</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">ไม่แสดงเมนูกำหนดคุณภาพวิดีโอแบบเก่า</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">แสดงเมนูคุณภาพวิดีโอขั้นสูง</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">เมนูคุณภาพวิดีโอขั้นสูงปรากฏขึ้น</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">เมนูคุณภาพวิดีโอขั้นสูงไม่ปรากฏ</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">เปิดใช้งานเลื่อนเพื่อค้นหา</string>
diff --git a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
index 10980687df..ba818c1efb 100644
--- a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
+++ b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml
@@ -1246,8 +1246,6 @@ Genişletmek veya kapatmak için kaydırın"</string>
<string name="revanced_gradient_loading_screen_title">Gradyan yükleme ekranını etkinleştir</string>
<string name="revanced_gradient_loading_screen_summary_on">Yükleme ekranı gradyan bir arka plana sahip olacak</string>
<string name="revanced_gradient_loading_screen_summary_off">Yükleme ekranı tek renk bir arka plana sahip olacak</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Özel zaman çubuğu rengini etkinleştir</string>
<string name="revanced_seekbar_custom_color_summary_on">Özel zaman çubuğu rengi gösterilir</string>
<string name="revanced_seekbar_custom_color_summary_off">Orijinal zaman çubuğu rengi gösterilir</string>
@@ -1361,7 +1359,6 @@ Bunu etkinleştirmek daha yüksek video kalitelerini açabilir"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Video kalitesi</string>
<string name="revanced_video_quality_default_entry_1">Oto</string>
<string name="revanced_remember_video_quality_last_selected_title">Video kalitesi değişikliklerini hatırla</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Kalite değişiklikleri tüm videolara uygulanır</string>
@@ -1369,8 +1366,8 @@ Bunu etkinleştirmek daha yüksek video kalitelerini açabilir"</string>
<string name="revanced_video_quality_default_wifi_title">Wi-Fi ağındaki varsayılan video kalitesi</string>
<string name="revanced_video_quality_default_mobile_title">Mobil ağdaki varsayılan video kalitesi</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Shorts kalitesi değişikliklerini hatırla</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kalite değişiklikleri tüm Shorts videolarına uygulanır</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kalite değişiklikleri sadece oynatılan Shorts videosuna uygulanır</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Kalite değişiklikleri tüm Shorts\'lara uygulanır</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Kalite değişiklikleri sadece oynatılan Short\'a uygulanır</string>
<string name="revanced_shorts_quality_default_wifi_title">Wi-Fi ağındaki varsayılan Shorts kalitesi</string>
<string name="revanced_shorts_quality_default_mobile_title">Mobil ağdaki varsayılan Shorts kalitesi</string>
<string name="revanced_remember_video_quality_mobile">mobil ağ</string>
@@ -1407,10 +1404,10 @@ Bunu etkinleştirmek daha yüksek video kalitelerini açabilir"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video devre dışı</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video etkin</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Eski video kalite menüsünü geri getir</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Eski video kalite menüsü gösterilir</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Eski video kalite menüsü gösterilmez</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Gelişmiş video kalitesi menüsünü göster</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Gelişmiş video kalitesi menüsü gösterilir</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Gelişmiş video kalitesi menüsü gösterilmez</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Kaydırarak sardırmayı etkinleştir</string>
diff --git a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
index 31dd6587d9..8643634cf7 100644
--- a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
+++ b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml
@@ -1245,8 +1245,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">Увімкнути градієнт завантаження</string>
<string name="revanced_gradient_loading_screen_summary_on">Екран завантаження макета матиме градієнтне тло</string>
<string name="revanced_gradient_loading_screen_summary_off">Екран завантаження макета матиме суцільне тло</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Увімкнути користувацький колір</string>
<string name="revanced_seekbar_custom_color_summary_on">Показується користувацький колір панелі прогресу</string>
<string name="revanced_seekbar_custom_color_summary_off">Показується оригінальний колір панелі прогресу</string>
@@ -1360,7 +1358,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Якість відео</string>
<string name="revanced_video_quality_default_entry_1">Авто</string>
<string name="revanced_remember_video_quality_last_selected_title">Запам\'ятовувати зміни якості відео</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Зміни якості застосовуються до всіх відео</string>
@@ -1368,8 +1365,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Стандартна якість відео у Wi-Fi мережі</string>
<string name="revanced_video_quality_default_mobile_title">Стандартна якість відео в мобільній мережі</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Запам\'ятовувати зміни якості Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Зміни якості застосовуються до всіх відео Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Зміни якості застосовуються лише до поточного відео Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Зміни якості застосовуються до всіх Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Зміни якості застосовуються лише до поточного Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Стандартна якість Shorts у Wi-Fi мережі</string>
<string name="revanced_shorts_quality_default_mobile_title">Стандартна якість Shorts у мобільній мережі</string>
<string name="revanced_remember_video_quality_mobile">в мобільній мережі</string>
@@ -1406,10 +1403,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR відео вимкнено</string>
<string name="revanced_disable_hdr_video_summary_off">HDR відео увімкнено</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Відновити старе меню якості відео</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Показується старе меню якості відео</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Показується нове меню якості відео</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Показувати розширене меню якості відео</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Розширене меню якості відео показується</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Розширене меню якості відео не показується</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Увімкнути перемотку пересуванням</string>
diff --git a/patches/src/main/resources/addresources/values-ur-rIN/strings.xml b/patches/src/main/resources/addresources/values-ur-rIN/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-ur-rIN/strings.xml
+++ b/patches/src/main/resources/addresources/values-ur-rIN/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-uz-rUZ/strings.xml b/patches/src/main/resources/addresources/values-uz-rUZ/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-uz-rUZ/strings.xml
+++ b/patches/src/main/resources/addresources/values-uz-rUZ/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
diff --git a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
index b01ef16ac3..a587bd5379 100644
--- a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
+++ b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml
@@ -1245,8 +1245,6 @@ Vuốt để mở rộng hoặc đóng"</string>
<string name="revanced_gradient_loading_screen_title">Bật màn hình tải màu dốc</string>
<string name="revanced_gradient_loading_screen_summary_on">Màn hình tải sẽ có một nền màu dốc</string>
<string name="revanced_gradient_loading_screen_summary_off">Màn hình tải sẽ có một nền màu đặc</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">Bật màu tùy chỉnh thanh tiến trình</string>
<string name="revanced_seekbar_custom_color_summary_on">Màu tùy chỉnh thanh tiến trình được hiện </string>
<string name="revanced_seekbar_custom_color_summary_off">Màu gốc thanh tiến trình được hiện </string>
@@ -1360,7 +1358,6 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">Chất lượng Video</string>
<string name="revanced_video_quality_default_entry_1">Tự động</string>
<string name="revanced_remember_video_quality_last_selected_title">Nhớ các thay đổi chất lượng video</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">Thay đổi chất lượng áp dụng cho tất cả video</string>
@@ -1368,8 +1365,8 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_video_quality_default_wifi_title">Chất lượng mặc định trên mạng Wi-Fi</string>
<string name="revanced_video_quality_default_mobile_title">Chất lượng mặc định trên mạng di động</string>
<string name="revanced_remember_shorts_quality_last_selected_title">Ghi nhớ các thay đổi chất lượng Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">Thay đổi chất lượng áp dụng cho tất cả video Shorts</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">Thay đổi chất lượng chỉ áp dụng cho video Shorts hiện tại</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">Thay đổi chất lượng áp dụng cho tất cả nội dung Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">Thay đổi chất lượng chỉ áp dụng cho Short hiện tại</string>
<string name="revanced_shorts_quality_default_wifi_title">Chất lượng Shorts mặc định trên mạng Wi-Fi</string>
<string name="revanced_shorts_quality_default_mobile_title">Chất lượng Shorts mặc định trên mạng di động</string>
<string name="revanced_remember_video_quality_mobile">di động</string>
@@ -1406,10 +1403,10 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_disable_hdr_video_summary_on">Video HDR đã bị tắt</string>
<string name="revanced_disable_hdr_video_summary_off">Video HDR đã được bật</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">Khôi phục trình đơn chất lượng video kiểu cũ</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">Trình đơn chất lượng video kiểu cũ được hiện</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">Trình đơn chất lượng video kiểu cũ không được hiện</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">Hiển thị trình đơn chất lượng video nâng cao</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">Trình đơn chất lượng video nâng cao được hiển thị</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">Trình đơn chất lượng video nâng cao không được hiển thị</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">Bật vuốt để tua</string>
diff --git a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
index 4d4c3acb83..b79f734d4f 100644
--- a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
+++ b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml
@@ -1250,8 +1250,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">启用渐变加载屏幕</string>
<string name="revanced_gradient_loading_screen_summary_on">加载屏幕将具有渐变背景</string>
<string name="revanced_gradient_loading_screen_summary_off">加载屏幕将具有纯色背景</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">启用自定义进度条颜色</string>
<string name="revanced_seekbar_custom_color_summary_on">自定义进度条颜色显示</string>
<string name="revanced_seekbar_custom_color_summary_off">显示原始进度条颜色</string>
@@ -1365,7 +1363,6 @@ Second \"item\" text"</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as revanced_custom_playback_speeds_auto -->
- <string name="revanced_video_quality_screen_title">视频画质</string>
<string name="revanced_video_quality_default_entry_1">自动</string>
<string name="revanced_remember_video_quality_last_selected_title">记住视频质量更改</string>
<string name="revanced_remember_video_quality_last_selected_summary_on">质量更改适用于所有视频</string>
@@ -1373,8 +1370,8 @@ Second \"item\" text"</string>
<string name="revanced_video_quality_default_wifi_title">Wi-Fi 网络上的默认视频质量</string>
<string name="revanced_video_quality_default_mobile_title">移动网络上的默认视频质量</string>
<string name="revanced_remember_shorts_quality_last_selected_title">记住 Shorts 画质更改</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_on">画质更改将应用于所有 Shorts 视频</string>
- <string name="revanced_remember_shorts_quality_last_selected_summary_off">画质更改仅应用于当前的 Shorts 视频</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_on">质量更改适用于所有 Shorts</string>
+ <string name="revanced_remember_shorts_quality_last_selected_summary_off">质量更改仅适用于当前的 Short</string>
<string name="revanced_shorts_quality_default_wifi_title">Wi-Fi 网络上的默认 Shorts 画质</string>
<string name="revanced_shorts_quality_default_mobile_title">移动网络上的默认 Shorts 画质</string>
<string name="revanced_remember_video_quality_mobile">移动网络</string>
@@ -1411,10 +1408,10 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">HDR 视频已禁用</string>
<string name="revanced_disable_hdr_video_summary_off">HDR 视频已启用</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">恢复旧的画质菜单</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">旧的画质菜单已显示</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">旧的画质菜单未显示</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
+ <string name="revanced_advanced_video_quality_menu_title">显示高级视频质量菜单</string>
+ <string name="revanced_advanced_video_quality_menu_summary_on">显示高级视频质量菜单</string>
+ <string name="revanced_advanced_video_quality_menu_summary_off">不显示高级视频质量菜单</string>
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">启用滑动拖动进度条</string>
diff --git a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
index ea8e47b191..4fb8131dc3 100644
--- a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
+++ b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml
@@ -1231,8 +1231,6 @@ Second \"item\" text"</string>
<string name="revanced_gradient_loading_screen_title">啟用漸層載入畫面</string>
<string name="revanced_gradient_loading_screen_summary_on">載入畫面將具有漸層背景</string>
<string name="revanced_gradient_loading_screen_summary_off">載入畫面將具有純色背景</string>
- </patch>
- <patch id="layout.theme.themeResourcePatch">
<string name="revanced_seekbar_custom_color_title">啟用自訂跳轉列顏色</string>
<string name="revanced_seekbar_custom_color_summary_on">已顯示自訂跳轉列顏色</string>
<string name="revanced_seekbar_custom_color_summary_off">已顯示原版跳轉列顏色</string>
@@ -1387,10 +1385,7 @@ Second \"item\" text"</string>
<string name="revanced_disable_hdr_video_summary_on">已停用 HDR 影片</string>
<string name="revanced_disable_hdr_video_summary_off">已啟用 HDR 影片</string>
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
- <string name="revanced_restore_old_video_quality_menu_title">還原舊版影片畫質選單</string>
- <string name="revanced_restore_old_video_quality_menu_summary_on">已顯示舊版影片畫質選單</string>
- <string name="revanced_restore_old_video_quality_menu_summary_off">不顯示舊版影片畫質選單</string>
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
<string name="revanced_slide_to_seek_title">啟用滑動預覽</string>
diff --git a/patches/src/main/resources/addresources/values-zu-rZA/strings.xml b/patches/src/main/resources/addresources/values-zu-rZA/strings.xml
index a3d15ba7d4..ca8788fa6d 100644
--- a/patches/src/main/resources/addresources/values-zu-rZA/strings.xml
+++ b/patches/src/main/resources/addresources/values-zu-rZA/strings.xml
@@ -177,8 +177,6 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.theme.themePatch">
</patch>
- <patch id="layout.theme.themeResourcePatch">
- </patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
</patch>
<patch id="layout.thumbnails.alternativeThumbnailsPatch">
@@ -219,7 +217,7 @@ Second \"item\" text"</string>
</patch>
<patch id="video.hdr.disableHdrPatch">
</patch>
- <patch id="video.videoqualitymenu.restoreOldVideoQualityMenuResourcePatch">
+ <patch id="video.quality.advancedVideoQualityMenuPatch">
</patch>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
|
chore
|
Sync translations (#4556)
|
ff7a5602f68428111fea6c60cbea694592039ef1
|
2022-06-20 22:47:54
|
MedzikUser
|
fix: add execute permission to `./gradlew` file
| false
|
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 42c0a35f2f..8995862fbb 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -30,8 +30,6 @@ jobs:
node-version: "lts/*"
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- - name: Make gradlew executable
- run: chmod +x gradlew
- name: Build with Gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/gradlew b/gradlew
old mode 100644
new mode 100755
|
fix
|
add execute permission to `./gradlew` file
|
fcd7e94c1bc8d4cad789e6fa347f5195d7f7826f
|
2024-06-01 15:01:24
|
semantic-release-bot
|
chore(release): 4.9.0-dev.2 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6ecfb1b720..49633f5047 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.9.0-dev.2](https://github.com/ReVanced/revanced-patches/compare/v4.9.0-dev.1...v4.9.0-dev.2) (2024-06-01)
+
+
+### Bug Fixes
+
+* **YouTube - Spoof client:** Allow swipe gestures to enter/exit fullscreen when spoofing with `Android VR` client ([#3259](https://github.com/ReVanced/revanced-patches/issues/3259)) ([5114900](https://github.com/ReVanced/revanced-patches/commit/5114900b1b5572c04ba6759eedab77f0a934b058))
+
# [4.9.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v4.8.3...v4.9.0-dev.1) (2024-05-31)
diff --git a/gradle.properties b/gradle.properties
index b5433d05f1..a4543f86c2 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.9.0-dev.1
+version = 4.9.0-dev.2
|
chore
|
4.9.0-dev.2 [skip ci]
|
cd51c7195fd1d2953c855ce8da0359539aa6470b
|
2022-11-29 06:16:01
|
semantic-release-bot
|
chore(release): 2.130.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0225101ff3..bd2743d6c6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.130.0](https://github.com/revanced/revanced-patches/compare/v2.129.0...v2.130.0) (2022-11-29)
+
+
+### Features
+
+* **youtube/enable-wide-searchbar:** bump compatibility to v17.45.36 ([66ce54c](https://github.com/revanced/revanced-patches/commit/66ce54c9921e6fbf5bbe52d73b0182352181f2b8))
+
# [2.129.0](https://github.com/revanced/revanced-patches/compare/v2.128.0...v2.129.0) (2022-11-28)
diff --git a/README.md b/README.md
index eb6afb83a8..48eee4d1f6 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@ The official Patch bundle provided by ReVanced and the community.
| `hide-crowdfunding-box` | Hides the crowdfunding box between the player and video description. | 17.45.36 |
| `hide-time-and-seekbar` | Hides progress bar and time counter on videos. | 17.45.36 |
| `hide-video-buttons` | Adds options to hide action buttons under a video. | 17.45.36 |
-| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.43.36 |
+| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.45.36 |
| `hide-captions-button` | Hides the captions button on video player. | 17.45.36 |
| `hide-shorts-button` | Hides the shorts button on the navigation bar. | 17.45.36 |
| `hide-create-button` | Hides the create button in the navigation bar. | 17.45.36 |
diff --git a/gradle.properties b/gradle.properties
index 01e06baa64..3f6cd8bdee 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.129.0
+version = 2.130.0
diff --git a/patches.json b/patches.json
index c574cad3ef..b91340c300 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"settings","description":"Adds settings for ReVanced to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.34.36","17.36.37","17.36.39","17.38.36","17.39.35","17.40.41","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":true,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","fix-playback"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"open-links-directly","description":"Bypasses redirect links and allows opening links directly.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.34.36","17.36.39","17.38.36","17.39.35","17.40.41","17.42.35","17.43.36","17.45.36"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"enable-downloads","description":"Enables downloads for Crunchyroll.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.crunchyroll.crunchyroid","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]}]
\ No newline at end of file
+[{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"settings","description":"Adds settings for ReVanced to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.34.36","17.36.37","17.36.39","17.38.36","17.39.35","17.40.41","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":true,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","fix-playback"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"open-links-directly","description":"Bypasses redirect links and allows opening links directly.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.34.36","17.36.39","17.38.36","17.39.35","17.40.41","17.42.35","17.43.36","17.45.36"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.36.37","17.41.37","17.42.35","17.43.36","17.45.36"]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"enable-downloads","description":"Enables downloads for Crunchyroll.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.crunchyroll.crunchyroid","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]}]
\ No newline at end of file
|
chore
|
2.130.0 [skip ci]
|
d42fbb152126cf2177315c4706fb03bc89f5af1c
|
2024-05-21 07:06:53
|
oSumAtrIX
|
fix: Use UrlDecoder API available in older Android versions
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/shared/misc/integrations/BaseIntegrationsPatch.kt b/src/main/kotlin/app/revanced/patches/shared/misc/integrations/BaseIntegrationsPatch.kt
index 0178ed5af6..bd371c4a46 100644
--- a/src/main/kotlin/app/revanced/patches/shared/misc/integrations/BaseIntegrationsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/misc/integrations/BaseIntegrationsPatch.kt
@@ -14,7 +14,6 @@ import com.android.tools.smali.dexlib2.Opcode
import com.android.tools.smali.dexlib2.iface.ClassDef
import com.android.tools.smali.dexlib2.iface.Method
import java.net.URLDecoder
-import java.nio.charset.StandardCharsets
import java.util.jar.JarFile
abstract class BaseIntegrationsPatch(
@@ -77,7 +76,8 @@ abstract class BaseIntegrationsPatch(
if (urlString.startsWith("jar:file:")) {
val end = urlString.lastIndexOf('!')
- return URLDecoder.decode(urlString.substring("jar:file:".length, end), StandardCharsets.UTF_8)
+
+ return URLDecoder.decode(urlString.substring("jar:file:".length, end), "UTF-8")
}
}
throw IllegalStateException("Not running from inside a JAR file.")
|
fix
|
Use UrlDecoder API available in older Android versions
|
8a4e77a290a61a1caf93eb8bccaf728c84a3ef53
|
2023-07-21 03:40:48
|
oSumAtrIX
|
fix(YouTube - Theme): allow setting no background color
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
index be4d004a41..9bafb41780 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/resource/ThemeResourcePatch.kt
@@ -45,8 +45,8 @@ class ThemeResourcePatch : ResourcePatch {
node.textContent = when (node.getAttribute("name")) {
"yt_black0", "yt_black1", "yt_black1_opacity95", "yt_black1_opacity98", "yt_black2", "yt_black3",
- "yt_black4", "yt_status_bar_background_dark", "material_grey_850" -> darkThemeBackgroundColor
- ?: continue
+ "yt_black4", "yt_status_bar_background_dark", "material_grey_850"
+ -> darkThemeBackgroundColor ?: continue
"yt_white1", "yt_white1_opacity95", "yt_white1_opacity98",
"yt_white2", "yt_white3", "yt_white4",
@@ -58,10 +58,13 @@ class ThemeResourcePatch : ResourcePatch {
}
// Add a dynamic background color to the colors.xml file.
- addResourceColor(context, "res/values/colors.xml",
- SPLASH_BACKGROUND_COLOR, lightThemeBackgroundColor!!)
- addResourceColor(context, "res/values-night/colors.xml",
- SPLASH_BACKGROUND_COLOR, darkThemeBackgroundColor!!)
+ lightThemeBackgroundColor?.let {
+ addColorResource(context, "res/values/colors.xml", SPLASH_BACKGROUND_COLOR, it)
+ }
+
+ darkThemeBackgroundColor?.let {
+ addColorResource(context, "res/values-night/colors.xml", SPLASH_BACKGROUND_COLOR, it)
+ }
// Edit splash screen files and change the background color.
val splashScreenResourceFiles = listOf(
@@ -87,7 +90,7 @@ class ThemeResourcePatch : ResourcePatch {
return PatchResultSuccess()
}
- private fun addResourceColor(
+ private fun addColorResource(
context: ResourceContext,
resourceFile: String,
colorName: String,
|
fix
|
allow setting no background color
|
26a04b36a11e806cb824cd7f244d401a31f48d79
|
2024-10-17 21:00:41
|
semantic-release-bot
|
chore: Release v4.17.0-dev.9 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6a7714c9b..ff92f0c66e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.17.0-dev.9](https://github.com/ReVanced/revanced-patches/compare/v4.17.0-dev.8...v4.17.0-dev.9) (2024-10-17)
+
+
+### Features
+
+* **Sync for Reddit:** Add `Fix video downloads` patch ([#3739](https://github.com/ReVanced/revanced-patches/issues/3739)) ([a47ee38](https://github.com/ReVanced/revanced-patches/commit/a47ee38b1cdd974a959008006ecaf58917addc60))
+
# [4.17.0-dev.8](https://github.com/ReVanced/revanced-patches/compare/v4.17.0-dev.7...v4.17.0-dev.8) (2024-10-17)
diff --git a/gradle.properties b/gradle.properties
index 2ff56b5d3c..5a62a4b223 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.17.0-dev.8
+version = 4.17.0-dev.9
|
chore
|
Release v4.17.0-dev.9 [skip ci]
|
f3268fb03ca25fb5465e36015b6c9dec2c84a655
|
2025-02-27 11:37:54
|
Jasper Abbink
|
feat(NU.nl): Add `Hide ads` and `Spoof Certificate` patch (#4368)
| false
|
diff --git a/extensions/nunl/build.gradle.kts b/extensions/nunl/build.gradle.kts
new file mode 100644
index 0000000000..6020de901a
--- /dev/null
+++ b/extensions/nunl/build.gradle.kts
@@ -0,0 +1,4 @@
+dependencies {
+ compileOnly(project(":extensions:shared:library"))
+ compileOnly(project(":extensions:nunl:stub"))
+}
diff --git a/extensions/nunl/src/main/AndroidManifest.xml b/extensions/nunl/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..9b65eb06cf
--- /dev/null
+++ b/extensions/nunl/src/main/AndroidManifest.xml
@@ -0,0 +1 @@
+<manifest/>
diff --git a/extensions/nunl/src/main/java/app/revanced/extension/nunl/ads/HideAdsPatch.java b/extensions/nunl/src/main/java/app/revanced/extension/nunl/ads/HideAdsPatch.java
new file mode 100644
index 0000000000..fb3cd0c547
--- /dev/null
+++ b/extensions/nunl/src/main/java/app/revanced/extension/nunl/ads/HideAdsPatch.java
@@ -0,0 +1,114 @@
+package app.revanced.extension.nunl.ads;
+
+import nl.nu.performance.api.client.interfaces.Block;
+import nl.nu.performance.api.client.unions.SmallArticleLinkFlavor;
+import nl.nu.performance.api.client.objects.*;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import app.revanced.extension.shared.Logger;
+
+@SuppressWarnings("unused")
+public class HideAdsPatch {
+ private static final String[] blockedHeaderBlocks = {
+ "Aanbiedingen (Adverteerders)",
+ "Aangeboden door NUshop"
+ };
+
+ // "Rubrieken" menu links to ads.
+ private static final String[] blockedLinkBlocks = {
+ "Van onze adverteerders"
+ };
+
+ public static void filterAds(List<Block> blocks) {
+ try {
+ ArrayList<Block> cleanedList = new ArrayList<>();
+
+ boolean skipFullHeader = false;
+ boolean skipUntilDivider = false;
+
+ int index = 0;
+ while (index < blocks.size()) {
+ Block currentBlock = blocks.get(index);
+
+ // Because of pagination, we might not see the Divider in front of it.
+ // Just remove it as is and leave potential extra spacing visible on the screen.
+ if (currentBlock instanceof DpgBannerBlock) {
+ index++;
+ continue;
+ }
+
+ if (index + 1 < blocks.size()) {
+ // Filter Divider -> DpgMediaBanner -> Divider.
+ if (currentBlock instanceof DividerBlock
+ && blocks.get(index + 1) instanceof DpgBannerBlock) {
+ index += 2;
+ continue;
+ }
+
+ // Filter Divider -> LinkBlock (... -> LinkBlock -> LinkBlock-> LinkBlock -> Divider).
+ if (currentBlock instanceof DividerBlock
+ && blocks.get(index + 1) instanceof LinkBlock linkBlock) {
+ Link link = linkBlock.getLink();
+ if (link != null && link.getTitle() != null) {
+ for (String blockedLinkBlock : blockedLinkBlocks) {
+ if (blockedLinkBlock.equals(link.getTitle().getText())) {
+ skipUntilDivider = true;
+ break;
+ }
+ }
+ if (skipUntilDivider) {
+ index++;
+ continue;
+ }
+ }
+ }
+ }
+
+ // Skip LinkBlocks with a "flavor" claiming to be "isPartner" (sponsored inline ads).
+ if (currentBlock instanceof LinkBlock linkBlock
+ && linkBlock.getLink() != null
+ && linkBlock.getLink().getLinkFlavor() instanceof SmallArticleLinkFlavor smallArticleLinkFlavor
+ && smallArticleLinkFlavor.isPartner() != null
+ && smallArticleLinkFlavor.isPartner()) {
+ index++;
+ continue;
+ }
+
+ if (currentBlock instanceof DividerBlock) {
+ skipUntilDivider = false;
+ }
+
+ // Filter HeaderBlock with known ads until next HeaderBlock.
+ if (currentBlock instanceof HeaderBlock headerBlock) {
+ StyledText headerText = headerBlock.component20();
+ if (headerText != null) {
+ skipFullHeader = false;
+ for (String blockedHeaderBlock : blockedHeaderBlocks) {
+ if (blockedHeaderBlock.equals(headerText.getText())) {
+ skipFullHeader = true;
+ break;
+ }
+ }
+ if (skipFullHeader) {
+ index++;
+ continue;
+ }
+ }
+ }
+
+ if (!skipFullHeader && !skipUntilDivider) {
+ cleanedList.add(currentBlock);
+ }
+ index++;
+ }
+
+ // Replace list in-place to not deal with moving the result to the correct register in smali.
+ blocks.clear();
+ blocks.addAll(cleanedList);
+ } catch (Exception ex) {
+ Logger.printException(() -> "filterAds failure", ex);
+ }
+ }
+}
diff --git a/extensions/nunl/stub/build.gradle.kts b/extensions/nunl/stub/build.gradle.kts
new file mode 100644
index 0000000000..a8da923ed4
--- /dev/null
+++ b/extensions/nunl/stub/build.gradle.kts
@@ -0,0 +1,17 @@
+plugins {
+ id(libs.plugins.android.library.get().pluginId)
+}
+
+android {
+ namespace = "app.revanced.extension"
+ compileSdk = 34
+
+ defaultConfig {
+ minSdk = 26
+ }
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+ }
+}
diff --git a/extensions/nunl/stub/src/main/AndroidManifest.xml b/extensions/nunl/stub/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..9b65eb06cf
--- /dev/null
+++ b/extensions/nunl/stub/src/main/AndroidManifest.xml
@@ -0,0 +1 @@
+<manifest/>
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/interfaces/Block.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/interfaces/Block.java
new file mode 100644
index 0000000000..3514f360cb
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/interfaces/Block.java
@@ -0,0 +1,5 @@
+package nl.nu.performance.api.client.interfaces;
+
+public class Block {
+
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DividerBlock.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DividerBlock.java
new file mode 100644
index 0000000000..0351aec049
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DividerBlock.java
@@ -0,0 +1,7 @@
+package nl.nu.performance.api.client.objects;
+
+import nl.nu.performance.api.client.interfaces.Block;
+
+public class DividerBlock extends Block {
+
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DpgBannerBlock.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DpgBannerBlock.java
new file mode 100644
index 0000000000..ac300b0539
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/DpgBannerBlock.java
@@ -0,0 +1,7 @@
+package nl.nu.performance.api.client.objects;
+
+import nl.nu.performance.api.client.interfaces.Block;
+
+public class DpgBannerBlock extends Block {
+
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/HeaderBlock.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/HeaderBlock.java
new file mode 100644
index 0000000000..f946b54dae
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/HeaderBlock.java
@@ -0,0 +1,10 @@
+package nl.nu.performance.api.client.objects;
+
+import nl.nu.performance.api.client.interfaces.Block;
+
+public class HeaderBlock extends Block {
+ // returns title
+ public final StyledText component20() {
+ throw new UnsupportedOperationException("Stub");
+ }
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/Link.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/Link.java
new file mode 100644
index 0000000000..771d11dad1
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/Link.java
@@ -0,0 +1,13 @@
+package nl.nu.performance.api.client.objects;
+
+import nl.nu.performance.api.client.unions.LinkFlavor;
+
+public class Link {
+ public final StyledText getTitle() {
+ throw new UnsupportedOperationException("Stub");
+ }
+
+ public final LinkFlavor getLinkFlavor() {
+ throw new UnsupportedOperationException("Stub");
+ }
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/LinkBlock.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/LinkBlock.java
new file mode 100644
index 0000000000..dea1950573
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/LinkBlock.java
@@ -0,0 +1,10 @@
+package nl.nu.performance.api.client.objects;
+
+import android.os.Parcelable;
+import nl.nu.performance.api.client.interfaces.Block;
+
+public abstract class LinkBlock extends Block implements Parcelable {
+ public final Link getLink() {
+ throw new UnsupportedOperationException("Stub");
+ }
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/StyledText.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/StyledText.java
new file mode 100644
index 0000000000..719403eb4e
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/objects/StyledText.java
@@ -0,0 +1,7 @@
+package nl.nu.performance.api.client.objects;
+
+public class StyledText {
+ public final String getText() {
+ throw new UnsupportedOperationException("Stub");
+ }
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/LinkFlavor.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/LinkFlavor.java
new file mode 100644
index 0000000000..08413d3fd9
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/LinkFlavor.java
@@ -0,0 +1,4 @@
+package nl.nu.performance.api.client.unions;
+
+public interface LinkFlavor {
+}
diff --git a/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/SmallArticleLinkFlavor.java b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/SmallArticleLinkFlavor.java
new file mode 100644
index 0000000000..4dcbf23cb9
--- /dev/null
+++ b/extensions/nunl/stub/src/main/java/nl/nu/performance/api/client/unions/SmallArticleLinkFlavor.java
@@ -0,0 +1,7 @@
+package nl.nu.performance.api.client.unions;
+
+public class SmallArticleLinkFlavor implements LinkFlavor {
+ public final Boolean isPartner() {
+ throw new UnsupportedOperationException("Stub");
+ }
+}
diff --git a/patches/api/patches.api b/patches/api/patches.api
index 2ac53b5456..ef27029849 100644
--- a/patches/api/patches.api
+++ b/patches/api/patches.api
@@ -348,6 +348,14 @@ public final class app/revanced/patches/nfctoolsse/misc/pro/UnlockProPatchKt {
public static final fun getUnlockProPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
+public final class app/revanced/patches/nunl/ads/HideAdsPatchKt {
+ public static final fun getHideAdsPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
+public final class app/revanced/patches/nunl/firebase/SpoofCertificatePatchKt {
+ public static final fun getSpoofCertificatePatch ()Lapp/revanced/patcher/patch/BytecodePatch;
+}
+
public final class app/revanced/patches/nyx/misc/pro/UnlockProPatchKt {
public static final fun getUnlockProPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Fingerprints.kt b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Fingerprints.kt
new file mode 100644
index 0000000000..8332f2f248
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Fingerprints.kt
@@ -0,0 +1,44 @@
+package app.revanced.patches.nunl.ads
+
+import app.revanced.patcher.fingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+internal val jwUtilCreateAdvertisementFingerprint = fingerprint {
+ accessFlags(AccessFlags.PRIVATE, AccessFlags.STATIC)
+ custom { methodDef, classDef ->
+ classDef.type == "Lnl/sanomamedia/android/nu/video/util/JWUtil;" && methodDef.name == "createAdvertising"
+ }
+}
+
+internal val screenMapperFingerprint = fingerprint {
+ accessFlags(AccessFlags.PUBLIC, AccessFlags.FINAL)
+ returns("Lnl/nu/android/bff/domain/models/screen/ScreenEntity;")
+ parameters("Lnl/nu/performance/api/client/objects/Screen;")
+
+ opcodes(
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.IF_EQZ,
+ Opcode.CHECK_CAST
+ )
+
+ custom { methodDef, classDef ->
+ classDef.type == "Lnl/nu/android/bff/data/mappers/ScreenMapper;" && methodDef.name == "map"
+ }
+}
+
+internal val nextPageRepositoryImplFingerprint = fingerprint {
+ accessFlags(AccessFlags.PRIVATE, AccessFlags.FINAL)
+ returns("Lnl/nu/android/bff/domain/models/Page;")
+ parameters("Lnl/nu/performance/api/client/PacResponse;", "Ljava/lang/String;")
+
+ opcodes(
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.IF_EQZ,
+ Opcode.CHECK_CAST
+ )
+
+ custom { methodDef, classDef ->
+ classDef.type == "Lnl/nu/android/bff/data/repositories/NextPageRepositoryImpl;" && methodDef.name == "mapToPage"
+ }
+}
diff --git a/patches/src/main/kotlin/app/revanced/patches/nunl/ads/HideAdsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/HideAdsPatch.kt
new file mode 100644
index 0000000000..c09ce25e99
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/HideAdsPatch.kt
@@ -0,0 +1,51 @@
+package app.revanced.patches.nunl.ads
+
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.patch.bytecodePatch
+import app.revanced.patches.shared.misc.extension.sharedExtensionPatch
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
+
+@Suppress("unused")
+val hideAdsPatch = bytecodePatch(
+ name = "Hide ads",
+ description = "Hide ads and sponsored articles in list pages and remove pre-roll ads on videos.",
+) {
+ compatibleWith("nl.sanomamedia.android.nu"("11.0.0", "11.0.1", "11.1.0"))
+
+ dependsOn(sharedExtensionPatch("nunl", mainActivityOnCreateHook))
+
+ execute {
+ // Disable video pre-roll ads.
+ // Whenever the app tries to create an ad via JWUtils.createAdvertising, don't actually tell the underlying JWPlayer library to do so => JWPlayer will not display ads.
+ jwUtilCreateAdvertisementFingerprint.method.addInstructions(
+ 0,
+ """
+ new-instance v0, Lcom/jwplayer/pub/api/configuration/ads/VastAdvertisingConfig${'$'}Builder;
+ invoke-direct { v0 }, Lcom/jwplayer/pub/api/configuration/ads/VastAdvertisingConfig${'$'}Builder;-><init>()V
+ invoke-virtual { v0 }, Lcom/jwplayer/pub/api/configuration/ads/VastAdvertisingConfig${'$'}Builder;->build()Lcom/jwplayer/pub/api/configuration/ads/VastAdvertisingConfig;
+ move-result-object v0
+ return-object v0
+ """,
+ )
+
+ // Filter injected content from API calls out of lists.
+ arrayOf(screenMapperFingerprint, nextPageRepositoryImplFingerprint).forEach {
+ // Index of instruction moving result of BlockPage;->getBlocks(...).
+ val moveGetBlocksResultObjectIndex = it.patternMatch!!.startIndex
+ it.method.apply {
+ val moveInstruction = getInstruction<OneRegisterInstruction>(moveGetBlocksResultObjectIndex)
+
+ val listRegister = moveInstruction.registerA
+
+ // Add instruction after moving List<Block> to register and then filter this List<Block> in place.
+ addInstructions(
+ moveGetBlocksResultObjectIndex + 1,
+ """
+ invoke-static { v$listRegister }, Lapp/revanced/extension/nunl/ads/HideAdsPatch;->filterAds(Ljava/util/List;)V
+ """,
+ )
+ }
+ }
+ }
+}
diff --git a/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Hooks.kt b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Hooks.kt
new file mode 100644
index 0000000000..9a2e28bcae
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/nunl/ads/Hooks.kt
@@ -0,0 +1,9 @@
+package app.revanced.patches.nunl.ads
+
+import app.revanced.patches.shared.misc.extension.extensionHook
+
+internal val mainActivityOnCreateHook = extensionHook {
+ custom { method, classDef ->
+ classDef.type == "Lnl/sanomamedia/android/nu/main/NUMainActivity;" && method.name == "onCreate"
+ }
+}
diff --git a/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/Fingerprints.kt b/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/Fingerprints.kt
new file mode 100644
index 0000000000..490819a4b3
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/Fingerprints.kt
@@ -0,0 +1,20 @@
+package app.revanced.patches.nunl.firebase
+
+import app.revanced.patcher.fingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+
+internal val getFingerprintHashForPackageFingerprints = arrayOf(
+ "Lcom/google/firebase/installations/remote/FirebaseInstallationServiceClient;",
+ "Lcom/google/firebase/remoteconfig/internal/ConfigFetchHttpClient;",
+ "Lcom/google/firebase/remoteconfig/internal/ConfigRealtimeHttpClient;"
+).map { className ->
+ fingerprint {
+ accessFlags(AccessFlags.PRIVATE)
+ parameters()
+ returns("Ljava/lang/String;")
+
+ custom { methodDef, classDef ->
+ classDef.type == className && methodDef.name == "getFingerprintHashForPackage"
+ }
+ }
+}
diff --git a/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/SpoofCertificatePatch.kt b/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/SpoofCertificatePatch.kt
new file mode 100644
index 0000000000..b872112514
--- /dev/null
+++ b/patches/src/main/kotlin/app/revanced/patches/nunl/firebase/SpoofCertificatePatch.kt
@@ -0,0 +1,24 @@
+package app.revanced.patches.nunl.firebase
+
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.patch.bytecodePatch
+
+@Suppress("unused")
+val spoofCertificatePatch = bytecodePatch(
+ name = "Spoof certificate",
+ description = "Spoofs the X-Android-Cert header to allow push messages.",
+) {
+ compatibleWith("nl.sanomamedia.android.nu")
+
+ execute {
+ getFingerprintHashForPackageFingerprints.forEach { fingerprint ->
+ fingerprint.method.addInstructions(
+ 0,
+ """
+ const-string v0, "eae41fc018df2731a9b6ae1ac327da44a288667b"
+ return-object v0
+ """,
+ )
+ }
+ }
+}
|
feat
|
Add `Hide ads` and `Spoof Certificate` patch (#4368)
|
9feded3b41e257eae1c8d46f1afa1085a8861646
|
2022-07-03 04:31:20
|
semantic-release-bot
|
chore(release): 2.6.0-dev.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 046458fcca..a1498e4793 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.6.0-dev.1](https://github.com/revanced/revanced-patches/compare/v2.5.1-dev.1...v2.6.0-dev.1) (2022-07-02)
+
+
+### Features
+
+* migrate to breaking changes of patcher ([a116852](https://github.com/revanced/revanced-patches/commit/a11685263fb2274c67684258e73c5247502cb010))
+
## [2.5.1-dev.1](https://github.com/revanced/revanced-patches/compare/v2.5.0...v2.5.1-dev.1) (2022-06-30)
diff --git a/gradle.properties b/gradle.properties
index e603c0d6f0..030dc4a836 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.5.1-dev.1
+version = 2.6.0-dev.1
|
chore
|
2.6.0-dev.1 [skip ci]
|
da7931291d468e0d8ef4a4c37df67051d0581a68
|
2024-11-24 10:23:48
|
semantic-release-bot
|
chore: Release v5.1.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c294e2c9b..d662cf7976 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+# [5.1.0](https://github.com/ReVanced/revanced-patches/compare/v5.0.2...v5.1.0) (2024-11-24)
+
+
+### Bug Fixes
+
+* **YouTube - Change header:** Apply header changes to A/B layout ([#3907](https://github.com/ReVanced/revanced-patches/issues/3907)) ([6ccf114](https://github.com/ReVanced/revanced-patches/commit/6ccf11426ec9e9cd9c8e89a2443f0d0645cc78b1))
+* **YouTube - Hide Shorts components:** Do not hide Shorts action buttons on app first launch ([#3933](https://github.com/ReVanced/revanced-patches/issues/3933)) ([0d78815](https://github.com/ReVanced/revanced-patches/commit/0d78815e33bf2ae216e519f067fb773df0f2084e))
+* **YouTube - Playback speed:** Add 'Auto' speed. Always override speed if default is set to 1.0x ([#3914](https://github.com/ReVanced/revanced-patches/issues/3914)) ([497739e](https://github.com/ReVanced/revanced-patches/commit/497739e8ce6933c1f1ea46edffc102e56b985623))
+* **YouTube - SponsorBlock:** Fix create new segment crash on tablet custom roms ([#3946](https://github.com/ReVanced/revanced-patches/issues/3946)) ([a0da377](https://github.com/ReVanced/revanced-patches/commit/a0da377ba8f90ba39e905ed9730b3e819633bd50))
+* **YouTube - Spoof app version:** Adjust legacy spoof targets ([#3934](https://github.com/ReVanced/revanced-patches/issues/3934)) ([f5794c1](https://github.com/ReVanced/revanced-patches/commit/f5794c1f896c331d76fdfc299e31a2773f2209ca))
+* **YouTube - Spoof app version:** Remove broken spoof targets when patching 19.25+ ([#3915](https://github.com/ReVanced/revanced-patches/issues/3915)) ([9e18eca](https://github.com/ReVanced/revanced-patches/commit/9e18ecab1877dd33a3ad0fe216e6b91a8daaf1f8))
+
+
+### Features
+
+* **YouTube - Miniplayer:** Add option to disable miniplayer ([#3961](https://github.com/ReVanced/revanced-patches/issues/3961)) ([e565cdb](https://github.com/ReVanced/revanced-patches/commit/e565cdb583aacfc0052d12c430f56fd9abd5bf00))
+* **YouTube:** Support version `19.45.38` ([#3938](https://github.com/ReVanced/revanced-patches/issues/3938)) ([7c4e3fe](https://github.com/ReVanced/revanced-patches/commit/7c4e3fe97e8cbbb8cf16a2fb95f64223ca2bd7ef))
+
# [5.1.0-dev.3](https://github.com/ReVanced/revanced-patches/compare/v5.1.0-dev.2...v5.1.0-dev.3) (2024-11-22)
diff --git a/gradle.properties b/gradle.properties
index 03cbb680f1..5b4b1aa298 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.1.0-dev.3
+version = 5.1.0
|
chore
|
Release v5.1.0 [skip ci]
|
6bd22ffa7e8af4d8f5d2d3b1711bd92c44b4e4aa
|
2024-12-10 02:16:53
|
LisoUseInAIKyrios
|
fix(TikTok - Settings): Use correct colors for dark mode (#4087)
| false
|
diff --git a/extensions/shared/library/src/main/java/app/revanced/extension/shared/Utils.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/Utils.java
index aed89670ce..13ad92d8ef 100644
--- a/extensions/shared/library/src/main/java/app/revanced/extension/shared/Utils.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/Utils.java
@@ -6,6 +6,7 @@
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
+import android.content.res.Configuration;
import android.content.res.Resources;
import android.net.ConnectivityManager;
import android.os.Build;
@@ -499,6 +500,12 @@ private static void showToast(@NonNull String messageToToast, int toastDuration)
);
}
+ public static boolean isDarkModeEnabled(Context context) {
+ Configuration config = context.getResources().getConfiguration();
+ final int currentNightMode = config.uiMode & Configuration.UI_MODE_NIGHT_MASK;
+ return currentNightMode == Configuration.UI_MODE_NIGHT_YES;
+ }
+
/**
* Automatically logs any exceptions the runnable throws.
*
diff --git a/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ReVancedAboutPreference.java b/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ReVancedAboutPreference.java
index cd62235fc7..ba2facccbd 100644
--- a/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ReVancedAboutPreference.java
+++ b/extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ReVancedAboutPreference.java
@@ -54,9 +54,7 @@ private static String getColorHexString(int color) {
}
protected boolean isDarkModeEnabled() {
- Configuration config = getContext().getResources().getConfiguration();
- final int currentNightMode = config.uiMode & Configuration.UI_MODE_NIGHT_MASK;
- return currentNightMode == Configuration.UI_MODE_NIGHT_YES;
+ return Utils.isDarkModeEnabled(getContext());
}
/**
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/Utils.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/Utils.java
index 2779659210..63f4b0127b 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/Utils.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/Utils.java
@@ -1,9 +1,20 @@
package app.revanced.extension.tiktok;
+import static app.revanced.extension.shared.Utils.isDarkModeEnabled;
+
+import android.content.Context;
+import android.graphics.Color;
+import android.view.View;
+import android.widget.TextView;
+
+import androidx.annotation.ColorInt;
+
import app.revanced.extension.shared.settings.StringSetting;
public class Utils {
+ private static final long[] DEFAULT_MIN_MAX_VALUES = {0L, Long.MAX_VALUE};
+
// Edit: This could be handled using a custom Setting<Long[]> class
// that saves its value to preferences and JSON using the formatted String created here.
public static long[] parseMinMax(StringSetting setting) {
@@ -20,6 +31,29 @@ public static long[] parseMinMax(StringSetting setting) {
}
setting.save("0-" + Long.MAX_VALUE);
- return new long[]{0L, Long.MAX_VALUE};
+ return DEFAULT_MIN_MAX_VALUES;
+ }
+
+ // Colors picked by hand. These should be replaced with the styled resources TikTok uses.
+ private static final @ColorInt int TEXT_DARK_MODE_TITLE = Color.WHITE;
+ private static final @ColorInt int TEXT_DARK_MODE_SUMMARY
+ = Color.argb(255, 170, 170, 170);
+
+ private static final @ColorInt int TEXT_LIGHT_MODE_TITLE = Color.BLACK;
+ private static final @ColorInt int TEXT_LIGHT_MODE_SUMMARY
+ = Color.argb(255, 80, 80, 80);
+
+ public static void setTitleAndSummaryColor(Context context, View view) {
+ final boolean darkModeEnabled = isDarkModeEnabled(context);
+
+ TextView title = view.findViewById(android.R.id.title);
+ title.setTextColor(darkModeEnabled
+ ? TEXT_DARK_MODE_TITLE
+ : TEXT_LIGHT_MODE_TITLE);
+
+ TextView summary = view.findViewById(android.R.id.summary);
+ summary.setTextColor(darkModeEnabled
+ ? TEXT_DARK_MODE_SUMMARY
+ : TEXT_LIGHT_MODE_SUMMARY);
}
}
\ No newline at end of file
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/LikeCountFilter.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/LikeCountFilter.java
index 57eb665ea1..f5336da5b4 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/LikeCountFilter.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/LikeCountFilter.java
@@ -1,17 +1,18 @@
package app.revanced.extension.tiktok.feedfilter;
-import app.revanced.extension.tiktok.settings.Settings;
import com.ss.android.ugc.aweme.feed.model.Aweme;
import com.ss.android.ugc.aweme.feed.model.AwemeStatistics;
-import static app.revanced.extension.tiktok.Utils.parseMinMax;
+import app.revanced.extension.tiktok.Utils;
+import app.revanced.extension.tiktok.settings.Settings;
public final class LikeCountFilter implements IFilter {
+
final long minLike;
final long maxLike;
LikeCountFilter() {
- long[] minMax = parseMinMax(Settings.MIN_MAX_LIKES);
+ long[] minMax = Utils.parseMinMax(Settings.MIN_MAX_LIKES);
minLike = minMax[0];
maxLike = minMax[1];
}
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/ViewCountFilter.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/ViewCountFilter.java
index ca9156f84e..32627ca60d 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/ViewCountFilter.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/feedfilter/ViewCountFilter.java
@@ -1,17 +1,17 @@
package app.revanced.extension.tiktok.feedfilter;
+import app.revanced.extension.tiktok.Utils;
import app.revanced.extension.tiktok.settings.Settings;
import com.ss.android.ugc.aweme.feed.model.Aweme;
import com.ss.android.ugc.aweme.feed.model.AwemeStatistics;
-import static app.revanced.extension.tiktok.Utils.parseMinMax;
public class ViewCountFilter implements IFilter {
final long minView;
final long maxView;
ViewCountFilter() {
- long[] minMax = parseMinMax(Settings.MIN_MAX_VIEWS);
+ long[] minMax = Utils.parseMinMax(Settings.MIN_MAX_VIEWS);
minView = minMax[0];
maxView = minMax[1];
}
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/DownloadPathPreference.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/DownloadPathPreference.java
index ae4759c793..fb4e271214 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/DownloadPathPreference.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/DownloadPathPreference.java
@@ -16,10 +16,10 @@
import android.widget.RadioGroup;
import app.revanced.extension.shared.settings.StringSetting;
+import app.revanced.extension.tiktok.Utils;
@SuppressWarnings("deprecation")
public class DownloadPathPreference extends DialogPreference {
- private final Context context;
private final String[] entryValues = {"DCIM", "Movies", "Pictures"};
private String mValue;
@@ -29,11 +29,10 @@ public class DownloadPathPreference extends DialogPreference {
public DownloadPathPreference(Context context, String title, StringSetting setting) {
super(context);
- this.context = context;
- this.setTitle(title);
- this.setSummary(Environment.getExternalStorageDirectory().getPath() + "/" + setting.get());
- this.setKey(setting.key);
- this.setValue(setting.get());
+ setTitle(title);
+ setSummary(Environment.getExternalStorageDirectory().getPath() + "/" + setting.get());
+ setKey(setting.key);
+ setValue(setting.get());
}
public String getValue() {
@@ -59,6 +58,7 @@ protected View onCreateDialogView() {
childDownloadPath = getValue().substring(getValue().indexOf("/") + 1);
mediaPathIndex = findIndexOf(currentMedia);
+ Context context = getContext();
LinearLayout dialogView = new LinearLayout(context);
RadioGroup mediaPath = new RadioGroup(context);
mediaPath.setLayoutParams(new RadioGroup.LayoutParams(-1, -2));
@@ -79,12 +79,10 @@ protected View onCreateDialogView() {
downloadPath.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
@@ -99,6 +97,13 @@ public void afterTextChanged(Editable editable) {
return dialogView;
}
+ @Override
+ protected void onBindView(View view) {
+ super.onBindView(view);
+
+ Utils.setTitleAndSummaryColor(getContext(), view);
+ }
+
@Override
protected void onPrepareDialogBuilder(AlertDialog.Builder builder) {
builder.setTitle("Download Path");
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/InputTextPreference.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/InputTextPreference.java
index b80380e512..d2df31462b 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/InputTextPreference.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/InputTextPreference.java
@@ -2,16 +2,26 @@
import android.content.Context;
import android.preference.EditTextPreference;
+import android.view.View;
import app.revanced.extension.shared.settings.StringSetting;
+import app.revanced.extension.tiktok.Utils;
+@SuppressWarnings("deprecation")
public class InputTextPreference extends EditTextPreference {
public InputTextPreference(Context context, String title, String summary, StringSetting setting) {
super(context);
- this.setTitle(title);
- this.setSummary(summary);
- this.setKey(setting.key);
- this.setText(setting.get());
+ setTitle(title);
+ setSummary(summary);
+ setKey(setting.key);
+ setText(setting.get());
+ }
+
+ @Override
+ protected void onBindView(View view) {
+ super.onBindView(view);
+
+ Utils.setTitleAndSummaryColor(getContext(), view);
}
}
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/RangeValuePreference.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/RangeValuePreference.java
index 8eaf98ac52..012d334f07 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/RangeValuePreference.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/RangeValuePreference.java
@@ -1,5 +1,6 @@
package app.revanced.extension.tiktok.settings.preference;
+import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
@@ -14,11 +15,10 @@
import android.widget.TextView;
import app.revanced.extension.shared.settings.StringSetting;
+import app.revanced.extension.tiktok.Utils;
@SuppressWarnings("deprecation")
public class RangeValuePreference extends DialogPreference {
- private final Context context;
-
private String minValue;
private String maxValue;
@@ -29,7 +29,6 @@ public class RangeValuePreference extends DialogPreference {
public RangeValuePreference(Context context, String title, String summary, StringSetting setting) {
super(context);
- this.context = context;
setTitle(title);
setSummary(summary);
setKey(setting.key);
@@ -53,41 +52,52 @@ public String getValue() {
return mValue;
}
+ @SuppressLint("SetTextI18n")
@Override
protected View onCreateDialogView() {
minValue = getValue().split("-")[0];
maxValue = getValue().split("-")[1];
+
+ Context context = getContext();
+
LinearLayout dialogView = new LinearLayout(context);
dialogView.setOrientation(LinearLayout.VERTICAL);
+
+ // Min view
LinearLayout minView = new LinearLayout(context);
minView.setOrientation(LinearLayout.HORIZONTAL);
+ dialogView.addView(minView);
+
TextView min = new TextView(context);
min.setText("Min: ");
minView.addView(min);
+
EditText minEditText = new EditText(context);
minEditText.setInputType(InputType.TYPE_CLASS_NUMBER);
minEditText.setText(minValue);
minView.addView(minEditText);
- dialogView.addView(minView);
+
+ // Max view
LinearLayout maxView = new LinearLayout(context);
maxView.setOrientation(LinearLayout.HORIZONTAL);
+ dialogView.addView(maxView);
+
TextView max = new TextView(context);
max.setText("Max: ");
maxView.addView(max);
+
EditText maxEditText = new EditText(context);
maxEditText.setInputType(InputType.TYPE_CLASS_NUMBER);
maxEditText.setText(maxValue);
maxView.addView(maxEditText);
- dialogView.addView(maxView);
+
minEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
@@ -98,12 +108,10 @@ public void afterTextChanged(Editable editable) {
maxEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
-
}
@Override
@@ -111,12 +119,21 @@ public void afterTextChanged(Editable editable) {
maxValue = editable.toString();
}
});
+
return dialogView;
}
+ @Override
+ protected void onBindView(View view) {
+ super.onBindView(view);
+
+ Utils.setTitleAndSummaryColor(getContext(), view);
+ }
+
@Override
protected void onPrepareDialogBuilder(AlertDialog.Builder builder) {
- builder.setPositiveButton(android.R.string.ok, (dialog, which) -> this.onClick(dialog, DialogInterface.BUTTON_POSITIVE));
+ builder.setPositiveButton(android.R.string.ok, (dialog, which)
+ -> this.onClick(dialog, DialogInterface.BUTTON_POSITIVE));
builder.setNegativeButton(android.R.string.cancel, null);
}
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedPreferenceFragment.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedPreferenceFragment.java
index 43ab69297e..7027e924a4 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedPreferenceFragment.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedPreferenceFragment.java
@@ -18,14 +18,12 @@
public class ReVancedPreferenceFragment extends AbstractPreferenceFragment {
@Override
- protected void syncSettingWithPreference(@NonNull @NotNull Preference pref,
- @NonNull @NotNull Setting<?> setting,
+ protected void syncSettingWithPreference(@NonNull Preference pref,
+ @NonNull Setting<?> setting,
boolean applySettingToPreference) {
- if (pref instanceof RangeValuePreference) {
- RangeValuePreference rangeValuePref = (RangeValuePreference) pref;
+ if (pref instanceof RangeValuePreference rangeValuePref) {
Setting.privateSetValueFromString(setting, rangeValuePref.getValue());
- } else if (pref instanceof DownloadPathPreference) {
- DownloadPathPreference downloadPathPref = (DownloadPathPreference) pref;
+ } else if (pref instanceof DownloadPathPreference downloadPathPref) {
Setting.privateSetValueFromString(setting, downloadPathPref.getValue());
} else {
super.syncSettingWithPreference(pref, setting, applySettingToPreference);
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedTikTokAboutPreference.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedTikTokAboutPreference.java
index 2ca953e1c8..408bab6c02 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedTikTokAboutPreference.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/ReVancedTikTokAboutPreference.java
@@ -1,13 +1,15 @@
package app.revanced.extension.tiktok.settings.preference;
import android.content.Context;
-import android.util.AttributeSet;
+import android.view.View;
import java.util.Map;
import app.revanced.extension.shared.Logger;
import app.revanced.extension.shared.settings.preference.ReVancedAboutPreference;
+import app.revanced.extension.tiktok.Utils;
+@SuppressWarnings("deprecation")
public class ReVancedTikTokAboutPreference extends ReVancedAboutPreference {
/**
@@ -23,22 +25,11 @@ public class ReVancedTikTokAboutPreference extends ReVancedAboutPreference {
"revanced_settings_about_links_header", "Official links"
);
- {
- //noinspection deprecation
- setTitle("About");
- }
-
- public ReVancedTikTokAboutPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
- super(context, attrs, defStyleAttr, defStyleRes);
- }
- public ReVancedTikTokAboutPreference(Context context, AttributeSet attrs, int defStyleAttr) {
- super(context, attrs, defStyleAttr);
- }
- public ReVancedTikTokAboutPreference(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
public ReVancedTikTokAboutPreference(Context context) {
super(context);
+
+ setTitle("About");
+ setSummary("About ReVanced");
}
@Override
@@ -52,4 +43,11 @@ protected String getString(String key, Object ... args) {
return String.format(format, args);
}
+
+ @Override
+ protected void onBindView(View view) {
+ super.onBindView(view);
+
+ Utils.setTitleAndSummaryColor(getContext(), view);
+ }
}
diff --git a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/TogglePreference.java b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/TogglePreference.java
index 788b0d67d0..f0e8085f04 100644
--- a/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/TogglePreference.java
+++ b/extensions/tiktok/src/main/java/app/revanced/extension/tiktok/settings/preference/TogglePreference.java
@@ -2,16 +2,26 @@
import android.content.Context;
import android.preference.SwitchPreference;
+import android.view.View;
import app.revanced.extension.shared.settings.BooleanSetting;
+import app.revanced.extension.tiktok.Utils;
@SuppressWarnings("deprecation")
public class TogglePreference extends SwitchPreference {
+
public TogglePreference(Context context, String title, String summary, BooleanSetting setting) {
super(context);
- this.setTitle(title);
- this.setSummary(summary);
- this.setKey(setting.key);
- this.setChecked(setting.get());
+ setTitle(title);
+ setSummary(summary);
+ setKey(setting.key);
+ setChecked(setting.get());
+ }
+
+ @Override
+ protected void onBindView(View view) {
+ super.onBindView(view);
+
+ Utils.setTitleAndSummaryColor(getContext(), view);
}
}
|
fix
|
Use correct colors for dark mode (#4087)
|
fec442ca99b3ac3372c76fed0ac0a9a3d34e9385
|
2023-05-20 03:13:48
|
oSumAtrIX
|
refactor: remove spacing
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
index 85a1316bcf..88bff32b0a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/annotations/MinimizedPlaybackCompatibility.kt
@@ -3,6 +3,6 @@ package app.revanced.patches.youtube.misc.minimizedplayback.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37" , "18.19.35"))])
+@Compatibility([Package("com.google.android.youtube", arrayOf("18.16.37", "18.19.35"))])
@Target(AnnotationTarget.CLASS)
internal annotation class MinimizedPlaybackCompatibility
\ No newline at end of file
|
refactor
|
remove spacing
|
9f1986960cbaab84519d0685d1950764c16d08a5
|
2023-11-12 21:38:50
|
oSumAtrIX
|
feat(YouTube): Bump compatibility to `18.38.45`
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/general/HideAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/general/HideAdsPatch.kt
index a76288abe7..b9b2693d7d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/general/HideAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/general/HideAdsPatch.kt
@@ -33,7 +33,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/HideGetPremiumPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/HideGetPremiumPatch.kt
index 1e7a75e8d4..4841c722cd 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/HideGetPremiumPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/getpremium/HideGetPremiumPatch.kt
@@ -27,7 +27,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/ad/video/VideoAdsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/ad/video/VideoAdsPatch.kt
index 5ff58b6a9c..7ed6ca3d26 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/ad/video/VideoAdsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/ad/video/VideoAdsPatch.kt
@@ -31,7 +31,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/CopyVideoUrlBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/CopyVideoUrlBytecodePatch.kt
index ee8a4b2407..bc1724a4df 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/CopyVideoUrlBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/copyvideourl/CopyVideoUrlBytecodePatch.kt
@@ -26,7 +26,8 @@ import app.revanced.patches.youtube.video.information.VideoInformationPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/ExternalDownloadsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/ExternalDownloadsBytecodePatch.kt
index c5310675d0..e385218616 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/ExternalDownloadsBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/downloads/ExternalDownloadsBytecodePatch.kt
@@ -26,7 +26,8 @@ import app.revanced.patches.youtube.video.information.VideoInformationPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
),
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/DisablePreciseSeekingGesturePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/DisablePreciseSeekingGesturePatch.kt
index 54465b2aac..f0ccc41bfb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/DisablePreciseSeekingGesturePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/seekbar/DisablePreciseSeekingGesturePatch.kt
@@ -24,7 +24,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
[
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/SwipeControlsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/SwipeControlsBytecodePatch.kt
index eeff69b004..ce23fd6b79 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/SwipeControlsBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/swipecontrols/SwipeControlsBytecodePatch.kt
@@ -33,7 +33,8 @@ import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/AutoCaptionsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/AutoCaptionsPatch.kt
index 8a6525a7d4..11deb33d3c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/AutoCaptionsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/autocaptions/AutoCaptionsPatch.kt
@@ -31,7 +31,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
],
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/HideButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/HideButtonsPatch.kt
index 633a318932..6fc5a01f3e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/HideButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/action/HideButtonsPatch.kt
@@ -29,7 +29,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/HideAutoplayButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/HideAutoplayButtonPatch.kt
index 2ef5e03161..0f539a3b37 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/HideAutoplayButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/autoplay/HideAutoplayButtonPatch.kt
@@ -39,7 +39,8 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/HideCaptionsButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/HideCaptionsButtonPatch.kt
index a8598a9ac5..d98c7d252e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/HideCaptionsButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/captions/HideCaptionsButtonPatch.kt
@@ -30,7 +30,8 @@ import com.android.tools.smali.dexlib2.Opcode
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/NavigationButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/NavigationButtonsPatch.kt
index 882f099111..23351e1a6e 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/NavigationButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/navigation/NavigationButtonsPatch.kt
@@ -36,7 +36,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/HidePlayerButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/HidePlayerButtonsPatch.kt
index a299c211d3..72ad833025 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/HidePlayerButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/player/hide/HidePlayerButtonsPatch.kt
@@ -34,7 +34,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction3rc
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/AlbumCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/AlbumCardsPatch.kt
index a6cb2db769..e65f03b790 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/AlbumCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/albumcards/AlbumCardsPatch.kt
@@ -29,7 +29,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/BreakingNewsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/BreakingNewsPatch.kt
index e938dc70e9..b32b931693 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/BreakingNewsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/breakingnews/BreakingNewsPatch.kt
@@ -29,7 +29,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/CommentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/CommentsPatch.kt
index a783a30ca2..0b79118cda 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/CommentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/comments/CommentsPatch.kt
@@ -28,7 +28,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/CrowdfundingBoxPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/CrowdfundingBoxPatch.kt
index a9d4996b51..3d99112178 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/CrowdfundingBoxPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/crowdfundingbox/CrowdfundingBoxPatch.kt
@@ -29,7 +29,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/HideEndscreenCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/HideEndscreenCardsPatch.kt
index 67cb145417..fd4954cd6d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/HideEndscreenCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/endscreencards/HideEndscreenCardsPatch.kt
@@ -32,7 +32,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/HideFilterBarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/HideFilterBarPatch.kt
index 78a871753f..62474c5420 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/HideFilterBarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/filterbar/HideFilterBarPatch.kt
@@ -29,7 +29,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/HideFloatingMicrophoneButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/HideFloatingMicrophoneButtonPatch.kt
index 3ad8a7ec39..f88eff3bab 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/HideFloatingMicrophoneButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/floatingmicrophone/HideFloatingMicrophoneButtonPatch.kt
@@ -25,7 +25,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/fullscreenambientmode/DisableFullscreenAmbientModePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/fullscreenambientmode/DisableFullscreenAmbientModePatch.kt
index 2c83e8a054..40cc980f03 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/fullscreenambientmode/DisableFullscreenAmbientModePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/fullscreenambientmode/DisableFullscreenAmbientModePatch.kt
@@ -20,7 +20,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
CompatiblePackage(
"com.google.android.youtube", [
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
index 4dc8868c8a..9026ff729b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/general/HideLayoutComponentsPatch.kt
@@ -37,7 +37,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"com.google.android.youtube", [
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/HideInfoCardsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/HideInfoCardsPatch.kt
index c653fa6aaa..26eaed1c54 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/HideInfoCardsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/infocards/HideInfoCardsPatch.kt
@@ -36,7 +36,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/HideLoadMoreButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/HideLoadMoreButtonPatch.kt
index 0e7ac62760..f694463453 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/HideLoadMoreButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/HideLoadMoreButtonPatch.kt
@@ -25,7 +25,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/HideEmailAddressPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/HideEmailAddressPatch.kt
index 6d02650786..40c056f171 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/HideEmailAddressPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/personalinformation/HideEmailAddressPatch.kt
@@ -25,7 +25,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/HideSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/HideSeekbarPatch.kt
index f435e57865..09ccb58ef0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/HideSeekbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/seekbar/HideSeekbarPatch.kt
@@ -33,7 +33,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/HideShortsComponentsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/HideShortsComponentsPatch.kt
index 372294c1c2..649aea483c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/HideShortsComponentsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/shorts/HideShortsComponentsPatch.kt
@@ -37,7 +37,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/suggestedvideoendscreen/DisableSuggestedVideoEndScreenPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/suggestedvideoendscreen/DisableSuggestedVideoEndScreenPatch.kt
index 5c338cfe19..8a766122c4 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/suggestedvideoendscreen/DisableSuggestedVideoEndScreenPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/suggestedvideoendscreen/DisableSuggestedVideoEndScreenPatch.kt
@@ -19,7 +19,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
CompatiblePackage(
"com.google.android.youtube", [
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/HideTimestampPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/HideTimestampPatch.kt
index 58c8bbad06..ffd0e40ae7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/HideTimestampPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/HideTimestampPatch.kt
@@ -26,7 +26,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/PlayerPopupPanelsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/PlayerPopupPanelsPatch.kt
index c52ec616d4..c98e433ae8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/PlayerPopupPanelsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/panels/popup/PlayerPopupPanelsPatch.kt
@@ -26,7 +26,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/PlayerControlsBackgroundPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/PlayerControlsBackgroundPatch.kt
index 80202da0bb..38139f6cf8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/PlayerControlsBackgroundPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/background/PlayerControlsBackgroundPatch.kt
@@ -20,7 +20,8 @@ import org.w3c.dom.Element
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
],
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/ReturnYouTubeDislikePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/ReturnYouTubeDislikePatch.kt
index 311c958f2d..f7b0815fb6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/ReturnYouTubeDislikePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/ReturnYouTubeDislikePatch.kt
@@ -32,7 +32,12 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
PlayerTypeHookPatch::class,
],
compatiblePackages = [
- CompatiblePackage("com.google.android.youtube", ["18.37.36", "18.38.44"])
+ CompatiblePackage(
+ "com.google.android.youtube", [
+ "18.37.36",
+ "18.38.44"
+ ]
+ )
]
)
@Suppress("unused")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/WideSearchbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/WideSearchbarPatch.kt
index 5a123233f8..d2d19c301c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/WideSearchbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/searchbar/WideSearchbarPatch.kt
@@ -29,7 +29,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/RestoreOldSeekbarThumbnailsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/RestoreOldSeekbarThumbnailsPatch.kt
index 50d33e9c04..06b7788d93 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/RestoreOldSeekbarThumbnailsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/RestoreOldSeekbarThumbnailsPatch.kt
@@ -21,7 +21,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
CompatiblePackage(
"com.google.android.youtube", [
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/SponsorBlockBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/SponsorBlockBytecodePatch.kt
index 9e7c886296..f1acf9d951 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/SponsorBlockBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/SponsorBlockBytecodePatch.kt
@@ -12,7 +12,6 @@ import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.fingerprints.LayoutConstructorFingerprint
-import app.revanced.patches.youtube.shared.fingerprints.SeekbarFingerprint
import app.revanced.patches.shared.fingerprints.SeekbarOnDrawFingerprint
import app.revanced.patches.shared.mapping.misc.ResourceMappingPatch
import app.revanced.patches.youtube.layout.sponsorblock.fingerprints.AppendTimeFingerprint
@@ -23,6 +22,7 @@ import app.revanced.patches.youtube.misc.autorepeat.fingerprints.AutoRepeatParen
import app.revanced.patches.youtube.misc.integrations.IntegrationsPatch
import app.revanced.patches.youtube.misc.playercontrols.PlayerControlsBytecodePatch
import app.revanced.patches.youtube.misc.playertype.PlayerTypeHookPatch
+import app.revanced.patches.youtube.shared.fingerprints.SeekbarFingerprint
import app.revanced.patches.youtube.video.information.VideoInformationPatch
import app.revanced.patches.youtube.video.videoid.VideoIdPatch
import com.android.tools.smali.dexlib2.Opcode
@@ -45,7 +45,8 @@ import com.android.tools.smali.dexlib2.iface.reference.StringReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
],
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt
index fcbdef3578..7362d87d4a 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt
@@ -30,7 +30,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/DisableShortsOnStartupPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/DisableShortsOnStartupPatch.kt
index 7b90a378b1..136fc94dc9 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/DisableShortsOnStartupPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/startupshortsreset/DisableShortsOnStartupPatch.kt
@@ -25,7 +25,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/TabletMiniPlayerPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/TabletMiniPlayerPatch.kt
index e8fbb906f5..c0ab8e7162 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/TabletMiniPlayerPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/tabletminiplayer/TabletMiniPlayerPatch.kt
@@ -34,7 +34,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
)
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemeBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemeBytecodePatch.kt
index fcd63a2904..257a5c07c8 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemeBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemeBytecodePatch.kt
@@ -32,7 +32,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"com.google.android.youtube",
[
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/AlternativeThumbnailsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/AlternativeThumbnailsPatch.kt
index aaeddced42..cdfa37a3b5 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/AlternativeThumbnailsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/thumbnails/AlternativeThumbnailsPatch.kt
@@ -26,7 +26,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/AutoRepeatPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/AutoRepeatPatch.kt
index 2f7ff15ee9..80b4433ff7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/AutoRepeatPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/autorepeat/AutoRepeatPatch.kt
@@ -30,7 +30,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/dimensions/spoof/SpoofDeviceDimensionsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/dimensions/spoof/SpoofDeviceDimensionsPatch.kt
index fe93dd1499..b25e072653 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/dimensions/spoof/SpoofDeviceDimensionsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/dimensions/spoof/SpoofDeviceDimensionsPatch.kt
@@ -21,7 +21,8 @@ import app.revanced.patches.youtube.misc.settings.SettingsPatch
CompatiblePackage(
"com.google.android.youtube",
[
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/ClientSpoofPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/ClientSpoofPatch.kt
index 3afec94163..c3dc89c3c1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/ClientSpoofPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/ClientSpoofPatch.kt
@@ -26,7 +26,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/links/OpenLinksExternallyPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/links/OpenLinksExternallyPatch.kt
index 92166fa351..9c3c799ce6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/links/OpenLinksExternallyPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/links/OpenLinksExternallyPatch.kt
@@ -30,7 +30,8 @@ import com.android.tools.smali.dexlib2.iface.reference.StringReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
index 9d33bcfe4b..132cdaff0b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/MicroGBytecodePatch.kt
@@ -30,7 +30,8 @@ import app.revanced.util.microg.MicroGBytecodeHelper
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/MinimizedPlaybackPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/MinimizedPlaybackPatch.kt
index 4ffd018d09..72ff1e8f22 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/MinimizedPlaybackPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/minimizedplayback/MinimizedPlaybackPatch.kt
@@ -35,7 +35,8 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/HDRBrightnessPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/HDRBrightnessPatch.kt
index 614cfcaf1e..0b24686ee0 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/HDRBrightnessPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/hdrbrightness/HDRBrightnessPatch.kt
@@ -28,7 +28,8 @@ import com.android.tools.smali.dexlib2.iface.reference.FieldReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/quality/RememberVideoQualityPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/quality/RememberVideoQualityPatch.kt
index 7ddab3254f..b7869467ad 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/quality/RememberVideoQualityPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/quality/RememberVideoQualityPatch.kt
@@ -37,7 +37,8 @@ import com.android.tools.smali.dexlib2.iface.reference.FieldReference
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
index 4ced038b20..7ba545881b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
@@ -20,7 +20,8 @@ import app.revanced.patches.youtube.video.speed.remember.RememberPlaybackSpeedPa
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/RestoreOldVideoQualityMenuPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/RestoreOldVideoQualityMenuPatch.kt
index 11a6c2aa29..220191d74b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/RestoreOldVideoQualityMenuPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/videoqualitymenu/RestoreOldVideoQualityMenuPatch.kt
@@ -30,7 +30,8 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
"18.29.38",
"18.32.39",
"18.37.36",
- "18.38.44"
+ "18.38.44",
+ "18.43.45"
]
)
]
|
feat
|
Bump compatibility to `18.38.45`
|
525bad2b3473b512403b5c505456134feba42448
|
2025-01-29 13:14:09
|
semantic-release-bot
|
chore: Release v5.10.0-dev.6 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 90c3ab1654..f31d9b9697 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.10.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v5.10.0-dev.5...v5.10.0-dev.6) (2025-01-29)
+
+
+### Bug Fixes
+
+* **YouTube - Hide Ads:** Hide end screen store banner without leaving empty space ([#4367](https://github.com/ReVanced/revanced-patches/issues/4367)) ([7e68390](https://github.com/ReVanced/revanced-patches/commit/7e683906418434dd4e2104337d73a2292415c615))
+
# [5.10.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v5.10.0-dev.4...v5.10.0-dev.5) (2025-01-27)
diff --git a/gradle.properties b/gradle.properties
index 9033461b35..0a1a0a70e3 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.10.0-dev.5
+version = 5.10.0-dev.6
|
chore
|
Release v5.10.0-dev.6 [skip ci]
|
9a6f5ef6b5e9ca8a4bab2d5179e27fd1a1de6952
|
2025-02-11 00:03:12
|
semantic-release-bot
|
chore: Release v5.12.0-dev.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cca26eb300..9a64c9f384 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.12.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v5.11.0...v5.12.0-dev.1) (2025-02-10)
+
+
+### Features
+
+* **YouTube - SponsorBlock:** Redesign skip buttons ([#4427](https://github.com/ReVanced/revanced-patches/issues/4427)) ([8f4883f](https://github.com/ReVanced/revanced-patches/commit/8f4883fc002420bfb4056401e23445c99e1d3fce))
+
# [5.11.0](https://github.com/ReVanced/revanced-patches/compare/v5.10.0...v5.11.0) (2025-02-07)
diff --git a/gradle.properties b/gradle.properties
index 25d675aa66..f1fab459b5 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.11.0
+version = 5.12.0-dev.1
|
chore
|
Release v5.12.0-dev.1 [skip ci]
|
ddda3f6e8cd919edaa891baee6597d2566e18e50
|
2023-11-12 21:38:49
|
oSumAtrIX
|
feat(YouTube): Add `Remove tracking query parameter` patch
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt
new file mode 100644
index 0000000000..2c75c3f610
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt
@@ -0,0 +1,71 @@
+package app.revanced.patches.youtube.misc.privacy
+
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
+import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotation.CompatiblePackage
+import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
+import app.revanced.patches.youtube.misc.integrations.IntegrationsPatch
+import app.revanced.patches.youtube.misc.privacy.fingerprints.CopyTextFingerprint
+import app.revanced.patches.youtube.misc.settings.SettingsPatch
+import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
+
+@Patch(
+ name = "Remove tracking query parameter",
+ description = "Remove the tracking query parameter from links.",
+ dependencies = [IntegrationsPatch::class, SettingsPatch::class],
+ compatiblePackages = [
+ CompatiblePackage(
+ "com.google.android.youtube",
+ [
+ "18.43.45",
+ ]
+ )
+ ]
+)
+@Suppress("unused")
+object RemoveTrackingQueryParameterPatch : BytecodePatch(
+ setOf(CopyTextFingerprint)
+) {
+ const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/RemoveTrackingQueryParameterPatch;"
+
+ override fun execute(context: BytecodeContext) {
+ SettingsPatch.PreferenceScreen.MISC.addPreferences(
+ SwitchPreference(
+ "revanced_remove_tracking_query_parameter",
+ StringResource(
+ "revanced_remove_tracking_query_parameter_title",
+ "Remove tracking query parameter"
+ ),
+ StringResource(
+ "revanced_remove_tracking_query_parameter_summary_on",
+ "Tracking query parameter is removed from links"
+ ),
+ StringResource(
+ "revanced_remove_tracking_query_parameter_summary_off",
+ "Tracking query parameter is not removed from links"
+ ),
+ )
+ )
+
+ CopyTextFingerprint.result?.let {
+ val insertIndex = it.scanResult.patternScanResult!!.startIndex + 2
+
+ it.mutableMethod.apply {
+ val urlRegister = getInstruction<TwoRegisterInstruction>(insertIndex - 2).registerA
+
+ addInstructions(
+ insertIndex,
+ """
+ invoke-static {v$urlRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->sanitize(Ljava/lang/String;)Ljava/lang/String;
+ move-result-object v$urlRegister
+ """
+ )
+ }
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/CopyTextFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/CopyTextFingerprint.kt
new file mode 100644
index 0000000000..0375bf4827
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/CopyTextFingerprint.kt
@@ -0,0 +1,21 @@
+package app.revanced.patches.youtube.misc.privacy.fingerprints
+
+import app.revanced.patcher.fingerprint.MethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+
+object CopyTextFingerprint : MethodFingerprint(
+ returnType = "V",
+ parameters = listOf("L", "Ljava/util/Map;"),
+ opcodes = listOf(
+ Opcode.IGET_OBJECT, // Contains the text to copy to be sanitized.
+ Opcode.CONST_STRING,
+ Opcode.INVOKE_STATIC, // ClipData.newPlainText
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.IGET_OBJECT,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_INTERFACE,
+ Opcode.RETURN_VOID
+ ),
+ strings = listOf("text/plain")
+)
\ No newline at end of file
|
feat
|
Add `Remove tracking query parameter` patch
|
0d4b9c766b28b2064faa3d2a6b743309aad4e86a
|
2023-02-20 03:46:56
|
semantic-release-bot
|
chore(release): 2.163.0-dev.2 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c8b3c5d7ba..c059455500 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.163.0-dev.2](https://github.com/revanced/revanced-patches/compare/v2.163.0-dev.1...v2.163.0-dev.2) (2023-02-19)
+
+
+### Features
+
+* **twitter:** constrain patches compatibility to working versions ([#1646](https://github.com/revanced/revanced-patches/issues/1646)) ([d984bdc](https://github.com/revanced/revanced-patches/commit/d984bdc8b17dea127880b696ee1bed1503762707))
+
# [2.163.0-dev.1](https://github.com/revanced/revanced-patches/compare/v2.162.0...v2.163.0-dev.1) (2023-02-18)
diff --git a/README.md b/README.md
index 12f250783c..ba5a2892c1 100644
--- a/README.md
+++ b/README.md
@@ -131,9 +131,9 @@ The official Patch bundle provided by ReVanced and the community.
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
| `dynamic-color` | Replaces the default Twitter Blue with the users Material You palette. | all |
-| `hide-views-stats` | Hides the view stats under tweets. | 9.69.1-release.0 |
+| `hide-views-stats` | Hides the view stats under tweets. | 9.71.0-release.0 |
| `monochrome-icon` | Adds a monochrome icon. | all |
-| `timeline-ads` | Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads. | all |
+| `timeline-ads` | Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads. | 9.71.0-release.0 |
</details>
### [📦 `com.spotify.music`](https://play.google.com/store/apps/details?id=com.spotify.music)
diff --git a/gradle.properties b/gradle.properties
index 9040285993..309db5a61e 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.163.0-dev.1
+version = 2.163.0-dev.2
diff --git a/patches.json b/patches.json
index 9c44659e62..dba88e2726 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-embedded-ads","description":"Blocks embedded steam ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"copy-video-url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["copy-video-url-resource","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-on-demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2022.43.0","2023.05.0"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-breaking-news-shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","breaking-news-shelf-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-player-buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-subreddit-banner","description":"Hides banner ads from comments on subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2023.05.0"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-timeline-ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":[]}]},{"name":"hide-video-action-buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0"]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option in the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"open-links-directly","description":"Skips over redirection URLs to external links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"open-links-externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-playback-rate","description":"Adds the ability to remember the playback rate you chose in the video playback rate flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remove-ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"remove-bootloader-detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-broadcasts-restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":["2.5.2"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-screenshot-restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch","player-type-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"sponsorblock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","player-type-hook","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"spoof-app-version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"spoof-signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":["2.5.2"]}]},{"name":"spoof-wifi-connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"darkThemeSeekbarColor","title":"Dark theme seekbar color","description":"The background color of the seekbar of the dark theme. Leave empty for default color.","required":false,"choices":null}],"dependencies":["litho-components-theme"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"unlock-paid-widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"unlock-premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"unlock-prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"unlock-trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]}]
\ No newline at end of file
+[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-embedded-ads","description":"Blocks embedded steam ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"copy-video-url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["copy-video-url-resource","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"debugging","description":"Adds debugging options.","version":"0.0.1","excluded":false,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-on-demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2022.43.0","2023.05.0"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-breaking-news-shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","breaking-news-shelf-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","resource-mapping","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52"]}]},{"name":"hide-info-cards","description":"Hides info-cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-player-buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-subreddit-banner","description":"Hides banner ads from comments on subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2023.05.0"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-timeline-ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":[]}]},{"name":"hide-video-action-buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0","9.71.0-release.0"]}]},{"name":"hide-watch-in-vr","description":"Hides the Watch in VR option in the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"open-links-directly","description":"Skips over redirection URLs to external links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"open-links-externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-playback-rate","description":"Adds the ability to remember the playback rate you chose in the video playback rate flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remove-ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"remove-bootloader-detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-broadcasts-restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":["2.5.2"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-screenshot-restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch","player-type-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"sponsorblock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["video-information","player-controls-bytecode-patch","player-type-hook","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"spoof-app-version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"spoof-signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":["2.5.2"]}]},{"name":"spoof-wifi-connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"darkThemeSeekbarColor","title":"Dark theme seekbar color","description":"The background color of the seekbar of the dark theme. Leave empty for default color.","required":false,"choices":null}],"dependencies":["litho-components-theme"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline. Might require clearing app data to remove already cached ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.65.3-release.0"]}]},{"name":"unlock-paid-widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"unlock-premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"unlock-prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":[]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"unlock-trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36"]}]}]
\ No newline at end of file
|
chore
|
2.163.0-dev.2 [skip ci]
|
5e2737d68712320660739d0dcbd4110a532ae2a8
|
2022-09-18 11:58:04
|
semantic-release-bot
|
chore(release): 2.58.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07779dc460..16366a7a8f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+# [2.58.0](https://github.com/revanced/revanced-patches/compare/v2.57.0...v2.58.0) (2022-09-18)
+
+
+### Bug Fixes
+
+* **hdr-auto-brightness:** increase patching compatibility across versions ([bc5c8c1](https://github.com/revanced/revanced-patches/commit/bc5c8c118d5f95905fb7f0fb6afaf97bdcb753bf))
+* **hide-create-button:** increase patching compatibility across versions ([b217a1e](https://github.com/revanced/revanced-patches/commit/b217a1e89f4b9e3ad030ece08a1b81e507c7cc02))
+* **hide-shorts-button:** increase patching compatibility across versions ([7f17934](https://github.com/revanced/revanced-patches/commit/7f1793490f25b9fa16539e80cdc417b3b3e0e639))
+
+
+### Features
+
+* bump patches compatibility to v17.36.37 ([4493d7e](https://github.com/revanced/revanced-patches/commit/4493d7e6c7d76760cf4bc93968bf425b23c994de))
+
# [2.57.0](https://github.com/revanced/revanced-patches/compare/v2.56.1...v2.57.0) (2022-09-16)
diff --git a/README.md b/README.md
index 11ca6bf05c..6537cd308f 100644
--- a/README.md
+++ b/README.md
@@ -79,37 +79,37 @@ The official Patch bundle provided by ReVanced and the community.
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `swipe-controls` | Adds volume and brightness swipe controls. | 17.33.42 |
-| `downloads` | Enables downloading music and videos from YouTube. | 17.33.42 |
-| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | 17.33.42 |
-| `disable-create-button` | Hides the create button in the navigation bar. | 17.33.42 |
+| `swipe-controls` | Adds volume and brightness swipe controls. | 17.36.37 |
+| `downloads` | Enables downloading music and videos from YouTube. | 17.36.37 |
+| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | 17.36.37 |
| `hide-cast-button` | Hides the cast button in the video player. | all |
-| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | 17.33.42 |
-| `hide-autoplay-button` | Hides the autoplay button in the video player. | 17.33.42 |
+| `hide-create-button` | Hides the create button in the navigation bar. | 17.36.37 |
+| `hide-shorts-button` | Hides the shorts button on the navigation bar. | 17.36.37 |
+| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | 17.36.37 |
+| `hide-autoplay-button` | Hides the autoplay button in the video player. | 17.36.37 |
| `premium-heading` | Shows premium branding on the home screen. | all |
| `custom-branding` | Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). | all |
-| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | 17.33.42 |
-| `old-quality-layout` | Enables the original quality flyout menu. | 17.33.42 |
+| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | 17.36.37 |
+| `old-quality-layout` | Enables the original quality flyout menu. | 17.36.37 |
| `theme` | Applies a custom theme. | all |
-| `hide-shorts-button` | Hides the shorts button on the navigation bar. | 17.33.42 |
-| `hide-watermark` | Hides creator's watermarks on videos. | 17.33.42 |
-| `sponsorblock` | Integrate SponsorBlock. | 17.33.42 |
-| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.33.42 |
-| `tablet-mini-player` | Enables the tablet mini player layout. | 17.33.42 |
-| `disable-auto-captions` | Disable forced captions from being automatically enabled. | 17.33.42 |
-| `minimized-playback` | Enables minimized and background playback. | 17.33.42 |
+| `hide-watermark` | Hides creator's watermarks on videos. | 17.36.37 |
+| `sponsorblock` | Integrate SponsorBlock. | 17.36.37 |
+| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.36.37 |
+| `tablet-mini-player` | Enables the tablet mini player layout. | 17.36.37 |
+| `disable-auto-captions` | Disable forced captions from being automatically enabled. | 17.36.37 |
+| `minimized-playback` | Enables minimized and background playback. | 17.36.37 |
| `client-spoof` | Spoofs the YouTube or Vanced client to prevent playback issues. | all |
-| `custom-video-buffer` | Lets you change the buffers of videos. | 17.33.42 |
-| `always-autorepeat` | Always repeats the playing video again. | 17.33.42 |
-| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. | 17.33.42 |
+| `custom-video-buffer` | Lets you change the buffers of videos. | 17.36.37 |
+| `always-autorepeat` | Always repeats the playing video again. | 17.36.37 |
+| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. | 17.36.37 |
| `settings` | Adds settings for ReVanced to YouTube. | all |
| `enable-debugging` | Enables app debugging by patching the manifest file. | all |
-| `custom-playback-speed` | Adds more video playback speed options. | 17.33.42 |
-| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | 17.33.42 |
-| `remember-video-quality` | Adds the ability to remember the video quality you chose in the video quality flyout. | 17.33.42 |
-| `video-ads` | Removes ads in the video player. | 17.33.42 |
-| `general-ads` | Removes general ads. | 17.33.42 |
-| `hide-infocard-suggestions` | Hides infocards in videos. | 17.33.42 |
+| `custom-playback-speed` | Adds more video playback speed options. | 17.36.37 |
+| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | 17.36.37 |
+| `remember-video-quality` | Adds the ability to remember the video quality you chose in the video quality flyout. | 17.36.37 |
+| `video-ads` | Removes ads in the video player. | 17.36.37 |
+| `general-ads` | Removes general ads. | 17.36.37 |
+| `hide-infocard-suggestions` | Hides infocards in videos. | 17.36.37 |
</details>
### 📦 `com.vanced.android.youtube`
diff --git a/gradle.properties b/gradle.properties
index 20951248c3..46b88c7e0a 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.57.0
+version = 2.58.0
diff --git a/patches.json b/patches.json
index 06f4b78777..d5f253ea7e 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocking Premium Icons in reddit app.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"mediaFolder","title":"Media folder","description":"The media root folder to download to.","required":true,"choices":["DCIM","Movies","Pictures"]},{"key":"downloadPath","title":"Download path","description":"Download path relative to the media folder.","required":true,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"disable-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-id-mapping-provider-resource-patch-dependency","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-id-mapping-provider-resource-patch-dependency"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","resource-id-mapping-provider-resource-patch-dependency","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-id-mapping-provider-resource-patch-dependency","integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42"]}]}]
\ No newline at end of file
+[{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocking Premium Icons in reddit app.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"mediaFolder","title":"Media folder","description":"The media root folder to download to.","required":true,"choices":["DCIM","Movies","Pictures"]},{"key":"downloadPath","title":"Download path","description":"Download path relative to the media folder.","required":true,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-id-mapping-provider-resource-patch-dependency","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-id-mapping-provider-resource-patch-dependency"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","resource-id-mapping-provider-resource-patch-dependency","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-id-mapping-provider-resource-patch-dependency","integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]}]
\ No newline at end of file
|
chore
|
2.58.0 [skip ci]
|
e67d4d3d182eb3338e6ce2753c866f78b3c878ba
|
2022-10-27 04:43:00
|
semantic-release-bot
|
chore(release): 2.92.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 63c6384bf0..f30b4cbcd4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.92.1](https://github.com/revanced/revanced-patches/compare/v2.92.0...v2.92.1) (2022-10-26)
+
+
+### Bug Fixes
+
+* **youtube/custom-branding:** use proper scaled icons ([24b5bcd](https://github.com/revanced/revanced-patches/commit/24b5bcdd703474c940fd436a37f0ae924d8b8c74))
+
# [2.92.0](https://github.com/revanced/revanced-patches/compare/v2.91.0...v2.92.0) (2022-10-26)
diff --git a/gradle.properties b/gradle.properties
index 8992abbc3a..0f7a83b216 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.92.0
+version = 2.92.1
diff --git a/patches.json b/patches.json
index 467c7912c6..1b211fabdd 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"comments","description":"Hides comments components below the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.32.39","17.34.36","17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings","general-resource-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]}]
\ No newline at end of file
+[{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"monochrome-icon","description":"Adds a monochrome icon.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"hide-video-buttons","description":"Adds options to hide action buttons under a video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-startup-shorts-player","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"comments","description":"Hides comments components below the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","general-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["litho-components-theme","locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-my-mix","description":"Hides mix playlists.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.32.39","17.34.36","17.36.37","17.36.39","17.37.35","17.38.36","17.39.35","17.40.41"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings","general-resource-ads"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52"]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]}]
\ No newline at end of file
|
chore
|
2.92.1 [skip ci]
|
a12cbf5f75943ff4202d5b12a237ea6e0b2d861e
|
2022-12-14 05:29:12
|
oSumAtrIX
|
ci: only back-merge from `main` branch to `dev`
| false
|
diff --git a/.releaserc b/.releaserc
index 231628459d..e55e25610b 100644
--- a/.releaserc
+++ b/.releaserc
@@ -42,7 +42,7 @@
[
"@saithodev/semantic-release-backmerge",
{
- "branches": ["dev"]
+ "branches": [{from: "main", to: "dev"}]
}
]
]
|
ci
|
only back-merge from `main` branch to `dev`
|
6756f80e3e0c09376a1fd613d28644bdaa24da57
|
2023-06-23 19:16:27
|
LisoUseInAIKyrios
|
fix(youtube/client-spoof): update settings text for known side effects of spoof signature (#2476)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt
deleted file mode 100644
index f37201f865..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package app.revanced.patches.youtube.misc.fix.playback.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-
-object SubtitleWindowSettingsConstructorFingerprint : MethodFingerprint(
- parameters = listOf("I", "I", "I", "Z", "Z"),
- customFingerprint = { methodDef, _ ->
- methodDef.definingClass == "Lcom/google/android/libraries/youtube/player/subtitles/model/SubtitleWindowSettings;"
- && methodDef.name == "<init>"
- }
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
index 04d488ac20..4b5f74285c 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
@@ -17,11 +17,9 @@ import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.OpenCronetDataSourceFingerprint
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.ProtobufParameterBuilderFingerprint
-import app.revanced.patches.youtube.misc.fix.playback.fingerprints.SubtitleWindowSettingsConstructorFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import app.revanced.patches.youtube.video.videoid.patch.VideoIdPatch
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@Name("spoof-signature-verification")
@@ -30,14 +28,12 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
IntegrationsPatch::class,
SettingsPatch::class,
PlayerTypeHookPatch::class,
- VideoIdPatch::class
])
@Version("0.0.1")
class SpoofSignatureVerificationPatch : BytecodePatch(
listOf(
ProtobufParameterBuilderFingerprint,
OpenCronetDataSourceFingerprint,
- SubtitleWindowSettingsConstructorFingerprint,
)
) {
override fun execute(context: BytecodeContext): PatchResult {
@@ -48,7 +44,8 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
StringResource("revanced_spoof_signature_verification_summary_on",
"App signature spoofed\\n\\n"
+ "Side effects include:\\n"
- + "• End screen cards are always hidden\\n"
+ + "• Ambient mode may not work\\n"
+ + "• Seekbar thumbnails are hidden\\n"
+ "• Downloading videos may not work"),
StringResource("revanced_spoof_signature_verification_summary_off", "App signature not spoofed"),
StringResource("revanced_spoof_signature_verification_user_dialog_message",
@@ -56,9 +53,6 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
)
)
- // Hook video id, required for subtitle fix.
- VideoIdPatch.injectCall("$INTEGRATIONS_CLASS_DESCRIPTOR->setCurrentVideoId(Ljava/lang/String;)V")
-
// hook parameter
ProtobufParameterBuilderFingerprint.result?.let {
val setParamMethod = context
@@ -95,25 +89,6 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
} ?: return OpenCronetDataSourceFingerprint.toErrorResult()
- // hook override subtitles
- SubtitleWindowSettingsConstructorFingerprint.result?.let {
- it.mutableMethod.apply {
- addInstructions(
- 0,
- """
- invoke-static {p1, p2, p3, p4, p5}, $INTEGRATIONS_CLASS_DESCRIPTOR->getSubtitleWindowSettingsOverride(IIIZZ)[I
- move-result-object v0
- const/4 v1, 0x0
- aget p1, v0, v1 # ap, anchor position
- const/4 v1, 0x1
- aget p2, v0, v1 # ah, horizontal anchor
- const/4 v1, 0x2
- aget p3, v0, v1 # av, vertical anchor
- """
- )
- }
- } ?: return SubtitleWindowSettingsConstructorFingerprint.toErrorResult()
-
return PatchResultSuccess()
}
|
fix
|
update settings text for known side effects of spoof signature (#2476)
|
54fe34314d6b538ba6a91b6ac785fdf155f833d0
|
2024-03-28 00:07:58
|
semantic-release-bot
|
chore(release): 4.4.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 60d0fca1f9..a4078bad06 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,33 @@
+# [4.4.0](https://github.com/ReVanced/revanced-patches/compare/v4.3.0...v4.4.0) (2024-03-27)
+
+
+### Bug Fixes
+
+* **TikTok:** Hook application context earlier to prevent crash ([#2893](https://github.com/ReVanced/revanced-patches/issues/2893)) ([395ccda](https://github.com/ReVanced/revanced-patches/commit/395ccda7b9218c522c7ca0f99f75a12036d3e3f3))
+* **YouTube - Client spoof:** Spoof all user agents ([44a8a13](https://github.com/ReVanced/revanced-patches/commit/44a8a1399897caaff3ff45db8549ddedb2f01b68))
+* **YouTube - Downloads:** Use new task context ([#2841](https://github.com/ReVanced/revanced-patches/issues/2841)) ([6d88cb4](https://github.com/ReVanced/revanced-patches/commit/6d88cb49ec739700866290babcba5fb3032dbced))
+* **YouTube - Hide ads:** Prevent app crash if hiding fullscreen ads is not possible ([#2910](https://github.com/ReVanced/revanced-patches/issues/2910)) ([9f50470](https://github.com/ReVanced/revanced-patches/commit/9f50470bf6582fe2f20a903a97bf66c41f296fb2))
+* **YouTube Music:** Fix compatibility with latest versions ([#2924](https://github.com/ReVanced/revanced-patches/issues/2924)) ([8378c84](https://github.com/ReVanced/revanced-patches/commit/8378c8481634a63a5568480475757e64b7ec466e))
+* **YouTube:** Fix video playback by switching to ReVanced GmsCore vendor ([#2907](https://github.com/ReVanced/revanced-patches/issues/2907)) ([33ea122](https://github.com/ReVanced/revanced-patches/commit/33ea12228c2ae5dcadf3e7c7016d4bf6006d899a))
+* **YouTube:** Move setting to correct screen ([a16eda8](https://github.com/ReVanced/revanced-patches/commit/a16eda864515612d3a6b846082844df15eb49f56))
+
+
+### Features
+
+* **Instagram - Hide timeline ads:** Make compatible with latest versions ([a212f29](https://github.com/ReVanced/revanced-patches/commit/a212f29bd33bb5e10f024e058d26e20ee926190b))
+* **Mi Fitness:** Add `Force English locale` and `Fix login` patch ([#2734](https://github.com/ReVanced/revanced-patches/issues/2734)) ([7a25791](https://github.com/ReVanced/revanced-patches/commit/7a25791d53530b1236896b2c3d6275ee7556e8b7))
+* **Sync for Lemmy:** Add `Disable ads` patch ([#2872](https://github.com/ReVanced/revanced-patches/issues/2872)) ([0785819](https://github.com/ReVanced/revanced-patches/commit/0785819dd5ad487c778b5baf09004cdab3687184))
+* **YouTube - Downloads:** Use external downloader when selecting 'Download' in home feed flyout menu ([#2881](https://github.com/ReVanced/revanced-patches/issues/2881)) ([10afc8c](https://github.com/ReVanced/revanced-patches/commit/10afc8cc71ff29fea4937fb12fd3d1edf9c581f5))
+* **YouTube - External downloader:** Add ability to use in-app download button ([d900011](https://github.com/ReVanced/revanced-patches/commit/d9000113a905c14f8409aa75008f1ef6a1aecd0c))
+* **YouTube - Hide layout components:** Filter home/search results by keywords ([#2853](https://github.com/ReVanced/revanced-patches/issues/2853)) ([5916204](https://github.com/ReVanced/revanced-patches/commit/59162042b0a68edf7f94a3c21f838dada3c3f9c3))
+* **YouTube - Hide Shorts components:** Hide like and dislike buttons ([2df0892](https://github.com/ReVanced/revanced-patches/commit/2df0892682406e67283c4aeaacebf8f222029833))
+* **YouTube - Hide Shorts components:** Hide sound metadata label ([ea7d1e0](https://github.com/ReVanced/revanced-patches/commit/ea7d1e0d08cc245117ffe8ad0df3c31c5e87f739))
+* **YouTube - Hide Shorts components:** Hide title and full video link label ([e7b64e1](https://github.com/ReVanced/revanced-patches/commit/e7b64e154e7fb8edd0037f5e171f4aa3ed9017f8))
+* **YouTube - Hide Shorts components:** Selectively hide Shorts for home / subscription / search ([#2925](https://github.com/ReVanced/revanced-patches/issues/2925)) ([497c067](https://github.com/ReVanced/revanced-patches/commit/497c067e80e560eb125f5fc30eef9763929b4ee4))
+* **YouTube :** Remove `HDR auto brightness` patch ([#2863](https://github.com/ReVanced/revanced-patches/issues/2863)) ([b4c7bf4](https://github.com/ReVanced/revanced-patches/commit/b4c7bf48084184e5f031f7f5139a9a29341d8ebf))
+* **YouTube Vanced:** Remove `Hide ads` patch ([87887e4](https://github.com/ReVanced/revanced-patches/commit/87887e4163dd9e242209f4d0fefb415f9bc7ca75))
+* **YouTube:** Support version `19.05`, `19.06`, `19.07`, `19.08` and `19.09` ([#2862](https://github.com/ReVanced/revanced-patches/issues/2862)) ([f044dde](https://github.com/ReVanced/revanced-patches/commit/f044dde054861ff16846a6be6287f86fa3afb3d8))
+
# [4.4.0-dev.15](https://github.com/ReVanced/revanced-patches/compare/v4.4.0-dev.14...v4.4.0-dev.15) (2024-03-27)
diff --git a/gradle.properties b/gradle.properties
index eacce669eb..fa4f042dc7 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.4.0-dev.15
+version = 4.4.0
|
chore
|
4.4.0 [skip ci]
|
a7f86cd94b8eaa6189d9184d58d4b04d95c64c67
|
2022-07-21 02:03:51
|
semantic-release-bot
|
chore(release): 2.20.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df671c2eb4..b2f9e2bd4f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.20.1](https://github.com/revanced/revanced-patches/compare/v2.20.0...v2.20.1) (2022-07-20)
+
+
+### Bug Fixes
+
+* autoplay still enabled when using patch ([4f96129](https://github.com/revanced/revanced-patches/commit/4f961298f6cb6417ee3f3d6f8ac7ce96594ed03b))
+
# [2.20.0](https://github.com/revanced/revanced-patches/compare/v2.19.0...v2.20.0) (2022-07-18)
diff --git a/README.md b/README.md
index 9fefea28ba..328215f4e4 100644
--- a/README.md
+++ b/README.md
@@ -6,38 +6,38 @@
| 💊 Patch | 📜 Description | 🎯 Target Package | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|:-----------------:|
-| `music-video-ads` | Removes ads in the music player. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `exclusive-audio-playback` | Enables the option to play music without video. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `codecs-unlock` | Adds more audio codec options. The new audio codecs usually result in better audio quality. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `background-play` | Enables playing music in the background. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `compact-header` | Hides the music category bar at the top of the homepage. | `com.google.android.apps.youtube.music` | 5.14.53 |
| `minimized-playback-music` | Enables minimized playback on Kids music. | `com.google.android.apps.youtube.music` | 5.14.53 |
| `tasteBuilder-remover` | Removes the "Tell us which artists you like" card from the home screen. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `upgrade-button-remover` | Removes the upgrade tab from the pivot bar. | `com.google.android.apps.youtube.music` | 5.14.53 |
| `hide-get-premium` | Removes all "Get Premium" evidences from the avatar menu. | `com.google.android.apps.youtube.music` | 5.14.53 |
-| `hide-infocard-suggestions` | Hides infocards in videos. | `com.google.android.youtube` | 17.27.39 |
-| `video-ads` | Removes ads in the video player. | `com.google.android.youtube` | 17.27.39 |
-| `general-ads` | Removes general ads. | `com.google.android.youtube` | 17.27.39 |
-| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | `com.google.android.youtube` | 17.27.39 |
+| `compact-header` | Hides the music category bar at the top of the homepage. | `com.google.android.apps.youtube.music` | 5.14.53 |
+| `upgrade-button-remover` | Removes the upgrade tab from the pivot bar. | `com.google.android.apps.youtube.music` | 5.14.53 |
+| `background-play` | Enables playing music in the background. | `com.google.android.apps.youtube.music` | 5.14.53 |
+| `music-video-ads` | Removes ads in the music player. | `com.google.android.apps.youtube.music` | 5.14.53 |
+| `codecs-unlock` | Adds more audio codec options. The new audio codecs usually result in better audio quality. | `com.google.android.apps.youtube.music` | 5.14.53 |
+| `exclusive-audio-playback` | Enables the option to play music without video. | `com.google.android.apps.youtube.music` | 5.14.53 |
| `swipe-controls` | Adds volume and brightness swipe controls. | `com.google.android.youtube` | 17.27.39 |
-| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG | `com.google.android.youtube` | 17.27.39 |
-| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | `com.google.android.youtube` | 17.27.39 |
-| `autorepeat-by-default` | Enables auto repeating of videos by default. | `com.google.android.youtube` | 17.27.39 |
-| `custom-playback-speed` | Adds more video playback speed options. | `com.google.android.youtube` | 17.27.39 |
-| `enable-debugging` | Enables app debugging by patching the manifest file. | `com.google.android.youtube` | all |
-| `force-vp9-codec` | Forces the VP9 codec for videos. | `com.google.android.youtube` | 17.27.39 |
-| `sponsorblock` | Integrate SponsorBlock. | `com.google.android.youtube` | 17.27.39 |
-| `old-quality-layout` | Enables the original quality flyout menu. | `com.google.android.youtube` | 17.27.39 |
-| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | `com.google.android.youtube` | 17.27.39 |
-| `hide-cast-button` | Hides the cast button in the video player. | `com.google.android.youtube` | all |
+| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | `com.google.android.youtube` | 17.27.39 |
+| `minimized-playback` | Enables minimized and background playback. | `com.google.android.youtube` | 17.27.39 |
| `amoled` | Enables pure black theme. | `com.google.android.youtube` | 17.27.39 |
+| `disable-create-button` | Hides the create button in the navigation bar. | `com.google.android.youtube` | 17.27.39 |
+| `hide-cast-button` | Hides the cast button in the video player. | `com.google.android.youtube` | all |
+| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | `com.google.android.youtube` | 17.27.39 |
| `hide-autoplay-button` | Hides the autoplay button in the video player. | `com.google.android.youtube` | 17.27.39 |
-| `minimized-playback` | Enables minimized and background playback. | `com.google.android.youtube` | 17.27.39 |
| `premium-heading` | Shows premium branding on the home screen. | `com.google.android.youtube` | all |
| `custom-branding` | Changes the YouTube launcher icon to be ReVanced's. | `com.google.android.youtube` | all |
-| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | `com.google.android.youtube` | 17.27.39 |
| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | `com.google.android.youtube` | 17.27.39 |
+| `old-quality-layout` | Enables the original quality flyout menu. | `com.google.android.youtube` | 17.27.39 |
| `hide-shorts-button` | Hides the shorts button on the navigation bar. | `com.google.android.youtube` | 17.27.39 |
-| `disable-create-button` | Hides the create button in the navigation bar. | `com.google.android.youtube` | 17.27.39 |
| `hide-watermark` | Hides creator's watermarks on videos. | `com.google.android.youtube` | 17.27.39 |
+| `sponsorblock` | Integrate SponsorBlock. | `com.google.android.youtube` | 17.27.39 |
+| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | `com.google.android.youtube` | 17.27.39 |
+| `force-vp9-codec` | Forces the VP9 codec for videos. | `com.google.android.youtube` | 17.27.39 |
+| `autorepeat-by-default` | Enables auto repeating of videos by default. | `com.google.android.youtube` | 17.27.39 |
+| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG | `com.google.android.youtube` | 17.27.39 |
+| `enable-debugging` | Enables app debugging by patching the manifest file. | `com.google.android.youtube` | all |
+| `custom-playback-speed` | Adds more video playback speed options. | `com.google.android.youtube` | 17.27.39 |
+| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | `com.google.android.youtube` | 17.27.39 |
+| `video-ads` | Removes ads in the video player. | `com.google.android.youtube` | 17.27.39 |
+| `general-ads` | Removes general ads. | `com.google.android.youtube` | 17.27.39 |
+| `hide-infocard-suggestions` | Hides infocards in videos. | `com.google.android.youtube` | 17.27.39 |
diff --git a/gradle.properties b/gradle.properties
index fed62b4100..891a094e81 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.20.0
+version = 2.20.1
|
chore
|
2.20.1 [skip ci]
|
f82500b921b148e56a8ce699f7b52fc5dc020e7e
|
2022-09-03 09:16:55
|
Tititvoot Pangrit
|
fix: don't respect primary color for the download button icon (#424)
| false
|
diff --git a/src/main/resources/downloads/drawable/revanced_yt_download_button.xml b/src/main/resources/downloads/drawable/revanced_yt_download_button.xml
index 44ef4b6aaa..125743f860 100644
--- a/src/main/resources/downloads/drawable/revanced_yt_download_button.xml
+++ b/src/main/resources/downloads/drawable/revanced_yt_download_button.xml
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<vector xmlns:android="http://schemas.android.com/apk/res/android" android:tint="?attr/ytTextPrimary" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24">
- <path android:fillColor="#ff000000" android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
-</vector>
\ No newline at end of file
+<vector xmlns:android="http://schemas.android.com/apk/res/android" android:tint="#FFFFFF" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24">
+ <path android:fillColor="#FFFFFF" android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
+</vector>
|
fix
|
don't respect primary color for the download button icon (#424)
|
4fc9845d4b5622826f30d98b7737314a4cd21f7c
|
2023-12-03 03:07:04
|
semantic-release-bot
|
chore(release): 2.203.0-dev.2 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ccb751fff0..8d83056385 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.203.0-dev.2](https://github.com/ReVanced/revanced-patches/compare/v2.203.0-dev.1...v2.203.0-dev.2) (2023-12-02)
+
+
+### Features
+
+* Publish as a library ([#3356](https://github.com/ReVanced/revanced-patches/issues/3356)) ([4b878ee](https://github.com/ReVanced/revanced-patches/commit/4b878eeeda7d8b97ddd0911077b701c36dec5e43))
+
# [2.203.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v2.202.0...v2.203.0-dev.1) (2023-12-02)
diff --git a/gradle.properties b/gradle.properties
index eb7174e34a..e8bd69adb9 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 2.203.0-dev.1
+version = 2.203.0-dev.2
|
chore
|
2.203.0-dev.2 [skip ci]
|
a8524e60207181ff22d9b82c23316f752c693ab7
|
2022-08-05 07:18:03
|
oSumAtrIX
|
refactor: use approriate description
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/videobuffer/patch/CustomVideoBufferPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/videobuffer/patch/CustomVideoBufferPatch.kt
index b11c99f0e0..b407bebefc 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/videobuffer/patch/CustomVideoBufferPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/videobuffer/patch/CustomVideoBufferPatch.kt
@@ -17,7 +17,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
@Name("custom-video-buffer")
-@Description("Lets you change the buffers of videos. Has no use without settings yet.")
+@Description("Lets you change the buffers of videos.")
@CustomVideoBufferCompatibility
@Version("0.0.1")
class CustomVideoBufferPatch : BytecodePatch(
|
refactor
|
use approriate description
|
8fb945a461b59ffbe317e3565914f11a5ca44b86
|
2023-11-03 22:54:26
|
oSumAtrIX
|
build(Needs bump): Bump dependencies
| false
|
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 6956513d1d..23b40094ab 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -1,5 +1,5 @@
[versions]
-revanced-patcher = "18.0.0"
+revanced-patcher = "19.0.0"
smali = "3.0.3"
guava = "32.1.2-jre"
gson = "2.10.1"
|
build
|
Bump dependencies
|
4d84c1914f8ecf51cee25667219bc6cf635a6c1c
|
2022-07-07 00:01:59
|
TheJeterLP
|
fix: add 17.25.34 as supported version for swipe-controls patch
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/interaction/fenster/annotation/FensterCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/interaction/fenster/annotation/FensterCompatibility.kt
index 1bba302287..5929a12e08 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/interaction/fenster/annotation/FensterCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/interaction/fenster/annotation/FensterCompatibility.kt
@@ -3,12 +3,11 @@ package app.revanced.patches.youtube.interaction.fenster.annotation
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
-//TODO the patch may be compatible with more versions, but this is the one i'm testing on right now...
@Compatibility(
[Package(
- "com.google.android.youtube", arrayOf("17.24.34")
+ "com.google.android.youtube", arrayOf("17.24.34", "17.25.34")
)]
)
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
-internal annotation class FensterCompatibility
\ No newline at end of file
+internal annotation class FensterCompatibility
|
fix
|
add 17.25.34 as supported version for swipe-controls patch
|
98c7a8418dcc9d1144100f62ea80531442ae594f
|
2023-06-07 06:32:07
|
LisoUseInAIKyrios
|
build(revanced-patcher): bump version (#2324)
| false
|
diff --git a/build.gradle.kts b/build.gradle.kts
index 722156d50a..ad15946fa5 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -27,7 +27,7 @@ repositories {
}
dependencies {
- implementation("app.revanced:revanced-patcher:9.0.0")
+ implementation("app.revanced:revanced-patcher:10.0.0")
implementation("app.revanced:multidexlib2:2.5.3-a3836654")
// Required for meta
implementation("com.google.code.gson:gson:2.10.1")
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
index e50f656993..ebca7a6ba3 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/GooglePlayUtilityFingerprint.kt
@@ -5,8 +5,8 @@ import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags
object GooglePlayUtilityFingerprint : MethodFingerprint(
- "I",
- AccessFlags.PUBLIC or AccessFlags.STATIC,
- listOf("L", "L"),
+ returnType = "I",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC,
+ parameters = listOf("L", "I"),
strings = listOf("This should never happen.", "MetadataValueReader", "com.google.android.gms")
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
index 9a07e25461..8c98f055a6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/fingerprints/ServiceCheckFingerprint.kt
@@ -5,6 +5,8 @@ import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags
object ServiceCheckFingerprint : MethodFingerprint(
- "V", AccessFlags.PUBLIC or AccessFlags.STATIC, listOf("L", "I"),
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC,
+ parameters = listOf("L", "I"),
strings = listOf("Google Play Services not available", "GooglePlayServices not available due to error ")
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt b/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
index b4b4038cb8..e780aafed5 100644
--- a/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
+++ b/src/main/kotlin/app/revanced/util/microg/MicroGBytecodeHelper.kt
@@ -5,6 +5,7 @@ import app.revanced.patcher.extensions.addInstruction
import app.revanced.patcher.extensions.addInstructions
import app.revanced.patcher.extensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.util.microg.Constants.ACTIONS
@@ -218,6 +219,7 @@ internal object MicroGBytecodeHelper {
*/
private fun List<MethodFingerprint>.returnEarly() {
this.forEach { fingerprint ->
+ if (fingerprint.result == null) throw PatchResultError(fingerprint.toString())
val result = fingerprint.result!!
val stringInstructions = when (result.method.returnType.first()) {
'L' -> """
|
build
|
bump version (#2324)
|
0c75929a83729841197b482d28f7f7f5f9cec332
|
2024-11-11 07:03:12
|
oSumAtrIX
|
fix(Tiktok - Settings): Fix the patch by depending on the correct settings patch
| false
|
diff --git a/patches/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/SpoofSimPatch.kt b/patches/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/SpoofSimPatch.kt
index 593241d15b..40a45650de 100644
--- a/patches/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/SpoofSimPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/tiktok/misc/spoof/sim/SpoofSimPatch.kt
@@ -5,8 +5,8 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.bytecodePatch
import app.revanced.patches.tiktok.misc.extension.sharedExtensionPatch
+import app.revanced.patches.tiktok.misc.settings.settingsPatch
import app.revanced.patches.tiktok.misc.settings.settingsStatusLoadFingerprint
-import app.revanced.patches.twitch.misc.settings.settingsPatch
import app.revanced.util.findMutableMethodOf
import com.android.tools.smali.dexlib2.Opcode
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
|
fix
|
Fix the patch by depending on the correct settings patch
|
7752b962efd5dcb616b9e3b70719a502b8b282ef
|
2022-10-10 18:38:57
|
semantic-release-bot
|
chore(release): 2.81.5 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3141740ac2..eeda06ecbb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.81.5](https://github.com/revanced/revanced-patches/compare/v2.81.4...v2.81.5) (2022-10-10)
+
+
+### Bug Fixes
+
+* **video-ads:** clobber unused register ([0feb607](https://github.com/revanced/revanced-patches/commit/0feb6073dd3de5dc179ffa9fde2da24439986431))
+
## [2.81.4](https://github.com/revanced/revanced-patches/compare/v2.81.3...v2.81.4) (2022-10-10)
diff --git a/gradle.properties b/gradle.properties
index d0e22c90a6..e82829c4de 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.81.4
+version = 2.81.5
|
chore
|
2.81.5 [skip ci]
|
54f20c308c56a66d0a3b96e582f1f22a102cadd9
|
2023-11-22 04:18:29
|
oSumAtrIX
|
chore: Do not use a line break in issue template sentence
| false
|
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index 910adefc79..ce8a585040 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -8,9 +8,7 @@ body:
value: |
# ReVanced Patches bug report
- Please check for existing bug reports
- [here](https://github.com/ReVanced/revanced-patches/labels/Bug%20report)
- before creating a new one.
+ Please check for existing bug reports [here](https://github.com/ReVanced/revanced-patches/labels/Bug%20report) before creating a new one.
- type: textarea
attributes:
diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml
index 63f7ad2da8..187656c840 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.yml
+++ b/.github/ISSUE_TEMPLATE/feature-request.yml
@@ -8,9 +8,7 @@ body:
value: |
# ReVanced Patches feature request
- Please check for existing feature requests
- [here](https://github.com/ReVanced/revanced-patches/labels/Feature%20request)
- before creating a new one.
+ Please check for existing feature requests [here](https://github.com/ReVanced/revanced-patches/labels/Feature%20request) before creating a new one.
- type: textarea
attributes:
label: Feature description
|
chore
|
Do not use a line break in issue template sentence
|
f9a6672122eb28fe06c9f5e137906ad868a491d6
|
2023-04-16 22:51:29
|
Sebok Andras
|
feat: `change-package-name` patch (#1864)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt
new file mode 100644
index 0000000000..f94fdf331f
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/all/misc/packagename/patch/ChangePackageNamePatch.kt
@@ -0,0 +1,50 @@
+package app.revanced.patches.all.misc.packagename.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.ResourceContext
+import app.revanced.patcher.patch.*
+import app.revanced.patcher.patch.annotations.Patch
+import org.w3c.dom.Element
+
+@Patch(false)
+@Name("change-package-name")
+@Description("Changes the package name.")
+@Version("0.0.1")
+class ChangePackageNamePatch : ResourcePatch {
+ override fun execute(context: ResourceContext): PatchResult {
+ packageName?.let { packageName ->
+ val packageNameRegex = Regex("^[a-z]\\w*(\\.[a-z]\\w*)+\$")
+ if (!packageName.matches(packageNameRegex))
+ return PatchResultError("Invalid package name")
+
+ var originalPackageName = ""
+ context.xmlEditor["AndroidManifest.xml"].use { editor ->
+ val manifest = editor.file.getElementsByTagName("manifest").item(0) as Element
+ originalPackageName = manifest.getAttribute("package")
+ }
+
+ if (!originalPackageName.matches(packageNameRegex))
+ return PatchResultError("Failed to get the original package name")
+
+ context["AndroidManifest.xml"].apply {
+ readText().replace(originalPackageName, packageName).let(::writeText)
+ }
+
+ } ?: return PatchResultError("No package name provided")
+
+ return PatchResultSuccess()
+ }
+
+ companion object : OptionsContainer() {
+ var packageName: String? by option(
+ PatchOption.StringOption(
+ key = "packageName",
+ default = "",
+ title = "Package name",
+ description = "The name of the package to rename of the app.",
+ )
+ )
+ }
+}
\ No newline at end of file
|
feat
|
`change-package-name` patch (#1864)
|
2442902dacc25f2c932a6689e9788e5a02fdff6b
|
2023-11-22 03:39:57
|
oSumAtrIX
|
fix(YouTube - Remove tracking query parameter): Sanitize shared URLs in remaining places
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt
index 616b544b5c..d4580811d7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/RemoveTrackingQueryParameterPatch.kt
@@ -1,16 +1,23 @@
package app.revanced.patches.youtube.misc.privacy
+import app.revanced.extensions.exception
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
+import app.revanced.patcher.fingerprint.MethodFingerprint
+import app.revanced.patcher.fingerprint.MethodFingerprintResult.MethodFingerprintScanResult.PatternScanResult
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.integrations.IntegrationsPatch
import app.revanced.patches.youtube.misc.privacy.fingerprints.CopyTextFingerprint
+import app.revanced.patches.youtube.misc.privacy.fingerprints.SystemShareSheetFingerprint
+import app.revanced.patches.youtube.misc.privacy.fingerprints.YouTubeShareSheetFingerprint
import app.revanced.patches.youtube.misc.settings.SettingsPatch
+import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Patch(
@@ -30,7 +37,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
)
@Suppress("unused")
object RemoveTrackingQueryParameterPatch : BytecodePatch(
- setOf(CopyTextFingerprint)
+ setOf(CopyTextFingerprint, SystemShareSheetFingerprint, YouTubeShareSheetFingerprint)
) {
const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/RemoveTrackingQueryParameterPatch;"
@@ -53,21 +60,31 @@ object RemoveTrackingQueryParameterPatch : BytecodePatch(
)
)
- CopyTextFingerprint.result?.let {
- val insertIndex = it.scanResult.patternScanResult!!.startIndex + 2
+ fun MethodFingerprint.hook(
+ getInsertIndex: PatternScanResult.() -> Int,
+ getUrlRegister: MutableMethod.(insertIndex: Int) -> Int
+ ) = result?.let {
+ val insertIndex = it.scanResult.patternScanResult!!.getInsertIndex()
+ val urlRegister = it.mutableMethod.getUrlRegister(insertIndex)
- it.mutableMethod.apply {
- val urlRegister = getInstruction<TwoRegisterInstruction>(insertIndex - 2).registerA
+ it.mutableMethod.addInstructions(
+ insertIndex,
+ """
+ invoke-static {v$urlRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->sanitize(Ljava/lang/String;)Ljava/lang/String;
+ move-result-object v$urlRegister
+ """
+ )
+ } ?: throw exception
+
+ // Native YouTube share sheet.
+ YouTubeShareSheetFingerprint.hook(getInsertIndex = { startIndex + 1 })
+ { insertIndex -> getInstruction<OneRegisterInstruction>(insertIndex - 1).registerA }
- addInstructions(
- insertIndex,
- """
- invoke-static {v$urlRegister}, $INTEGRATIONS_CLASS_DESCRIPTOR->sanitize(Ljava/lang/String;)Ljava/lang/String;
- move-result-object v$urlRegister
- """
- )
- }
+ // Native system share sheet.
+ SystemShareSheetFingerprint.hook(getInsertIndex = { endIndex })
+ { insertIndex -> getInstruction<OneRegisterInstruction>(insertIndex - 1).registerA }
- }
+ CopyTextFingerprint.hook(getInsertIndex = { startIndex + 2 })
+ { insertIndex -> getInstruction<TwoRegisterInstruction>(insertIndex - 2).registerA }
}
}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/SystemShareSheetFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/SystemShareSheetFingerprint.kt
new file mode 100644
index 0000000000..2927e614a5
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/SystemShareSheetFingerprint.kt
@@ -0,0 +1,14 @@
+package app.revanced.patches.youtube.misc.privacy.fingerprints
+
+import app.revanced.patcher.fingerprint.MethodFingerprint
+import com.android.tools.smali.dexlib2.Opcode
+
+object SystemShareSheetFingerprint : MethodFingerprint(
+ returnType = "V",
+ parameters = listOf("L", "Ljava/util/Map;"),
+ opcodes = listOf(
+ Opcode.CHECK_CAST,
+ Opcode.GOTO
+ ),
+ strings = listOf("YTShare_Logging_Share_Intent_Endpoint_Byte_Array")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/YouTubeShareSheetFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/YouTubeShareSheetFingerprint.kt
new file mode 100644
index 0000000000..4aae6f9b02
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/privacy/fingerprints/YouTubeShareSheetFingerprint.kt
@@ -0,0 +1,18 @@
+package app.revanced.patches.youtube.misc.privacy.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.MethodFingerprint
+import com.android.tools.smali.dexlib2.AccessFlags
+import com.android.tools.smali.dexlib2.Opcode
+
+object YouTubeShareSheetFingerprint : MethodFingerprint(
+ returnType = "V",
+ accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
+ parameters = listOf("L", "Ljava/util/Map;"),
+ opcodes = listOf(
+ Opcode.CHECK_CAST,
+ Opcode.GOTO,
+ Opcode.MOVE_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ )
+)
\ No newline at end of file
|
fix
|
Sanitize shared URLs in remaining places
|
6f2e474428fccf4a177d38a03c3fb15037a6590d
|
2025-01-24 01:48:40
|
semantic-release-bot
|
chore: Release v5.10.0-dev.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee3ce8108f..233980dee2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.10.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v5.9.1-dev.4...v5.10.0-dev.1) (2025-01-23)
+
+
+### Features
+
+* **YouTube - Theme:** Add option to use custom seekbar accent color ([#4337](https://github.com/ReVanced/revanced-patches/issues/4337)) ([952b4fc](https://github.com/ReVanced/revanced-patches/commit/952b4fc4c9291e1a3e71437b503857763c973dd4))
+
## [5.9.1-dev.4](https://github.com/ReVanced/revanced-patches/compare/v5.9.1-dev.3...v5.9.1-dev.4) (2025-01-22)
diff --git a/gradle.properties b/gradle.properties
index 8bb32e26d9..59520c9a5b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.9.1-dev.4
+version = 5.10.0-dev.1
|
chore
|
Release v5.10.0-dev.1 [skip ci]
|
2ace07d7f87e3979980dafcb890925912d9cbe99
|
2024-11-06 21:49:16
|
oSumAtrIX
|
chore(YouTube - Announcements): Use API v4 to get announcements (#3869)
| false
|
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/AnnouncementsPatch.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/AnnouncementsPatch.java
index 54d4cddc0e..f1fdd2a26e 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/AnnouncementsPatch.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/AnnouncementsPatch.java
@@ -2,7 +2,8 @@
import static android.text.Html.FROM_HTML_MODE_COMPACT;
import static app.revanced.extension.shared.StringRef.str;
-import static app.revanced.extension.youtube.patches.announcements.requests.AnnouncementsRoutes.GET_LATEST_ANNOUNCEMENT;
+import static app.revanced.extension.youtube.patches.announcements.requests.AnnouncementsRoutes.GET_LATEST_ANNOUNCEMENTS;
+import static app.revanced.extension.youtube.patches.announcements.requests.AnnouncementsRoutes.GET_LATEST_ANNOUNCEMENT_IDS;
import android.app.Activity;
import android.app.AlertDialog;
@@ -13,11 +14,14 @@
import androidx.annotation.RequiresApi;
+import org.json.JSONArray;
import org.json.JSONObject;
import java.io.IOException;
import java.net.HttpURLConnection;
+import java.time.LocalDateTime;
import java.util.Locale;
+import java.util.logging.Level;
import app.revanced.extension.shared.Logger;
import app.revanced.extension.shared.Utils;
@@ -30,6 +34,45 @@ public final class AnnouncementsPatch {
private AnnouncementsPatch() {
}
+ @RequiresApi(api = Build.VERSION_CODES.O)
+ private static boolean isLatestAlready() throws IOException {
+ HttpURLConnection connection =
+ AnnouncementsRoutes.getAnnouncementsConnectionFromRoute(GET_LATEST_ANNOUNCEMENT_IDS);
+
+ Logger.printDebug(() -> "Get latest announcement IDs route connection url: " + connection.getURL());
+
+ try {
+ // Do not show the announcement if the request failed.
+ if (connection.getResponseCode() != 200) {
+ if (Settings.ANNOUNCEMENT_LAST_ID.isSetToDefault())
+ return true;
+
+ Settings.ANNOUNCEMENT_LAST_ID.resetToDefault();
+ Utils.showToastLong(str("revanced_announcements_connection_failed"));
+
+ return true;
+ }
+ } catch (IOException ex) {
+ Logger.printException(() -> "Could not connect to announcements provider", ex);
+ return true;
+ }
+
+ var jsonString = Requester.parseStringAndDisconnect(connection);
+
+ // Parse the ID. Fall-back to raw string if it fails.
+ int id = Settings.ANNOUNCEMENT_LAST_ID.defaultValue;
+ try {
+ final var announcementIds = new JSONArray(jsonString);
+ id = announcementIds.getJSONObject(0).getInt("id");
+
+ } catch (Throwable ex) {
+ Logger.printException(() -> "Failed to parse announcement IDs", ex);
+ }
+
+ // Do not show the announcement, if the last announcement id is the same as the current one.
+ return Settings.ANNOUNCEMENT_LAST_ID.get() == id;
+ }
+
@RequiresApi(api = Build.VERSION_CODES.O)
public static void showAnnouncement(final Activity context) {
if (!Settings.ANNOUNCEMENTS.get()) return;
@@ -39,26 +82,12 @@ public static void showAnnouncement(final Activity context) {
Utils.runOnBackgroundThread(() -> {
try {
- HttpURLConnection connection = AnnouncementsRoutes.getAnnouncementsConnectionFromRoute(
- GET_LATEST_ANNOUNCEMENT, Locale.getDefault().toLanguageTag());
-
- Logger.printDebug(() -> "Get latest announcement route connection url: " + connection.getURL());
+ if (isLatestAlready()) return;
- try {
- // Do not show the announcement if the request failed.
- if (connection.getResponseCode() != 200) {
- if (Settings.ANNOUNCEMENT_LAST_ID.isSetToDefault())
- return;
+ HttpURLConnection connection = AnnouncementsRoutes.getAnnouncementsConnectionFromRoute(
+ GET_LATEST_ANNOUNCEMENTS, Locale.getDefault().toLanguageTag());
- Settings.ANNOUNCEMENT_LAST_ID.resetToDefault();
- Utils.showToastLong(str("revanced_announcements_connection_failed"));
-
- return;
- }
- } catch (IOException ex) {
- Logger.printException(() -> "Could not connect to announcements provider", ex);
- return;
- }
+ Logger.printDebug(() -> "Get latest announcements route connection url: " + connection.getURL());
var jsonString = Requester.parseStringAndDisconnect(connection);
@@ -66,6 +95,7 @@ public static void showAnnouncement(final Activity context) {
int id = Settings.ANNOUNCEMENT_LAST_ID.defaultValue;
String title;
String message;
+ LocalDateTime archivedAt = LocalDateTime.MAX;
Level level = Level.INFO;
try {
final var announcement = new JSONObject(jsonString);
@@ -73,8 +103,12 @@ public static void showAnnouncement(final Activity context) {
id = announcement.getInt("id");
title = announcement.getString("title");
message = announcement.getJSONObject("content").getString("message");
- if (!announcement.isNull("level")) level = Level.fromInt(announcement.getInt("level"));
-
+ if (!announcement.isNull("archived_at")) {
+ archivedAt = LocalDateTime.parse(announcement.getString("archived_at"));
+ }
+ if (!announcement.isNull("level")) {
+ level = Level.fromInt(announcement.getInt("level"));
+ }
} catch (Throwable ex) {
Logger.printException(() -> "Failed to parse announcement. Fall-backing to raw string", ex);
@@ -82,8 +116,11 @@ public static void showAnnouncement(final Activity context) {
message = jsonString;
}
- // Do not show the announcement, if the last announcement id is the same as the current one.
- if (Settings.ANNOUNCEMENT_LAST_ID.get() == id) return;
+ // If the announcement is archived, do not show it.
+ if (archivedAt.isBefore(LocalDateTime.now())) {
+ Settings.ANNOUNCEMENT_LAST_ID.save(id);
+ return;
+ }
int finalId = id;
final var finalTitle = title;
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/requests/AnnouncementsRoutes.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/requests/AnnouncementsRoutes.java
index 94d340e6e9..6ee8b15a82 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/requests/AnnouncementsRoutes.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/announcements/requests/AnnouncementsRoutes.java
@@ -9,12 +9,9 @@
import static app.revanced.extension.youtube.requests.Route.Method.GET;
public class AnnouncementsRoutes {
- private static final String ANNOUNCEMENTS_PROVIDER = "https://api.revanced.app/v2";
-
- /**
- * 'language' parameter is IETF format (for USA it would be 'en-us').
- */
- public static final Route GET_LATEST_ANNOUNCEMENT = new Route(GET, "/announcements/youtube/latest?language={language}");
+ public static final Route GET_LATEST_ANNOUNCEMENTS = new Route(GET, "/announcements/latest?tag=youtube");
+ public static final Route GET_LATEST_ANNOUNCEMENT_IDS = new Route(GET, "/announcements/latest/id?tag=youtube");
+ private static final String ANNOUNCEMENTS_PROVIDER = "https://api.revanced.app/v4";
private AnnouncementsRoutes() {
}
|
chore
|
Use API v4 to get announcements (#3869)
|
cc5605b431e6f491ff6f47bce2023f1e11d383d8
|
2023-11-18 09:37:57
|
semantic-release-bot
|
chore(release): 2.197.0-dev.5 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index adaba8d5bb..72da335595 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+# [2.197.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v2.197.0-dev.4...v2.197.0-dev.5) (2023-11-18)
+
+
+### Bug Fixes
+
+* Use a checked cast by reifying the generic type parameter ([f7a296e](https://github.com/ReVanced/revanced-patches/commit/f7a296e1f17d7bfb5fd303ee83cabd8d625781b9))
+
+
+### Features
+
+* **YouTube - Client spoof:** Add description to preference screen ([843a568](https://github.com/ReVanced/revanced-patches/commit/843a56854465fe2052977cd2a8f24ecb839f8d2a))
+* **YouTube - Hide layout components:** Add description to preference screen ([cc85441](https://github.com/ReVanced/revanced-patches/commit/cc854415e2311d4a06805a49a052fc8a16924739))
+* **YouTube - Hide layout components:** Hide description components ([38b8e44](https://github.com/ReVanced/revanced-patches/commit/38b8e44ec494e7dea24066dc2f5af578e01d58dc))
+* **YouTube - Navigation buttons:** Add description to preference screen ([14ea967](https://github.com/ReVanced/revanced-patches/commit/14ea9674c4e65ff2a92962222860b8035c7cda3f))
+* **YouTube - Seekbar:** Add description to preference screen ([ea6de49](https://github.com/ReVanced/revanced-patches/commit/ea6de498e3b002feeabf72d20059090db0be7f94))
+* **YouTube - Settings:** Sort preference screens below other types of preference ([9561db5](https://github.com/ReVanced/revanced-patches/commit/9561db50a82b0eeed07fe6541bc29a37f85b7caa))
+* **YouTube:** Support version `18.45.41` ([7c4f021](https://github.com/ReVanced/revanced-patches/commit/7c4f021f8c849dfc448c18ffc800da39576be617))
+
# [2.197.0-dev.4](https://github.com/ReVanced/revanced-patches/compare/v2.197.0-dev.3...v2.197.0-dev.4) (2023-11-17)
diff --git a/gradle.properties b/gradle.properties
index ec19640515..0bc831f3ef 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 2.197.0-dev.4
+version = 2.197.0-dev.5
diff --git a/patches.json b/patches.json
index da9454b3d8..8268d45eb1 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"Hide inbox ads","description":"Hides ads in inbox.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable switching emoji to sticker","description":"Disables switching from emoji to sticker search mode in message input field.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable typing indicator","description":"Disables the indicator while typing a message.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable mandatory login","description":null,"compatiblePackages":[{"name":"com.adobe.lrmobile","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock premium","description":null,"compatiblePackages":[{"name":"com.adobe.lrmobile","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock plus","description":null,"compatiblePackages":[{"name":"com.microblink.photomath","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof device ID","description":"Spoofs device ID to mitigate manual bans by developers.","compatiblePackages":[{"name":"com.microblink.photomath","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","compatiblePackages":[{"name":"at.gv.bka.serviceportal","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove device restrictions","description":"Removes restrictions from using the app on any device. Requires mounting patched app over original.","compatiblePackages":[{"name":"com.google.android.apps.recorder","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"com.myprog.hexedit","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide timeline ads","description":"Removes ads from the timeline.","compatiblePackages":[{"name":"com.instagram.android","versions":["275.0.0.27.98"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"SIM spoof","description":"Spoofs the information which is retrieved from the SIM card.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Settings","description":"Adds ReVanced settings to TikTok.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable login requirement","description":null,"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Fix Google login","description":"Allows logging in with a Google account.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Playback speed","description":"Enables the playback speed option for all videos.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show seekbar","description":"Shows progress bar for all video.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Downloads","description":"Removes download restrictions and changes the default path to download to.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Feed filter","description":"Filters tiktok videos: removing ads, removing livestreams.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Promo code unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","compatiblePackages":[{"name":"de.dwd.warnapp","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.nis.app","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.awedea.nyx","versions":["2.2.7"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable on demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","compatiblePackages":[{"name":"com.spotify.lite","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Custom theme","description":"Applies a custom theme.","compatiblePackages":[{"name":"com.spotify.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"backgroundColor","default":"@android:color/black","values":null,"title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false},{"key":"accentColor","default":"#ff1ed760","values":null,"title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false},{"key":"accentPressedColor","default":"#ff169c46","values":null,"title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false}]},{"name":"Hide premium navbar","description":"Removes the premium tab from the navbar.","compatiblePackages":[{"name":"com.spotify.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Removes general ads.","compatiblePackages":[{"name":"com.vanced.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions.","compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove bootloader detection","description":"Removes the check for an unlocked bootloader.","compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"jp.pxv.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Sanitize sharing links","description":"Removes (tracking) query parameters from the URLs when sharing links.","compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"ml.docilealligator.infinityforreddit","versions":["5.4.0","5.4.1","5.4.2","6.0.1","6.0.2","6.0.4","6.0.6","6.1.1"]}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"infinity://localhost\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"me.ccrama.redditslide","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://www.ccrama.me\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.onelouder.baconreader","versions":null},{"name":"com.onelouder.baconreader.premium","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://baconreader.com/auth\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.andrewshu.android.reddit","versions":null},{"name":"com.andrewshu.android.redditdonation","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"redditisfun://auth\".","required":true}]},{"name":"Disable Sync for Lemmy bottom sheet","description":"Disables the bottom sheet at the startup that asks you to signup to \"Sync for Lemmy\".","compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":["v23.06.30-13:39"]},{"name":"com.laurencedawson.reddit_sync.pro","versions":null},{"name":"com.laurencedawson.reddit_sync.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":null},{"name":"com.laurencedawson.reddit_sync.pro","versions":null},{"name":"com.laurencedawson.reddit_sync.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://redditsync/auth\".","required":true}]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"o.o.joey","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"o.o.joey","versions":null},{"name":"o.o.joey.pro","versions":null},{"name":"o.o.joey.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"https://127.0.0.1:65023/authorize_callback\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"free.reddit.news","versions":null},{"name":"reddit.news","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"dbrady://relay\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.rubenmayayo.reddit","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://rubenmayayo.com\".","required":true}]},{"name":"Unlock premium Reddit icons","description":null,"compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable screenshot popup","description":"Disables the popup that shows up when taking a screenshot.","compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":true,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass root checks","description":"Removes the restriction to use the app with root permissions or on a custom ROM.","compatiblePackages":[{"name":"it.ipzs.cieid","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":"Unlocks pro features.","compatiblePackages":[{"name":"com.vsco.cam","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable blog notification reminder","description":"Disables the reminder to enable notifications for blogs you visit.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable gift message popup","description":"Disables the popup suggesting to buy TumblrMart items for other people.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable in-app update","description":"Disables the in-app update check and update prompt.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable dashboard ads","description":"Disables ads in the dashboard.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable Tumblr Live","description":"Disable the Tumblr Live tab button and dashboard carousel.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Hides ads.","compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide recommended users","description":null,"compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Dynamic color","description":"Replaces the default Twitter Blue with the user\u0027s Material You palette.","compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide story ads","description":"Hides the ads in the Facebook app stories.","compatiblePackages":[{"name":"com.facebook.katana","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":"Unlocks all pro features.","compatiblePackages":[{"name":"co.windyapp.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show on lockscreen","description":"Shows student id and student ticket on lockscreen.","compatiblePackages":[{"name":"de.tudortmund.app","versions":null}],"use":true,"requiresIntegrations":true,"options":[]},{"name":"Pro unlock","description":null,"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove badge tab","description":"Removes the badge tab from the activity tab.","compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove notification badge","description":"Removes the red notification badge from the activity tab.","compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":["10.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","compatiblePackages":[{"name":"at.gv.oe.app","versions":["3.0.2"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof signature","description":"Spoofs the signature of the app.","compatiblePackages":[{"name":"at.gv.oe.app","versions":["3.0.2"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Always autorepeat","description":"Always repeats the playing video again.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof device dimensions","description":"Spoofs the device dimensions in order to unlock higher video qualities that may not be available on your device.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove tracking query parameter","description":"Remove the tracking query parameter from links.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Vanced MicroG support","description":"Allows YouTube to run without root and under a different package name with Vanced MicroG.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Minimized playback","description":"Enables minimized and background playback.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable zoom haptics","description":"Disables haptics when zooming.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Client spoof","description":"Spoofs the client to allow playback.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable debugging","description":"Adds debugging options.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass URL redirects","description":"Bypass URL redirects and open the original URL directly.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Open links externally","description":"Open links outside of the app directly in your browser.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Announcements","description":"Shows ReVanced announcements on startup.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"HDR auto brightness","description":"Makes the brightness of HDR videos follow the system default.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Playback speed","description":"Adds custom playback speeds and ability to remember the playback speed you chose in the video playback speed flyout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Restore old video quality menu","description":"Restores the old video quality with advanced video quality options.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remember video quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Swipe controls","description":"Adds volume and brightness swipe controls.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Seekbar tapping","description":"Enables tap-to-seek on the seekbar of the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable slide to seek","description":"Enable slide to seek instead of playing at 2x speed.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable precise seeking gesture","description":"Disables the gesture that is used to seek precisely when swiping up on the seekbar.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Copy video url","description":"Adds buttons in player to copy video links.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"External downloads","description":"Adds support to download and save YouTube videos using an external app.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Premium heading","description":"Show or hide the premium heading.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"usePremiumHeading","default":true,"values":null,"title":"Use premium heading","description":"Whether to use the premium heading.","required":true}]},{"name":"Custom branding","description":"Changes the app icon and name to your choice (defaults to YouTube ReVanced and the ReVanced logo).","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":false,"requiresIntegrations":false,"options":[{"key":"appName","default":"YouTube ReVanced","values":{"YouTube ReVanced":"YouTube ReVanced","YT":"YT","YouTube":"YouTube"},"title":"App name","description":"The name of the app.","required":false},{"key":"iconPath","default":"ReVanced*Logo","values":{"ReVanced Logo":"ReVanced*Logo"},"title":"App icon","description":"The path to a folder containing the following folders:\n\n- mipmap-xxxhdpi\n- mipmap-xxhdpi\n- mipmap-xhdpi\n- mipmap-hdpi\n- mipmap-mdpi\n\nEach of these folders has to have the following files:\n\n- adaptiveproduct_youtube_background_color_108.png\n- adaptiveproduct_youtube_foreground_color_108.png\n- ic_launcher.png\n- ic_launcher_round.png","required":false}]},{"name":"Spoof app version","description":"Tricks YouTube into thinking you are running an older version of the app. One of the side effects also includes restoring the old UI.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Wide searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Return YouTube Dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable suggested video end screen","description":"Disables the suggested video end screen at the end of a video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide Shorts components","description":"Hides components from YouTube Shorts.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Player flyout menu","description":"Hides player flyout menu items.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable fullscreen ambient mode","description":"Disables the ambient mode when in fullscreen.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide email address","description":"Hides the email address in the account switcher.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide album cards","description":"Hides the album cards below the artist description.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide info cards","description":"Hides info cards in videos.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide seekbar","description":"Hides the seekbar.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide filter bar","description":"Hides the filter bar in video feeds.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide floating microphone button","description":"Hides the floating microphone button which appears in search.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide breaking news shelf","description":"Hides the breaking news shelf on the homepage tab.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide timestamp","description":"Hides timestamp in video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide crowdfunding box","description":"Hides the crowdfunding box between the player and video description.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Comments","description":"Hides components related to comments.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide \u0027Load more\u0027 button","description":"Hides the button under videos that loads similar videos.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide endscreen cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide layout components","description":"Hides general layout components.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable auto captions","description":"Disable forced captions from being automatically enabled.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable tablet layout","description":"Spoofs the device form factor to a tablet which enables the tablet layout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide video action buttons","description":"Adds the options to hide action buttons under a video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide captions button","description":"Hides the captions button on video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide autoplay button","description":"Hides the autoplay button in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide player buttons","description":"Adds the option to hide video player previous and next buttons.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide cast button","description":"Hides the cast button in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Navigation buttons","description":"Adds options to hide or change navigation buttons.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Alternative thumbnails","description":"Adds options to replace video thumbnails with still image captures of the video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Tablet mini player","description":"Enables the tablet mini player layout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Theme","description":"Applies a custom theme.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[{"key":"darkThemeBackgroundColor","default":"@android:color/black","values":{"Amoled black":"@android:color/black","Material You":"@android:color/system_neutral1_900","Catppuccin (Mocha)":"#FF181825","Dark pink":"#FF290025","Dark blue":"#FF001029","Dark green":"#FF002905","Dark yellow":"#FF282900","Dark orange":"#FF291800","Dark red":"#FF290000"},"title":"Dark theme background color","description":"Can be a hex color (#AARRGGBB) or a color resource reference.","required":false},{"key":"lightThemeBackgroundColor","default":"@android:color/white","values":{"White":"@android:color/white","Material You":"@android:color/system_neutral1_50","Catppuccin (Latte)":"#FFE6E9EF","Light pink":"#FFFCCFF3","Light blue":"#FFD1E0FF","Light green":"#FFCCFFCC","Light yellow":"#FFFDFFCC","Light orange":"#FFFFE6CC","Light red":"#FFFFD6D6"},"title":"Light theme background color","description":"Can be a hex color (#AARRGGBB) or a color resource reference.","required":false}]},{"name":"Custom player overlay opacity","description":"Change the opacity of the player background, when player controls are visible.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove player controls background","description":"Removes the background from the video player controls.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Restore old seekbar thumbnails","description":"Restores the old seekbar thumbnails that appear above the seekbar instead of fullscreen thumbnails.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"SponsorBlock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable resuming Shorts on startup","description":"Disables resuming the Shorts player on app startup if a Short was last opened.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable player popup panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Video ads","description":"Removes ads in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Removes general ads.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove broadcasts restriction","description":"Enables starting/stopping NetGuard via broadcasts.","compatiblePackages":[{"name":"eu.faircode.netguard","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Vanced MicroG support","description":"Allows YouTube Music to run without root and under a different package name.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass certificate checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Codecs unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Exclusive audio playback","description":"Enables the option to play audio without video.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Permanent repeat","description":"Permanently remember your repeating preference even if the playlist ends or another track is played.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Permanent shuffle","description":"Permanently remember your shuffle preference even if the playlist ends or another track is played.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Compact header","description":"Hides the music category bar at the top of the homepage.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Remove upgrade button","description":"Removes the upgrade tab from the pivot bar.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Minimized playback music","description":"Enables minimized playback on Kids music.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide get premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Background play","description":"Enables playing music in the background.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Music video ads","description":"Removes ads in the music player.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable subscription suggestions","description":null,"compatiblePackages":[{"name":"com.strava","versions":["320.12"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock subscription features","description":"Unlocks \"Routes\", \"Matched Runs\" and \"Segment Efforts\".","compatiblePackages":[{"name":"com.strava","versions":["320.12"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove ads","description":null,"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.candylink.openvpn","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove debugging detection","description":"Removes the USB and wireless debugging checks.","compatiblePackages":[{"name":"com.scb.phone","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Unlock premium","description":null,"compatiblePackages":[{"name":"io.yuka.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"tv.trakt.trakt","versions":["1.1.1"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","compatiblePackages":[{"name":"com.ticktick.task","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Settings","description":"Adds settings menu to Twitch.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Debug mode","description":"Enables Twitch\u0027s internal debugging mode.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Auto claim channel points","description":"Automatically claim Channel Points.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show deleted messages","description":"Shows deleted chat messages behind a clickable spoiler.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block video ads","description":"Blocks video ads in streams and VODs.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block audio ads","description":"Blocks audio ads in streams and VODs.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block embedded ads","description":"Blocks embedded stream ads using services like Luminous or PurpleAdBlocker.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Export all activities","description":"Makes all app activities exportable.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Change package name","description":"Appends \".revanced\" to the package name by default.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[{"key":"packageName","default":"Default","values":{"Default":"Default"},"title":"Package name","description":"The name of the package to rename the app to.","required":true}]},{"name":"Enable Android debugging","description":"Enables Android debugging capabilities. This can slow down the app.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Override certificate pinning","description":"Overrides certificate pinning, allowing to inspect traffic via a proxy.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Remove screenshot restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Spoof SIM country","description":"Spoofs country information returned by the SIM card provider.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[{"key":"networkCountryIso","default":null,"values":null,"title":"Network ISO Country Code","description":"ISO-3166-1 alpha-2 country code equivalent of the MCC (Mobile Country Code) of the current registered operator or the cell nearby.","required":false},{"key":"simCountryIso","default":null,"values":null,"title":"Sim ISO Country Code","description":"ISO-3166-1 alpha-2 country code equivalent for the SIM provider\u0027s country code.","required":false}]},{"name":"Predictive back gesture","description":"Enables the predictive back gesture introduced on Android 13.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Spoof Wi-Fi connection","description":"Spoofs an existing Wi-Fi connection.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Remove screen capture restriction","description":"Removes the restriction of capturing audio from apps that normally wouldn\u0027t allow it.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.wakdev.apps.nfctools.se","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove file size limit","description":"Allows opening files larger than 2 MB in the text editor.","compatiblePackages":[{"name":"pl.solidexplorer2","versions":null}],"use":true,"requiresIntegrations":false,"options":[]}]
\ No newline at end of file
+[{"name":"Hide inbox ads","description":"Hides ads in inbox.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable switching emoji to sticker","description":"Disables switching from emoji to sticker search mode in message input field.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable typing indicator","description":"Disables the indicator while typing a message.","compatiblePackages":[{"name":"com.facebook.orca","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable mandatory login","description":null,"compatiblePackages":[{"name":"com.adobe.lrmobile","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock premium","description":null,"compatiblePackages":[{"name":"com.adobe.lrmobile","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock plus","description":null,"compatiblePackages":[{"name":"com.microblink.photomath","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof device ID","description":"Spoofs device ID to mitigate manual bans by developers.","compatiblePackages":[{"name":"com.microblink.photomath","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","compatiblePackages":[{"name":"at.gv.bka.serviceportal","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove device restrictions","description":"Removes restrictions from using the app on any device. Requires mounting patched app over original.","compatiblePackages":[{"name":"com.google.android.apps.recorder","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"com.myprog.hexedit","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide timeline ads","description":"Removes ads from the timeline.","compatiblePackages":[{"name":"com.instagram.android","versions":["275.0.0.27.98"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"SIM spoof","description":"Spoofs the information which is retrieved from the SIM card.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Settings","description":"Adds ReVanced settings to TikTok.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable login requirement","description":null,"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Fix Google login","description":"Allows logging in with a Google account.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Playback speed","description":"Enables the playback speed option for all videos.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show seekbar","description":"Shows progress bar for all video.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Downloads","description":"Removes download restrictions and changes the default path to download to.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Feed filter","description":"Filters tiktok videos: removing ads, removing livestreams.","compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":null},{"name":"com.zhiliaoapp.musically","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["30.8.4"]},{"name":"com.zhiliaoapp.musically","versions":["30.8.4"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Promo code unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","compatiblePackages":[{"name":"de.dwd.warnapp","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.nis.app","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.awedea.nyx","versions":["2.2.7"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable on demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","compatiblePackages":[{"name":"com.spotify.lite","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Custom theme","description":"Applies a custom theme.","compatiblePackages":[{"name":"com.spotify.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"backgroundColor","default":"@android:color/black","values":null,"title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false},{"key":"accentColor","default":"#ff1ed760","values":null,"title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false},{"key":"accentPressedColor","default":"#ff169c46","values":null,"title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false}]},{"name":"Hide premium navbar","description":"Removes the premium tab from the navbar.","compatiblePackages":[{"name":"com.spotify.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Removes general ads.","compatiblePackages":[{"name":"com.vanced.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions.","compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove bootloader detection","description":"Removes the check for an unlocked bootloader.","compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"jp.pxv.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Sanitize sharing links","description":"Removes (tracking) query parameters from the URLs when sharing links.","compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"ml.docilealligator.infinityforreddit","versions":["5.4.0","5.4.1","5.4.2","6.0.1","6.0.2","6.0.4","6.0.6","6.1.1"]}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"infinity://localhost\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"me.ccrama.redditslide","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://www.ccrama.me\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.onelouder.baconreader","versions":null},{"name":"com.onelouder.baconreader.premium","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://baconreader.com/auth\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.andrewshu.android.reddit","versions":null},{"name":"com.andrewshu.android.redditdonation","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"redditisfun://auth\".","required":true}]},{"name":"Disable Sync for Lemmy bottom sheet","description":"Disables the bottom sheet at the startup that asks you to signup to \"Sync for Lemmy\".","compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":["v23.06.30-13:39"]},{"name":"com.laurencedawson.reddit_sync.pro","versions":null},{"name":"com.laurencedawson.reddit_sync.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":null},{"name":"com.laurencedawson.reddit_sync.pro","versions":null},{"name":"com.laurencedawson.reddit_sync.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://redditsync/auth\".","required":true}]},{"name":"Disable ads","description":null,"compatiblePackages":[{"name":"o.o.joey","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"o.o.joey","versions":null},{"name":"o.o.joey.pro","versions":null},{"name":"o.o.joey.dev","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"https://127.0.0.1:65023/authorize_callback\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"free.reddit.news","versions":null},{"name":"reddit.news","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"dbrady://relay\".","required":true}]},{"name":"Spoof client","description":"Restores functionality of the app by using custom client ID\u0027s.","compatiblePackages":[{"name":"com.rubenmayayo.reddit","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"client-id","default":null,"values":null,"title":"OAuth client ID","description":"The Reddit OAuth client ID. You can get your client ID from https://www.reddit.com/prefs/apps. The application type has to be \"Installed app\" and the redirect URI has to be set to \"http://rubenmayayo.com\".","required":true}]},{"name":"Unlock premium Reddit icons","description":null,"compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable screenshot popup","description":"Disables the popup that shows up when taking a screenshot.","compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":null,"compatiblePackages":[{"name":"com.reddit.frontpage","versions":null}],"use":true,"requiresIntegrations":true,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass root checks","description":"Removes the restriction to use the app with root permissions or on a custom ROM.","compatiblePackages":[{"name":"it.ipzs.cieid","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":"Unlocks pro features.","compatiblePackages":[{"name":"com.vsco.cam","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable blog notification reminder","description":"Disables the reminder to enable notifications for blogs you visit.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable gift message popup","description":"Disables the popup suggesting to buy TumblrMart items for other people.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable in-app update","description":"Disables the in-app update check and update prompt.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable dashboard ads","description":"Disables ads in the dashboard.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable Tumblr Live","description":"Disable the Tumblr Live tab button and dashboard carousel.","compatiblePackages":[{"name":"com.tumblr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Hides ads.","compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide recommended users","description":null,"compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Dynamic color","description":"Replaces the default Twitter Blue with the user\u0027s Material You palette.","compatiblePackages":[{"name":"com.twitter.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide story ads","description":"Hides the ads in the Facebook app stories.","compatiblePackages":[{"name":"com.facebook.katana","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":"Unlocks all pro features.","compatiblePackages":[{"name":"co.windyapp.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show on lockscreen","description":"Shows student id and student ticket on lockscreen.","compatiblePackages":[{"name":"de.tudortmund.app","versions":null}],"use":true,"requiresIntegrations":true,"options":[]},{"name":"Pro unlock","description":null,"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove badge tab","description":"Removes the badge tab from the activity tab.","compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove notification badge","description":"Removes the red notification badge from the activity tab.","compatiblePackages":[{"name":"com.sony.songpal.mdr","versions":["10.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove root detection","description":"Removes the check for root permissions and unlocked bootloader.","compatiblePackages":[{"name":"at.gv.oe.app","versions":["3.0.2"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof signature","description":"Spoofs the signature of the app.","compatiblePackages":[{"name":"at.gv.oe.app","versions":["3.0.2"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Always autorepeat","description":"Always repeats the playing video again.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Spoof device dimensions","description":"Spoofs the device dimensions in order to unlock higher video qualities that may not be available on your device.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove tracking query parameter","description":"Remove the tracking query parameter from links.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Vanced MicroG support","description":"Allows YouTube to run without root and under a different package name with Vanced MicroG.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Minimized playback","description":"Enables minimized and background playback.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable zoom haptics","description":"Disables haptics when zooming.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Client spoof","description":"Spoofs the client to allow playback.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable debugging","description":"Adds debugging options.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass URL redirects","description":"Bypass URL redirects and open the original URL directly.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Open links externally","description":"Open links outside of the app directly in your browser.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Announcements","description":"Shows ReVanced announcements on startup.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"HDR auto brightness","description":"Makes the brightness of HDR videos follow the system default.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Playback speed","description":"Adds custom playback speeds and ability to remember the playback speed you chose in the video playback speed flyout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Restore old video quality menu","description":"Restores the old video quality with advanced video quality options.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remember video quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Swipe controls","description":"Adds volume and brightness swipe controls.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Seekbar tapping","description":"Enables tap-to-seek on the seekbar of the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable slide to seek","description":"Enable slide to seek instead of playing at 2x speed.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable precise seeking gesture","description":"Disables the gesture that is used to seek precisely when swiping up on the seekbar.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Copy video url","description":"Adds buttons in player to copy video links.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"External downloads","description":"Adds support to download and save YouTube videos using an external app.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Premium heading","description":"Show or hide the premium heading.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[{"key":"usePremiumHeading","default":true,"values":null,"title":"Use premium heading","description":"Whether to use the premium heading.","required":true}]},{"name":"Custom branding","description":"Changes the app icon and name to your choice (defaults to YouTube ReVanced and the ReVanced logo).","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":false,"requiresIntegrations":false,"options":[{"key":"appName","default":"YouTube ReVanced","values":{"YouTube ReVanced":"YouTube ReVanced","YT":"YT","YouTube":"YouTube"},"title":"App name","description":"The name of the app.","required":false},{"key":"iconPath","default":"ReVanced*Logo","values":{"ReVanced Logo":"ReVanced*Logo"},"title":"App icon","description":"The path to a folder containing the following folders:\n\n- mipmap-xxxhdpi\n- mipmap-xxhdpi\n- mipmap-xhdpi\n- mipmap-hdpi\n- mipmap-mdpi\n\nEach of these folders has to have the following files:\n\n- adaptiveproduct_youtube_background_color_108.png\n- adaptiveproduct_youtube_foreground_color_108.png\n- ic_launcher.png\n- ic_launcher_round.png","required":false}]},{"name":"Spoof app version","description":"Tricks YouTube into thinking you are running an older version of the app. One of the side effects also includes restoring the old UI.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Wide searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Return YouTube Dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable suggested video end screen","description":"Disables the suggested video end screen at the end of a video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide Shorts components","description":"Hides components from YouTube Shorts.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Player flyout menu","description":"Hides player flyout menu items.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable fullscreen ambient mode","description":"Disables the ambient mode when in fullscreen.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide email address","description":"Hides the email address in the account switcher.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide album cards","description":"Hides the album cards below the artist description.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide info cards","description":"Hides info cards in videos.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide seekbar","description":"Hides the seekbar.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide filter bar","description":"Hides the filter bar in video feeds.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide floating microphone button","description":"Hides the floating microphone button which appears in search.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide breaking news shelf","description":"Hides the breaking news shelf on the homepage tab.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide timestamp","description":"Hides timestamp in video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide crowdfunding box","description":"Hides the crowdfunding box between the player and video description.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Comments","description":"Hides components related to comments.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide \u0027Load more\u0027 button","description":"Hides the button under videos that loads similar videos.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide endscreen cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide layout components","description":"Hides general layout components.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable auto captions","description":"Disable forced captions from being automatically enabled.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Enable tablet layout","description":"Spoofs the device form factor to a tablet which enables the tablet layout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide video action buttons","description":"Adds the options to hide action buttons under a video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide captions button","description":"Hides the captions button on video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide autoplay button","description":"Hides the autoplay button in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide player buttons","description":"Adds the option to hide video player previous and next buttons.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide cast button","description":"Hides the cast button in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Navigation buttons","description":"Adds options to hide or change navigation buttons.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Alternative thumbnails","description":"Adds options to replace video thumbnails with still image captures of the video.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Tablet mini player","description":"Enables the tablet mini player layout.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Theme","description":"Applies a custom theme.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[{"key":"darkThemeBackgroundColor","default":"@android:color/black","values":{"Amoled black":"@android:color/black","Material You":"@android:color/system_neutral1_900","Catppuccin (Mocha)":"#FF181825","Dark pink":"#FF290025","Dark blue":"#FF001029","Dark green":"#FF002905","Dark yellow":"#FF282900","Dark orange":"#FF291800","Dark red":"#FF290000"},"title":"Dark theme background color","description":"Can be a hex color (#AARRGGBB) or a color resource reference.","required":false},{"key":"lightThemeBackgroundColor","default":"@android:color/white","values":{"White":"@android:color/white","Material You":"@android:color/system_neutral1_50","Catppuccin (Latte)":"#FFE6E9EF","Light pink":"#FFFCCFF3","Light blue":"#FFD1E0FF","Light green":"#FFCCFFCC","Light yellow":"#FFFDFFCC","Light orange":"#FFFFE6CC","Light red":"#FFFFD6D6"},"title":"Light theme background color","description":"Can be a hex color (#AARRGGBB) or a color resource reference.","required":false}]},{"name":"Custom player overlay opacity","description":"Change the opacity of the player background, when player controls are visible.","compatiblePackages":[{"name":"com.google.android.youtube","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove player controls background","description":"Removes the background from the video player controls.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Restore old seekbar thumbnails","description":"Restores the old seekbar thumbnails that appear above the seekbar instead of fullscreen thumbnails.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"SponsorBlock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable resuming Shorts on startup","description":"Disables resuming the Shorts player on app startup if a Short was last opened.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable player popup panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Video ads","description":"Removes ads in the video player.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide ads","description":"Removes general ads.","compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.16.37","18.19.35","18.20.39","18.23.35","18.29.38","18.32.39","18.37.36","18.38.44","18.43.45","18.44.41","18.45.41"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove broadcasts restriction","description":"Enables starting/stopping NetGuard via broadcasts.","compatiblePackages":[{"name":"eu.faircode.netguard","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Vanced MicroG support","description":"Allows YouTube Music to run without root and under a different package name.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Bypass certificate checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Codecs unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Exclusive audio playback","description":"Enables the option to play audio without video.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Permanent repeat","description":"Permanently remember your repeating preference even if the playlist ends or another track is played.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Permanent shuffle","description":"Permanently remember your shuffle preference even if the playlist ends or another track is played.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Compact header","description":"Hides the music category bar at the top of the homepage.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Remove upgrade button","description":"Removes the upgrade tab from the pivot bar.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Minimized playback music","description":"Enables minimized playback on Kids music.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Hide get premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Background play","description":"Enables playing music in the background.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Music video ads","description":"Removes ads in the music player.","compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Disable subscription suggestions","description":null,"compatiblePackages":[{"name":"com.strava","versions":["320.12"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock subscription features","description":"Unlocks \"Routes\", \"Matched Runs\" and \"Segment Efforts\".","compatiblePackages":[{"name":"com.strava","versions":["320.12"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove ads","description":null,"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.candylink.openvpn","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove debugging detection","description":"Removes the USB and wireless debugging checks.","compatiblePackages":[{"name":"com.scb.phone","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Unlock premium","description":null,"compatiblePackages":[{"name":"io.yuka.android","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"tv.trakt.trakt","versions":["1.1.1"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Unlock themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","compatiblePackages":[{"name":"com.ticktick.task","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Settings","description":"Adds settings menu to Twitch.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Debug mode","description":"Enables Twitch\u0027s internal debugging mode.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":null}],"use":false,"requiresIntegrations":false,"options":[]},{"name":"Auto claim channel points","description":"Automatically claim Channel Points.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Show deleted messages","description":"Shows deleted chat messages behind a clickable spoiler.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block video ads","description":"Blocks video ads in streams and VODs.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block audio ads","description":"Blocks audio ads in streams and VODs.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Block embedded ads","description":"Blocks embedded stream ads using services like Luminous or PurpleAdBlocker.","compatiblePackages":[{"name":"tv.twitch.android.app","versions":["15.4.1","16.1.0","17.0.0","17.1.0"]}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Export all activities","description":"Makes all app activities exportable.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Change package name","description":"Appends \".revanced\" to the package name by default.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[{"key":"packageName","default":"Default","values":{"Default":"Default"},"title":"Package name","description":"The name of the package to rename the app to.","required":true}]},{"name":"Enable Android debugging","description":"Enables Android debugging capabilities. This can slow down the app.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Override certificate pinning","description":"Overrides certificate pinning, allowing to inspect traffic via a proxy.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Remove screenshot restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Spoof SIM country","description":"Spoofs country information returned by the SIM card provider.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[{"key":"networkCountryIso","default":null,"values":null,"title":"Network ISO Country Code","description":"ISO-3166-1 alpha-2 country code equivalent of the MCC (Mobile Country Code) of the current registered operator or the cell nearby.","required":false},{"key":"simCountryIso","default":null,"values":null,"title":"Sim ISO Country Code","description":"ISO-3166-1 alpha-2 country code equivalent for the SIM provider\u0027s country code.","required":false}]},{"name":"Predictive back gesture","description":"Enables the predictive back gesture introduced on Android 13.","compatiblePackages":null,"use":false,"requiresIntegrations":false,"options":[]},{"name":"Spoof Wi-Fi connection","description":"Spoofs an existing Wi-Fi connection.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Remove screen capture restriction","description":"Removes the restriction of capturing audio from apps that normally wouldn\u0027t allow it.","compatiblePackages":null,"use":false,"requiresIntegrations":true,"options":[]},{"name":"Unlock pro","description":null,"compatiblePackages":[{"name":"com.wakdev.apps.nfctools.se","versions":null}],"use":true,"requiresIntegrations":false,"options":[]},{"name":"Remove file size limit","description":"Allows opening files larger than 2 MB in the text editor.","compatiblePackages":[{"name":"pl.solidexplorer2","versions":null}],"use":true,"requiresIntegrations":false,"options":[]}]
\ No newline at end of file
|
chore
|
2.197.0-dev.5 [skip ci]
|
0dbfa6247e6e7ff51e8fee86fd798f693ab05bcf
|
2023-04-13 09:41:48
|
LisoUseInAIKyrios
|
fix(youtube/spoof-signature-verification): fixed subtitles in wrong location (#1833)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt
new file mode 100644
index 0000000000..0cb104f24d
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/fingerprints/SubtitleWindowSettingsConstructorFingerprint.kt
@@ -0,0 +1,11 @@
+package app.revanced.patches.youtube.misc.fix.playback.fingerprints
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+
+object SubtitleWindowSettingsConstructorFingerprint : MethodFingerprint(
+ parameters = listOf("I", "I", "I", "Z", "Z"),
+ customFingerprint = { methodDef ->
+ methodDef.definingClass == "Lcom/google/android/libraries/youtube/player/subtitles/model/SubtitleWindowSettings;"
+ && methodDef.name == "<init>"
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
index cad32ce1db..b90d69cb47 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/patch/SpoofSignatureVerificationPatch.kt
@@ -19,6 +19,7 @@ import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.fix.playback.annotation.ProtobufSpoofCompatibility
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.OpenCronetDataSourceFingerprint
import app.revanced.patches.youtube.misc.fix.playback.fingerprints.ProtobufParameterBuilderFingerprint
+import app.revanced.patches.youtube.misc.fix.playback.fingerprints.SubtitleWindowSettingsConstructorFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@@ -34,6 +35,7 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
listOf(
ProtobufParameterBuilderFingerprint,
OpenCronetDataSourceFingerprint,
+ SubtitleWindowSettingsConstructorFingerprint,
)
) {
override fun execute(context: BytecodeContext): PatchResult {
@@ -83,6 +85,25 @@ class SpoofSignatureVerificationPatch : BytecodePatch(
} ?: return OpenCronetDataSourceFingerprint.toErrorResult()
+ // hook override subtitles
+ SubtitleWindowSettingsConstructorFingerprint.result?.let {
+ it.mutableMethod.apply {
+ addInstructions(
+ 0,
+ """
+ invoke-static {p1, p2, p3, p4, p5}, $INTEGRATIONS_CLASS_DESCRIPTOR->getSubtitleWindowSettingsOverride(IIIZZ)[I
+ move-result-object v0
+ const/4 v1, 0x0
+ aget p1, v0, v1 # ap, anchor configuration
+ const/4 v1, 0x1
+ aget p2, v0, v1 # ah, horizontal anchor
+ const/4 v1, 0x2
+ aget p3, v0, v1 # av, vertical anchor
+ """
+ )
+ }
+ } ?: return SubtitleWindowSettingsConstructorFingerprint.toErrorResult()
+
return PatchResultSuccess()
}
|
fix
|
fixed subtitles in wrong location (#1833)
|
ad00305ff57d5e8041de7375bea7d3ad6f18c4e2
|
2024-06-02 21:18:35
|
MarcaD
|
feat(YouTube - Playback speed): Add option to show speed dialog button in video player (#3197)
| false
|
diff --git a/api/revanced-patches.api b/api/revanced-patches.api
index ac96263640..75d89226c5 100644
--- a/api/revanced-patches.api
+++ b/api/revanced-patches.api
@@ -1840,6 +1840,12 @@ public final class app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch :
public synthetic fun execute (Lapp/revanced/patcher/data/Context;)V
}
+public final class app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonPatch : app/revanced/patcher/patch/BytecodePatch {
+ public static final field INSTANCE Lapp/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonPatch;
+ public fun execute (Lapp/revanced/patcher/data/BytecodeContext;)V
+ public synthetic fun execute (Lapp/revanced/patcher/data/Context;)V
+}
+
public final class app/revanced/patches/youtube/video/speed/custom/CustomPlaybackSpeedPatch : app/revanced/patcher/patch/BytecodePatch {
public static final field INSTANCE Lapp/revanced/patches/youtube/video/speed/custom/CustomPlaybackSpeedPatch;
public fun execute (Lapp/revanced/patcher/data/BytecodeContext;)V
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
index 2444497958..7cdb7d064b 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt
@@ -4,13 +4,19 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.youtube.video.speed.button.PlaybackSpeedButtonPatch
import app.revanced.patches.youtube.video.speed.custom.CustomPlaybackSpeedPatch
import app.revanced.patches.youtube.video.speed.remember.RememberPlaybackSpeedPatch
@Patch(
name = "Playback speed",
- description = "Adds options to customize available playback speeds and to remember the last playback speed selected.",
- dependencies = [CustomPlaybackSpeedPatch::class, RememberPlaybackSpeedPatch::class],
+ description = "Adds options to customize available playback speeds, remember the last playback speed selected " +
+ "and show a speed dialog button to the video player.",
+ dependencies = [
+ PlaybackSpeedButtonPatch::class,
+ CustomPlaybackSpeedPatch::class,
+ RememberPlaybackSpeedPatch::class,
+ ],
compatiblePackages = [
CompatiblePackage(
"com.google.android.youtube",
@@ -42,4 +48,4 @@ object PlaybackSpeedPatch : BytecodePatch(emptySet()) {
override fun execute(context: BytecodeContext) {
// All patches this patch depends on succeed.
}
-}
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonPatch.kt
new file mode 100644
index 0000000000..19895fa8ac
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonPatch.kt
@@ -0,0 +1,38 @@
+package app.revanced.patches.youtube.video.speed.button
+
+import app.revanced.patcher.data.BytecodeContext
+import app.revanced.patcher.patch.BytecodePatch
+import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.all.misc.resources.AddResourcesPatch
+import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
+import app.revanced.patches.youtube.misc.playercontrols.PlayerControlsBytecodePatch
+import app.revanced.patches.youtube.misc.settings.SettingsPatch
+import app.revanced.patches.youtube.video.speed.custom.CustomPlaybackSpeedPatch
+
+@Patch(
+ description = "Adds the option to display playback speed dialog button in the video player.",
+ dependencies = [
+ PlaybackSpeedButtonResourcePatch::class,
+ CustomPlaybackSpeedPatch::class,
+ PlayerControlsBytecodePatch::class,
+ SettingsPatch::class,
+ AddResourcesPatch::class,
+ ],
+)
+@Suppress("unused")
+object PlaybackSpeedButtonPatch : BytecodePatch(emptySet()) {
+ private const val SPEED_BUTTON_CLASS_DESCRIPTOR =
+ "Lapp/revanced/integrations/youtube/videoplayer/PlaybackSpeedDialogButton;"
+
+ override fun execute(context: BytecodeContext) {
+
+ AddResourcesPatch(this::class)
+
+ SettingsPatch.PreferenceScreen.PLAYER.addPreferences(
+ SwitchPreference("revanced_playback_speed_dialog_button"),
+ )
+
+ PlayerControlsBytecodePatch.initializeControl("$SPEED_BUTTON_CLASS_DESCRIPTOR->initializeButton(Landroid/view/View;)V")
+ PlayerControlsBytecodePatch.injectVisibilityCheckCall("$SPEED_BUTTON_CLASS_DESCRIPTOR->changeVisibility(Z)V")
+ }
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonResourcePatch.kt
new file mode 100644
index 0000000000..ffc8d8f1db
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/button/PlaybackSpeedButtonResourcePatch.kt
@@ -0,0 +1,25 @@
+package app.revanced.patches.youtube.video.speed.button
+
+import app.revanced.patcher.data.ResourceContext
+import app.revanced.patcher.patch.ResourcePatch
+import app.revanced.patcher.patch.annotation.Patch
+import app.revanced.patches.youtube.misc.playercontrols.BottomControlsResourcePatch
+import app.revanced.util.ResourceGroup
+import app.revanced.util.copyResources
+
+@Patch(
+ dependencies = [BottomControlsResourcePatch::class],
+)
+internal object PlaybackSpeedButtonResourcePatch : ResourcePatch() {
+ override fun execute(context: ResourceContext) {
+ context.copyResources(
+ "speedbutton",
+ ResourceGroup(
+ "drawable",
+ "revanced_playback_speed_dialog_button.xml",
+ ),
+ )
+
+ BottomControlsResourcePatch.addControls("speedbutton")
+ }
+}
diff --git a/src/main/resources/addresources/values/strings.xml b/src/main/resources/addresources/values/strings.xml
index 34b2a38071..dc0f814e76 100644
--- a/src/main/resources/addresources/values/strings.xml
+++ b/src/main/resources/addresources/values/strings.xml
@@ -1065,6 +1065,11 @@
<string name="revanced_remember_video_quality_wifi">wifi</string>
<string name="revanced_remember_video_quality_toast">Changed default %1$s quality to: %2$s</string>
</patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Show speed dialog button</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Button is shown</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Button is not shown</string>
+ </patch>
<patch id="video.speed.custom.CustomPlaybackSpeedPatch">
<string name="revanced_custom_playback_speeds_title">Custom playback speeds</string>
<string name="revanced_custom_playback_speeds_summary">Add or change the available playback speeds</string>
diff --git a/src/main/resources/speedbutton/drawable/revanced_playback_speed_dialog_button.xml b/src/main/resources/speedbutton/drawable/revanced_playback_speed_dialog_button.xml
new file mode 100644
index 0000000000..b42dd57f3e
--- /dev/null
+++ b/src/main/resources/speedbutton/drawable/revanced_playback_speed_dialog_button.xml
@@ -0,0 +1,30 @@
+<!--
+ https://github.com/google/material-design-icons/blob/9beae745bb758f3ad56654fb377ea5cf62be4915/symbols/android/slow_motion_video/materialsymbolsoutlined/slow_motion_video_wght200gradN25_24px.xml
+ The icon has been resized
+
+
+Copyright 2022 Google
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:tint="#FFFFFF"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M 6.0798492,16.70271 Q 5.3667836,15.77782 4.9972798,14.87317 4.6275665,13.96852 4.5,12.83942 h 0.7949215 q 0.1275665,0.9249 0.4677271,1.7656 0.3401706,0.8407 0.8797497,1.53346 z M 4.5,11.16058 Q 4.6373409,10.04469 5.002167,9.14154 5.3667836,8.2386 6.0798492,7.3137 L 6.6423983,7.87793 Q 6.1028192,8.5707 5.7626486,9.40308 5.422488,10.23568 5.2949215,11.16058 Z M 11.110466,19.5 Q 9.8992727,19.32286 9.0431213,18.95346 8.1871793,18.58406 7.2572507,17.89299 l 0.5627586,-0.57382 q 0.6818173,0.52458 1.5126748,0.89527 0.8308479,0.37047 1.7777819,0.49836 z M 7.8625281,6.66442 7.2899951,6.09059 Q 8.2197042,5.39953 9.0758557,5.03823 9.9320071,4.67714 11.152995,4.5 V 5.2872 Q 10.19861,5.41509 9.3677624,5.77746 8.5371243,6.13983 7.8625281,6.66442 Z M 10.32873,14.97101 V 9.02899 L 14.953488,12 Z M 12.827456,19.5 v -0.7872 q 2.53571,-0.36237 4.211668,-2.26097 1.675948,-1.89882 1.675948,-4.45183 0,-2.55301 -1.675948,-4.45183 Q 15.363166,5.64957 12.827456,5.2872 V 4.5 Q 15.70589,4.80844 17.60294,6.95069 19.5,9.09294 19.5,12 q 0,2.8964 -1.89706,5.04398 -1.89705,2.14758 -4.775484,2.45602 z"/>
+</vector>
diff --git a/src/main/resources/speedbutton/host/layout/youtube_controls_bottom_ui_container.xml b/src/main/resources/speedbutton/host/layout/youtube_controls_bottom_ui_container.xml
new file mode 100644
index 0000000000..ddd8a125c8
--- /dev/null
+++ b/src/main/resources/speedbutton/host/layout/youtube_controls_bottom_ui_container.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:yt="http://schemas.android.com/apk/res-auto" android:id="@+id/youtube_controls_bottom_ui_container" android:layout_width="match_parent" android:layout_height="wrap_content" android:layoutDirection="ltr">
+ <com.google.android.libraries.youtube.common.ui.TouchImageView android:id="@+id/revanced_playback_speed_dialog_button" android:paddingLeft="12dp" android:paddingTop="22dp" android:paddingRight="12dp" android:paddingBottom="16dp" android:longClickable="false" android:layout_width="60dp" android:layout_height="60dp" android:src="@drawable/revanced_playback_speed_dialog_button" android:scaleType="center" yt:layout_constraintBottom_toTopOf="@+id/quick_actions_container" yt:layout_constraintRight_toLeftOf="@+id/fullscreen_button" style="@style/YouTubePlayerButton"/>
+</android.support.constraint.ConstraintLayout>
|
feat
|
Add option to show speed dialog button in video player (#3197)
|
e15f515a0225dc8210428cd989c0554cac450b8c
|
2022-09-27 10:27:01
|
semantic-release-bot
|
chore(release): 2.69.3 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9494f9b4c1..f322e44234 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.69.3](https://github.com/revanced/revanced-patches/compare/v2.69.2...v2.69.3) (2022-09-27)
+
+
+### Bug Fixes
+
+* **sponsorblock:** correct class name for field reference ([#582](https://github.com/revanced/revanced-patches/issues/582)) ([7cd585c](https://github.com/revanced/revanced-patches/commit/7cd585cd78e284a82cee17d09f8049f0a5cdf2e8))
+
## [2.69.2](https://github.com/revanced/revanced-patches/compare/v2.69.1...v2.69.2) (2022-09-26)
diff --git a/README.md b/README.md
index 76139f1765..a6af89c6f5 100644
--- a/README.md
+++ b/README.md
@@ -4,63 +4,38 @@ The official Patch bundle provided by ReVanced and the community.
> Looking for the JSON variant of this? [Click here](patches.json).
-### 📦 `com.spotify.music`
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `hide-premium-navbar` | Removes the premium tab from the navbar. | all |
-| `spotify-theme` | Applies a custom theme. | all |
-</details>
-
-### 📦 `com.twitter.android`
-<details>
-
-| 💊 Patch | 📜 Description | 🏹 Target Version |
-|:--------:|:--------------:|:-----------------:|
-| `timeline-ads` | Removes ads from the Twitter timeline. | all |
-</details>
-
### 📦 `com.reddit.frontpage`
<details>
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `premium-icon-reddit` | Unlocking Premium Icons in reddit app. | all |
| `general-reddit-ads` | Removes general ads from the Reddit frontpage and subreddits. | all |
+| `premium-icon-reddit` | Unlocking Premium Icons in reddit app. | all |
</details>
-### 📦 `com.garzotto.pflotsh.ecmwf_a`
+### 📦 `com.spotify.music`
<details>
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `pflotsh-ecmwf-subscription-unlock` | Unlocks all subscription features. | 3.5.4 |
+| `hide-premium-navbar` | Removes the premium tab from the navbar. | all |
+| `spotify-theme` | Applies a custom theme. | all |
</details>
-### 📦 `com.google.android.apps.youtube.music`
+### 📦 `de.dwd.warnapp`
<details>
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `minimized-playback-music` | Enables minimized playback on Kids music. | 5.23.50 |
-| `tasteBuilder-remover` | Removes the "Tell us which artists you like" card from the home screen. | 5.23.50 |
-| `hide-get-premium` | Removes all "Get Premium" evidences from the avatar menu. | 5.23.50 |
-| `compact-header` | Hides the music category bar at the top of the homepage. | 5.23.50 |
-| `upgrade-button-remover` | Removes the upgrade tab from the pivot bar. | 5.23.50 |
-| `background-play` | Enables playing music in the background. | 5.23.50 |
-| `music-microg-support` | Allows YouTube Music ReVanced to run without root and under a different package name. | 5.23.50 |
-| `music-video-ads` | Removes ads in the music player. | 5.23.50 |
-| `codecs-unlock` | Adds more audio codec options. The new audio codecs usually result in better audio quality. | 5.23.50 |
-| `exclusive-audio-playback` | Enables the option to play music without video. | 5.23.50 |
+| `promo-code-unlock` | Disables the validation of promo code. Any code will work to unlock all features. | all |
</details>
-### 📦 `de.dwd.warnapp`
+### 📦 `com.garzotto.pflotsh.ecmwf_a`
<details>
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `promo-code-unlock` | Disables the validation of promo code. Any code will work to unlock all features. | all |
+| `pflotsh-ecmwf-subscription-unlock` | Unlocks all subscription features. | 3.5.4 |
</details>
### 📦 `com.ss.android.ugc.trill`
@@ -68,12 +43,12 @@ The official Patch bundle provided by ReVanced and the community.
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `tiktok-feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
| `tiktok-download` | Removes download restrictions and changes the default path to download to. | all |
| `tiktok-seekbar` | Show progress bar for all video. | all |
| `tiktok-force-login` | Do not force login. | all |
| `tiktok-settings` | Add settings menu to TikTok. | all |
| `tiktok-ads` | Removes ads from TikTok. | all |
+| `tiktok-feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
</details>
### 📦 `com.zhiliaoapp.musically`
@@ -81,12 +56,37 @@ The official Patch bundle provided by ReVanced and the community.
| 💊 Patch | 📜 Description | 🏹 Target Version |
|:--------:|:--------------:|:-----------------:|
-| `tiktok-feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
| `tiktok-download` | Removes download restrictions and changes the default path to download to. | all |
| `tiktok-seekbar` | Show progress bar for all video. | all |
| `tiktok-force-login` | Do not force login. | all |
| `tiktok-settings` | Add settings menu to TikTok. | all |
| `tiktok-ads` | Removes ads from TikTok. | all |
+| `tiktok-feed-filter` | Filters tiktok videos: removing ads, removing livestreams. | all |
+</details>
+
+### 📦 `com.twitter.android`
+<details>
+
+| 💊 Patch | 📜 Description | 🏹 Target Version |
+|:--------:|:--------------:|:-----------------:|
+| `timeline-ads` | Removes ads from the Twitter timeline. | all |
+</details>
+
+### 📦 `com.google.android.apps.youtube.music`
+<details>
+
+| 💊 Patch | 📜 Description | 🏹 Target Version |
+|:--------:|:--------------:|:-----------------:|
+| `exclusive-audio-playback` | Enables the option to play music without video. | 5.23.50 |
+| `codecs-unlock` | Adds more audio codec options. The new audio codecs usually result in better audio quality. | 5.23.50 |
+| `music-microg-support` | Allows YouTube Music ReVanced to run without root and under a different package name. | 5.23.50 |
+| `music-video-ads` | Removes ads in the music player. | 5.23.50 |
+| `tasteBuilder-remover` | Removes the "Tell us which artists you like" card from the home screen. | 5.23.50 |
+| `minimized-playback-music` | Enables minimized playback on Kids music. | 5.23.50 |
+| `compact-header` | Hides the music category bar at the top of the homepage. | 5.23.50 |
+| `upgrade-button-remover` | Removes the upgrade tab from the pivot bar. | 5.23.50 |
+| `hide-get-premium` | Removes all "Get Premium" evidences from the avatar menu. | 5.23.50 |
+| `background-play` | Enables playing music in the background. | 5.23.50 |
</details>
### 📦 `com.google.android.youtube`
@@ -97,36 +97,36 @@ The official Patch bundle provided by ReVanced and the community.
| `swipe-controls` | Adds volume and brightness swipe controls. | 17.36.37 |
| `downloads` | Enables downloading music and videos from YouTube. | 17.36.37 |
| `seekbar-tapping` | Enables tap-to-seek on the seekbar of the video player. | 17.36.37 |
-| `hide-cast-button` | Hides the cast button in the video player. | all |
-| `hide-create-button` | Hides the create button in the navigation bar. | 17.36.37 |
-| `hide-shorts-button` | Hides the shorts button on the navigation bar. | 17.36.37 |
-| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | 17.36.37 |
-| `hide-autoplay-button` | Hides the autoplay button in the video player. | 17.36.37 |
-| `premium-heading` | Shows premium branding on the home screen. | all |
-| `custom-branding` | Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). | all |
-| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | 17.36.37 |
-| `old-quality-layout` | Enables the original quality flyout menu. | 17.36.37 |
-| `theme` | Applies a custom theme. | all |
-| `hide-watermark` | Hides creator's watermarks on videos. | 17.36.37 |
-| `sponsorblock` | Integrate SponsorBlock. | 17.36.37 |
-| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.36.37 |
-| `hide-time-and-seekbar` | Hides progress bar and time counter on videos. | 17.36.37 |
-| `disable-auto-player-popup-panels` | Disable automatic popup panels (playlist or live chat) on video player. | 17.36.37 |
-| `tablet-mini-player` | Enables the tablet mini player layout. | 17.36.37 |
-| `disable-auto-captions` | Disable forced captions from being automatically enabled. | 17.36.37 |
+| `remember-video-quality` | Adds the ability to remember the video quality you chose in the video quality flyout. | 17.36.37 |
+| `enable-debugging` | Enables app debugging by patching the manifest file. | all |
+| `custom-playback-speed` | Adds more video playback speed options. | 17.36.37 |
| `minimized-playback` | Enables minimized and background playback. | 17.36.37 |
| `client-spoof` | Spoofs the YouTube or Vanced client to prevent playback issues. | all |
| `custom-video-buffer` | Lets you change the buffers of videos. | 17.36.37 |
-| `always-autorepeat` | Always repeats the playing video again. | 17.36.37 |
-| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. | 17.36.37 |
| `settings` | Adds settings for ReVanced to YouTube. | all |
-| `enable-debugging` | Enables app debugging by patching the manifest file. | all |
-| `custom-playback-speed` | Adds more video playback speed options. | 17.36.37 |
+| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. | 17.36.37 |
| `hdr-auto-brightness` | Makes the brightness of HDR videos follow the system default. | 17.36.37 |
-| `remember-video-quality` | Adds the ability to remember the video quality you chose in the video quality flyout. | 17.36.37 |
-| `video-ads` | Removes ads in the video player. | 17.36.37 |
+| `always-autorepeat` | Always repeats the playing video again. | 17.36.37 |
| `general-ads` | Removes general ads. | 17.36.37 |
| `hide-infocard-suggestions` | Hides infocards in videos. | 17.36.37 |
+| `video-ads` | Removes ads in the video player. | 17.36.37 |
+| `hide-time-and-seekbar` | Hides progress bar and time counter on videos. | 17.36.37 |
+| `old-quality-layout` | Enables the original quality flyout menu. | 17.36.37 |
+| `enable-wide-searchbar` | Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. | 17.36.37 |
+| `disable-fullscreen-panels` | Disables video description and comments panel in fullscreen view. | 17.36.37 |
+| `hide-autoplay-button` | Hides the autoplay button in the video player. | 17.36.37 |
+| `premium-heading` | Shows premium branding on the home screen. | all |
+| `custom-branding` | Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). | all |
+| `hide-create-button` | Hides the create button in the navigation bar. | 17.36.37 |
+| `hide-shorts-button` | Hides the shorts button on the navigation bar. | 17.36.37 |
+| `theme` | Applies a custom theme. | all |
+| `sponsorblock` | Integrate SponsorBlock. | 17.36.37 |
+| `hide-cast-button` | Hides the cast button in the video player. | all |
+| `tablet-mini-player` | Enables the tablet mini player layout. | 17.36.37 |
+| `return-youtube-dislike` | Shows the dislike count of videos using the Return YouTube Dislike API. | 17.36.37 |
+| `hide-watermark` | Hides creator's watermarks on videos. | 17.36.37 |
+| `disable-auto-player-popup-panels` | Disable automatic popup panels (playlist or live chat) on video player. | 17.36.37 |
+| `disable-auto-captions` | Disable forced captions from being automatically enabled. | 17.36.37 |
</details>
### 📦 `com.vanced.android.youtube`
diff --git a/gradle.properties b/gradle.properties
index b9858a01e6..40fedf0987 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.69.2
+version = 2.69.3
diff --git a/patches.json b/patches.json
index fa876a1a34..7e85ba041c 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocking Premium Icons in reddit app.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]}]
\ No newline at end of file
+[{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocking Premium Icons in reddit app.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"pflotsh-ecmwf-subscription-unlock","description":"Unlocks all subscription features.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.garzotto.pflotsh.ecmwf_a","versions":["3.5.4"]}]},{"name":"tiktok-download","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-seekbar","description":"Show progress bar for all video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-force-login","description":"Do not force login.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-settings","description":"Add settings menu to TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"tiktok-feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["tiktok-integrations","tiktok-settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"timeline-ads","description":"Removes ads from the Twitter timeline.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.21.52","5.22.54","5.23.50"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50"]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.27.39","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.24.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-debugging","description":"Enables app debugging by patching the manifest file.","version":"0.0.1","excluded":true,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-playback-speed","description":"Adds more video playback speed options.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"client-spoof","description":"Spoofs the YouTube or Vanced client to prevent playback issues.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]},{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"settings","description":"Adds settings for ReVanced to YouTube.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button","client-spoof"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["resource-mapping","integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-infocard-suggestions","description":"Hides infocards in videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-time-and-seekbar","description":"Hides progress bar and time counter on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"old-quality-layout","description":"Enables the original quality flyout menu.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"enable-wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"appIconPath","title":"Application Icon Path","description":"A path to the icon of the application.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-create-button","description":"Hides the create button in the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","resource-mapping","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-shorts-button","description":"Hides the shorts button on the navigation bar.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.17.34","17.19.36","17.20.37","17.22.36","17.23.35","17.23.36","17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"deprecated":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["locale-config-fix"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"sponsorblock","description":"Integrate SponsorBlock.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["player-controls-bytecode-patch","integrations","sponsorblock-resource-patch","video-id-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.22.36","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.26.35","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.14.35","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.24.34","17.24.35","17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]},{"name":"disable-auto-player-popup-panels","description":"Disable automatic popup panels (playlist or live chat) on video player.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.36.37"]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"deprecated":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.25.34","17.26.35","17.27.39","17.28.34","17.29.34","17.32.35","17.33.42","17.34.35","17.34.36","17.36.37"]}]}]
\ No newline at end of file
|
chore
|
2.69.3 [skip ci]
|
2622b008ab78b15aa3c28a13b38e63041f29c9ea
|
2023-08-26 05:42:30
|
johnconner122
|
feat(YouTube): Add `Custom player overlay opacity` patch (#2721)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
similarity index 57%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
index 9ca55f5234..71d89ce7e6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/annotations/HidePlayerOverlayPatchCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/annotations/PlayerOverlayPatchCompatibility.kt
@@ -1,8 +1,8 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.annotations
+package app.revanced.patches.youtube.layout.player.overlay.annotations
import app.revanced.patcher.annotation.Compatibility
import app.revanced.patcher.annotation.Package
@Compatibility([Package("com.google.android.youtube")])
@Target(AnnotationTarget.CLASS)
-internal annotation class HidePlayerOverlayPatchCompatibility
+internal annotation class PlayerOverlayPatchCompatibility
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
similarity index 66%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
index 785577eac2..ec617403ef 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/fingerprints/CreatePlayerOverviewFingerprint.kt
@@ -1,9 +1,9 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.fingerprints
+package app.revanced.patches.youtube.layout.player.overlay.bytecode.fingerprints
import app.revanced.extensions.containsConstantInstructionValue
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch.HidePlayerOverlayResourcePatch
+import app.revanced.patches.youtube.layout.player.overlay.resource.patch.CustomPlayerOverlayOpacityResourcePatch
import com.android.tools.smali.dexlib2.AccessFlags
import com.android.tools.smali.dexlib2.Opcode
@@ -17,6 +17,6 @@ object CreatePlayerOverviewFingerprint : MethodFingerprint(
Opcode.CHECK_CAST
),
customFingerprint = { methodDef, _ ->
- methodDef.containsConstantInstructionValue(HidePlayerOverlayResourcePatch.scrimOverlayId)
+ methodDef.containsConstantInstructionValue(CustomPlayerOverlayOpacityResourcePatch.scrimOverlayId)
}
)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt
similarity index 52%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt
index f9582806ca..cbb46b92ab 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/bytecode/patch/HidePlayerOverlayPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/bytecode/patch/CustomPlayerOverlayOpacityPatch.kt
@@ -1,4 +1,4 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.patch
+package app.revanced.patches.youtube.layout.player.overlay.bytecode.patch
import app.revanced.extensions.indexOfFirstConstantInstructionValue
import app.revanced.extensions.exception
@@ -10,35 +10,36 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
-import app.revanced.patches.youtube.layout.hide.player.overlay.annotations.HidePlayerOverlayPatchCompatibility
-import app.revanced.patches.youtube.layout.hide.player.overlay.bytecode.fingerprints.CreatePlayerOverviewFingerprint
-import app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch.HidePlayerOverlayResourcePatch
+import app.revanced.patches.youtube.layout.player.overlay.annotations.PlayerOverlayPatchCompatibility
+import app.revanced.patches.youtube.layout.player.overlay.bytecode.fingerprints.CreatePlayerOverviewFingerprint
+import app.revanced.patches.youtube.layout.player.overlay.resource.patch.CustomPlayerOverlayOpacityResourcePatch
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Patch
-@Name("Hide player overlay")
-@Description("Hides the dark background overlay from the player when player controls are visible.")
-@DependsOn([HidePlayerOverlayResourcePatch::class])
-@HidePlayerOverlayPatchCompatibility
-class HidePlayerOverlayPatch : BytecodePatch(listOf(CreatePlayerOverviewFingerprint)) {
+@Name("Custom player overlay opacity")
+@Description("Change the opacity of the player background, when player controls are visible.")
+@DependsOn([CustomPlayerOverlayOpacityResourcePatch::class])
+@PlayerOverlayPatchCompatibility
+class CustomPlayerOverlayOpacityPatch : BytecodePatch(listOf(CreatePlayerOverviewFingerprint)) {
override fun execute(context: BytecodeContext) {
CreatePlayerOverviewFingerprint.result?.let { result ->
result.mutableMethod.apply {
val viewRegisterIndex =
- indexOfFirstConstantInstructionValue(HidePlayerOverlayResourcePatch.scrimOverlayId) + 3
- val viewRegister = getInstruction<OneRegisterInstruction>(viewRegisterIndex).registerA
+ indexOfFirstConstantInstructionValue(CustomPlayerOverlayOpacityResourcePatch.scrimOverlayId) + 3
+ val viewRegister =
+ getInstruction<OneRegisterInstruction>(viewRegisterIndex).registerA
val insertIndex = viewRegisterIndex + 1
addInstruction(
insertIndex,
"invoke-static { v$viewRegister }, " +
- "$INTEGRATIONS_CLASS_DESCRIPTOR->hidePlayerOverlay(Landroid/widget/ImageView;)V"
+ "$INTEGRATIONS_CLASS_DESCRIPTOR->changeOpacity(Landroid/widget/ImageView;)V"
)
}
} ?: throw CreatePlayerOverviewFingerprint.exception
}
private companion object {
- const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/HidePlayerOverlayPatch;"
+ const val INTEGRATIONS_CLASS_DESCRIPTOR = "Lapp/revanced/integrations/patches/CustomPlayerOverlayOpacityPatch;"
}
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt
similarity index 50%
rename from src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt
rename to src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt
index cc794c4dc3..e868a8e209 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/player/overlay/resource/patch/HidePlayerOverlayResourcePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/player/overlay/resource/patch/CustomPlayerOverlayOpacityResourcePatch.kt
@@ -1,22 +1,29 @@
-package app.revanced.patches.youtube.layout.hide.player.overlay.resource.patch
+package app.revanced.patches.youtube.layout.player.overlay.resource.patch
import app.revanced.patcher.data.ResourceContext
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
+import app.revanced.patches.shared.settings.preference.impl.InputType
import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
+import app.revanced.patches.shared.settings.preference.impl.TextPreference
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@DependsOn([SettingsPatch::class, ResourceMappingPatch::class])
-class HidePlayerOverlayResourcePatch : ResourcePatch {
+class CustomPlayerOverlayOpacityResourcePatch : ResourcePatch {
override fun execute(context: ResourceContext) {
SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
- SwitchPreference(
- "revanced_hide_player_overlay",
- StringResource("revanced_hide_player_overlay_title", "Hide background overlay in player"),
- StringResource("revanced_hide_player_overlay_summary_on", "Background overlay is hidden"),
- StringResource("revanced_hide_player_overlay_summary_off", "Background overlay is shown")
+ TextPreference(
+ "revanced_player_overlay_opacity",
+ StringResource(
+ "revanced_player_overlay_opacity_title",
+ "Player overlay opacity"
+ ),
+ StringResource(
+ "revanced_player_overlay_opacity_summary",
+ "Opacity value between 0-100, where 0 is transparent"
+ ),
+ InputType.NUMBER
)
)
@@ -26,6 +33,6 @@ class HidePlayerOverlayResourcePatch : ResourcePatch {
}
internal companion object {
- var scrimOverlayId: Long = -1
+ var scrimOverlayId = -1L
}
-}
\ No newline at end of file
+}
|
feat
|
Add `Custom player overlay opacity` patch (#2721)
|
d3f86689a6ad2f797d00ccb06da4ee6a6780d732
|
2022-09-07 03:15:54
|
Sculas
|
build: update patcher
| false
|
diff --git a/build.gradle.kts b/build.gradle.kts
index c06c2d2735..bca1588c04 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -22,7 +22,7 @@ repositories {
dependencies {
implementation(kotlin("stdlib"))
- implementation("app.revanced:revanced-patcher:3.4.0")
+ implementation("app.revanced:revanced-patcher:3.5.1")
implementation("app.revanced:multidexlib2:2.5.2.r2")
// Required for meta
|
build
|
update patcher
|
7b8f0db2c17da6488db1ec2c21a21a14ff8466aa
|
2023-01-28 13:26:07
|
oSumAtrIX
|
fix(youtube/sponsorblock): replace missing strings
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt
new file mode 100644
index 0000000000..822484a890
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/RectangleFieldInvalidatorFingerprint.kt
@@ -0,0 +1,22 @@
+package app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints
+
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import org.jf.dexlib2.iface.reference.MethodReference
+
+object RectangleFieldInvalidatorFingerprint : MethodFingerprint(
+ "V",
+ customFingerprint = custom@{ methodDef ->
+ val instructions = methodDef.implementation?.instructions!!
+ val instructionCount = instructions.count()
+
+ // the method has definitely more than 5 instructions
+ if (instructionCount < 5) return@custom false
+
+ val referenceInstruction = instructions.elementAt(instructionCount - 2) // the second to last instruction
+ val reference = ((referenceInstruction as? ReferenceInstruction)?.reference as? MethodReference)
+
+ reference?.parameterTypes?.size == 1 && reference.name == "invalidate" // the reference is the invalidate(..) method
+ }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
index f070aa8a6c..8ca1ab12e6 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
@@ -7,9 +7,11 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.addInstruction
import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.extensions.replaceInstruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
@@ -17,7 +19,6 @@ import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.fingerprints.SeekbarFingerprint
import app.revanced.patches.shared.fingerprints.SeekbarOnDrawFingerprint
import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
-import app.revanced.patches.youtube.layout.autocaptions.fingerprints.StartVideoInformerFingerprint
import app.revanced.patches.youtube.layout.sponsorblock.annotations.SponsorBlockCompatibility
import app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints.*
import app.revanced.patches.youtube.layout.sponsorblock.resource.patch.SponsorBlockResourcePatch
@@ -29,7 +30,9 @@ import app.revanced.patches.youtube.misc.video.videoid.patch.VideoIdPatch
import org.jf.dexlib2.Opcode
import org.jf.dexlib2.iface.instruction.*
import org.jf.dexlib2.iface.instruction.formats.Instruction35c
+import org.jf.dexlib2.iface.reference.FieldReference
import org.jf.dexlib2.iface.reference.MethodReference
+import org.jf.dexlib2.iface.reference.StringReference
@Patch
@DependsOn(
@@ -52,7 +55,6 @@ class SponsorBlockBytecodePatch : BytecodePatch(
NextGenWatchLayoutFingerprint,
AppendTimeFingerprint,
PlayerOverlaysLayoutInitFingerprint,
- StartVideoInformerFingerprint
)
) {
@@ -233,6 +235,39 @@ class SponsorBlockBytecodePatch : BytecodePatch(
"invoke-static {p0}, Lapp/revanced/integrations/sponsorblock/player/ui/SponsorBlockView;->initialize(Ljava/lang/Object;)V"
)
+ // get rectangle field name
+ RectangleFieldInvalidatorFingerprint.resolve(context, seekbarSignatureResult.classDef)
+ val rectangleFieldInvalidatorInstructions =
+ RectangleFieldInvalidatorFingerprint.result!!.method.implementation!!.instructions
+ val rectangleFieldName =
+ ((rectangleFieldInvalidatorInstructions.elementAt(rectangleFieldInvalidatorInstructions.count() - 3) as ReferenceInstruction).reference as FieldReference).name
+
+ // replace the "replaceMeWith*" strings
+ context
+ .proxy(context.classes.first { it.type.endsWith("PlayerController;") })
+ .mutableClass
+ .methods
+ .find { it.name == "setSponsorBarRect" }
+ ?.let { method ->
+ fun MutableMethod.replaceStringInstruction(index: Int, instruction: Instruction, with: String) {
+ val register = (instruction as OneRegisterInstruction).registerA
+ this.replaceInstruction(
+ index, "const-string v$register, \"$with\""
+ )
+ }
+ for ((index, it) in method.implementation!!.instructions.withIndex()) {
+ if (it.opcode.ordinal != Opcode.CONST_STRING.ordinal) continue
+
+ when (((it as ReferenceInstruction).reference as StringReference).string) {
+ "replaceMeWithsetSponsorBarRect" -> method.replaceStringInstruction(
+ index,
+ it,
+ rectangleFieldName
+ )
+ }
+ }
+ } ?: return PatchResultError("Could not find the method which contains the replaceMeWith* strings")
+
// TODO: isSBChannelWhitelisting implementation
return PatchResultSuccess()
|
fix
|
replace missing strings
|
44366398eb9eb3b5a87942fd9fd52f0f826a3dce
|
2023-05-25 00:50:59
|
semantic-release-bot
|
chore(release): 2.174.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de0df6d2d9..95361be966 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,65 @@
+# [2.174.0](https://github.com/revanced/revanced-patches/compare/v2.173.0...v2.174.0) (2023-05-24)
+
+
+### Bug Fixes
+
+* account fo breaking changes from ReVanced Patcher ([#2103](https://github.com/revanced/revanced-patches/issues/2103)) ([5be25cd](https://github.com/revanced/revanced-patches/commit/5be25cde4b34d58ced35a7edbb499477b538b748))
+* check for opcode type `CONST` ([e5bb63c](https://github.com/revanced/revanced-patches/commit/e5bb63c7ab4427b6116de4a999be306e0f3cf12e))
+* incorrect cast of instruction ([fb94a1c](https://github.com/revanced/revanced-patches/commit/fb94a1cb48e8952981e2f9146eb90ee92a517b2e))
+* incorrect instruction offsets ([42a5a38](https://github.com/revanced/revanced-patches/commit/42a5a387da3c53c579234a44c124ab0ba26117cb))
+* incorrect smali syntax ([4e74a80](https://github.com/revanced/revanced-patches/commit/4e74a800c311d7acb2c2ddb492b43747db8a8def))
+* **photomath/unlock-plus:** constrain to last working version ([#2232](https://github.com/revanced/revanced-patches/issues/2232)) ([4da268e](https://github.com/revanced/revanced-patches/commit/4da268edc006ea496e3b1efd037676f1c40397da))
+* **readme-generator:** attempt sorting versions with `FlexVer` ([#2059](https://github.com/revanced/revanced-patches/issues/2059)) ([a54c464](https://github.com/revanced/revanced-patches/commit/a54c464522fa2a6a2d2525c8cb0ec961c2cc771c))
+* **spotify/disable-capture-restriction:** make compatible with latest versions ([#2095](https://github.com/revanced/revanced-patches/issues/2095)) ([e48f127](https://github.com/revanced/revanced-patches/commit/e48f1278da2a9d82e70be41fa2c4c480c574816b))
+* **twitter:** correctly resolve to integrations methods ([c655416](https://github.com/revanced/revanced-patches/commit/c655416a91f0a32cfe82b1384f5958cace891833))
+* **youtube/custom-video-speed:** add missing class for `video-speeds` patch ([#2137](https://github.com/revanced/revanced-patches/issues/2137)) ([758ef42](https://github.com/revanced/revanced-patches/commit/758ef42f9cd36d665b1737b67bcdde22d3e3eb98))
+* **youtube/integrations:** allow playback of embedded videos ([#2092](https://github.com/revanced/revanced-patches/issues/2092)) ([8a43d75](https://github.com/revanced/revanced-patches/commit/8a43d75e2db63c47bb9ad1b75027df0868c094e5))
+* **youtube/minimized-playback:** update settings description ([#2191](https://github.com/revanced/revanced-patches/issues/2191)) ([a561a9a](https://github.com/revanced/revanced-patches/commit/a561a9afc233e466459546fcc8452800ec56e057))
+* **youtube/remember-video-quality:** fix default video quality/speed being applied when resuming app. ([#2112](https://github.com/revanced/revanced-patches/issues/2112)) ([f68a41c](https://github.com/revanced/revanced-patches/commit/f68a41ce9f9a78818d3f28b069e70b8c66125f53))
+* **youtube/return-youtube-dislikes:** fix temporarily frozen video after opening a shorts ([#2126](https://github.com/revanced/revanced-patches/issues/2126)) ([e0877e3](https://github.com/revanced/revanced-patches/commit/e0877e33814ba396e64e18a577064aa5be952413))
+* **youtube/settings:** fix non functional back button in settings ([#2178](https://github.com/revanced/revanced-patches/issues/2178)) ([46da834](https://github.com/revanced/revanced-patches/commit/46da83430f69b451f971bf5e9261e9d64d1a365c))
+* **youtube/sponsorblock:** fix skip button in wrong location when full screen and comments visible ([#2051](https://github.com/revanced/revanced-patches/issues/2051)) ([30a954c](https://github.com/revanced/revanced-patches/commit/30a954cac83a66fbb25589edc487797ea5f19986))
+* **youtube/sponsorblock:** fix toast shown when scrubbing thru a paused video ([#2152](https://github.com/revanced/revanced-patches/issues/2152)) ([c6c23ff](https://github.com/revanced/revanced-patches/commit/c6c23ff0d9a18e3ef3d4b9b28ffa562a2eceb58b))
+* **youtube/spoof-signature-verification:** adjusting summary text ([#2169](https://github.com/revanced/revanced-patches/issues/2169)) ([4ccb1ee](https://github.com/revanced/revanced-patches/commit/4ccb1ee0b988bc0ddd6a0c986975b17caa828770))
+* **youtube/theme:** apply custom seekbar color to video thumbnails ([#2085](https://github.com/revanced/revanced-patches/issues/2085)) ([d497027](https://github.com/revanced/revanced-patches/commit/d4970273ad10f62cd9455ef9b847c686147f7dca))
+* **youtube/theme:** move options out of dependency patch ([a953448](https://github.com/revanced/revanced-patches/commit/a95344879c2ac2cd6da8ce0273dcb05e8a35d2ec))
+* **youtube/vanced-microg-support:** depend on `client-spoof` patch ([83a4905](https://github.com/revanced/revanced-patches/commit/83a490575c60adf21db926df3013f539c6d33068))
+* **youtube/video-speed:** add compatibility annotation ([#2156](https://github.com/revanced/revanced-patches/issues/2156)) ([ffa2e5d](https://github.com/revanced/revanced-patches/commit/ffa2e5d7eb0b90bb5c7a6854bab4caf9f810d917))
+* **youtube:** add missing compatibility annotations for `theme` and `hide-load-more-button` ([#2150](https://github.com/revanced/revanced-patches/issues/2150)) ([78803f8](https://github.com/revanced/revanced-patches/commit/78803f8ea85684e4c69e75b676fa40bae8760957))
+
+
+### Features
+
+* add capability to filter from protobuf buffer ([b738b6b](https://github.com/revanced/revanced-patches/commit/b738b6bf3506f222844ef4bca99a91f78d331391))
+* **candylinkvpn:** add `unlock-pro` patch ([#2157](https://github.com/revanced/revanced-patches/issues/2157)) ([7159f86](https://github.com/revanced/revanced-patches/commit/7159f867801300d4ae32937743de59421de76238))
+* improve structure of `README` ([279b193](https://github.com/revanced/revanced-patches/commit/279b193b687ad9cba44ab9c2a88d2ce06be0bbf0))
+* **messenger:** add `disable-switching-emoji-to-sticker-in-message-input-field` patch ([#2099](https://github.com/revanced/revanced-patches/issues/2099)) ([ac5532a](https://github.com/revanced/revanced-patches/commit/ac5532a65c353b1964d9b7d990341fc7362e510d))
+* **messenger:** add `disable-typing-indicator` patch ([#2115](https://github.com/revanced/revanced-patches/issues/2115)) ([5d1de4f](https://github.com/revanced/revanced-patches/commit/5d1de4f4eab83e61cfc1c4aaee74179afcb9431f))
+* **patch:** bump compatibility ([#2060](https://github.com/revanced/revanced-patches/issues/2060)) ([f86836d](https://github.com/revanced/revanced-patches/commit/f86836d6295db9eb8c59916deaa991b4d99e96be))
+* **reddit:** add `sanitize-sharing-links` patch ([#2192](https://github.com/revanced/revanced-patches/issues/2192)) ([9593e4b](https://github.com/revanced/revanced-patches/commit/9593e4b5db604957545b4ab6747c82fb815ac08b))
+* **reddit:** remove compatibility version constraints ([#2226](https://github.com/revanced/revanced-patches/issues/2226)) ([f1288e4](https://github.com/revanced/revanced-patches/commit/f1288e4bb8fb1b9f394d73fd814d97db8704b8e0))
+* **syncforreddit:** add `disable-ads` patch ([#2066](https://github.com/revanced/revanced-patches/issues/2066)) ([c1de5d6](https://github.com/revanced/revanced-patches/commit/c1de5d6e433263b9a17305fa1c65807921594731))
+* **trakt:** add `unlock-pro` patch ([#2210](https://github.com/revanced/revanced-patches/issues/2210)) ([1e8dcae](https://github.com/revanced/revanced-patches/commit/1e8dcae6f540455b8698703bbded5f52fd0c6300))
+* **twitch/auto-claim-channel-points:** use correct casing for "Channel Points" ([#2138](https://github.com/revanced/revanced-patches/issues/2138)) ([76a3bf2](https://github.com/revanced/revanced-patches/commit/76a3bf23b5e5591ae635e612af07cbbd78d49f53))
+* **twitch:** add `auto-claim-channel-points` patch ([#2131](https://github.com/revanced/revanced-patches/issues/2131)) ([80fb670](https://github.com/revanced/revanced-patches/commit/80fb6701b52a8c6c6bada5546dffe3438f0e4879))
+* use consistent names for patches ([6347146](https://github.com/revanced/revanced-patches/commit/634714690086168e63d6aa9475893135cb58db68))
+* **vsco:** add `unlock-pro` patch ([#2168](https://github.com/revanced/revanced-patches/issues/2168)) ([7ffd1a0](https://github.com/revanced/revanced-patches/commit/7ffd1a09a7bcf09bc7e7d5f3c8c8613ca34c8c59))
+* **youtube/copy-video-url:** add tap and hold functionality to copy video url buttons ([#2174](https://github.com/revanced/revanced-patches/issues/2174)) ([95bbf46](https://github.com/revanced/revanced-patches/commit/95bbf46e77a608bd7ba8f0073d50fef01012d4df))
+* **youtube/downloads:** improve patch description ([e0f6452](https://github.com/revanced/revanced-patches/commit/e0f64520d0235ea219f1965ba34b7e52ded9c1d9))
+* **youtube/hide-filter-bar:** add `PreferenceScreen` summary ([2bba5f7](https://github.com/revanced/revanced-patches/commit/2bba5f72fae06e352d2984fea7c8cc65d38ed221))
+* **youtube/hide-player-overlay:** make it toggleable in settings ([#2044](https://github.com/revanced/revanced-patches/issues/2044)) ([f693d55](https://github.com/revanced/revanced-patches/commit/f693d55caf1e0b72bb1f4c39b1eeb59436191e02))
+* **youtube/hide-shorts-components:** hide navigation bar ([24f376a](https://github.com/revanced/revanced-patches/commit/24f376a4b8d6bdccc32ffff0d983f22eb4940791))
+* **youtube/settings:** add reset button to edit preference dialog ([#2047](https://github.com/revanced/revanced-patches/issues/2047)) ([ede765a](https://github.com/revanced/revanced-patches/commit/ede765ae3c506909ee8a99517b99b6f5f113f01a))
+* **youtube/video-speed:** change custom video speeds inside app settings ([#2114](https://github.com/revanced/revanced-patches/issues/2114)) ([d97815a](https://github.com/revanced/revanced-patches/commit/d97815af18e645fd0fa087db0174bcc2a771ec72))
+* **youtube:** `hide-load-more-button` patch ([#2078](https://github.com/revanced/revanced-patches/issues/2078)) ([7170802](https://github.com/revanced/revanced-patches/commit/71708022a06453f6f56c19d686fc505286523391))
+* **youtube:** add `hide-filter-bar` patch ([6cc5f61](https://github.com/revanced/revanced-patches/commit/6cc5f61e0712fe25cd45b137773decaf4b9bb582))
+* **youtube:** add `hide-shorts-components` patch ([64868f4](https://github.com/revanced/revanced-patches/commit/64868f41be9f567cb54d9214fafbf849d08b64d2))
+* **youtube:** add options to disable toasts on connection error ([#2159](https://github.com/revanced/revanced-patches/issues/2159)) ([99916ae](https://github.com/revanced/revanced-patches/commit/99916aefaaea3b94e94e2901d70493fdb18a3dab))
+* **youtube:** constrain patches to `18.16.37` ([758b300](https://github.com/revanced/revanced-patches/commit/758b3005919e11d9dd4f19bf110e9d282f8d1925))
+* **youtube:** import / export of revanced settings ([#2077](https://github.com/revanced/revanced-patches/issues/2077)) ([b59cb3e](https://github.com/revanced/revanced-patches/commit/b59cb3ed60293aaf81067ff3469863add09c6b13))
+* **youtube:** move video settings to `Video` settings category ([#2010](https://github.com/revanced/revanced-patches/issues/2010)) ([f4b9180](https://github.com/revanced/revanced-patches/commit/f4b918075a70d1a4ed9ac7e9c1f0e0acd1c77404))
+* **youtube:** support version `18.19.35` ([491f292](https://github.com/revanced/revanced-patches/commit/491f292182a419cb5399de768560ae4daa7c86cb))
+
# [2.174.0-dev.41](https://github.com/revanced/revanced-patches/compare/v2.174.0-dev.40...v2.174.0-dev.41) (2023-05-24)
diff --git a/gradle.properties b/gradle.properties
index 1b7355b38c..1922a104ff 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.174.0-dev.41
+version = 2.174.0
|
chore
|
2.174.0 [skip ci]
|
ffe68a108e50ef4267ed1bddd38a127b7210d216
|
2022-07-11 12:28:15
|
semantic-release-bot
|
chore(release): 2.12.4 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76ed7610aa..51b6b69862 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.12.4](https://github.com/revanced/revanced-patches/compare/v2.12.3...v2.12.4) (2022-07-11)
+
+
+### Bug Fixes
+
+* `autorepeat-by-default` patch ([#148](https://github.com/revanced/revanced-patches/issues/148)) ([fe628ba](https://github.com/revanced/revanced-patches/commit/fe628ba909d89ea0bf3d95fe94ca78ef819677da))
+
## [2.12.3](https://github.com/revanced/revanced-patches/compare/v2.12.2...v2.12.3) (2022-07-11)
diff --git a/README.md b/README.md
index 03b035c9cc..901056a2b0 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,6 @@
| `general-ads` | Removes general ads in bytecode. | `com.google.android.youtube` | 17.26.35 |
| `video-ads` | Removes ads in the YouTube video player. | `com.google.android.youtube` | 17.26.35 |
| `hide-infocard-suggestions` | Hides infocards in videos. | `com.google.android.youtube` | 17.26.35 |
-| `autorepeat-by-default` | Enables auto repeating of videos by default. | `com.google.android.youtube` | 17.26.35 |
| `custom-branding` | Changes the branding of YouTube. | `com.google.android.youtube` | all |
| `premium-heading` | Shows premium branding on the YouTube home screen. | `com.google.android.youtube` | all |
| `minimized-playback` | Enables minimized and background playback. | `com.google.android.youtube` | 17.26.35 |
@@ -25,6 +24,7 @@
| `hide-cast-button` | Hides the cast button. | `com.google.android.youtube` | all |
| `hide-watermark` | Hides the creator's watermark on videos. | `com.google.android.youtube` | 17.26.35 |
| `microg-support` | Allows YouTube ReVanced to run without root and under a different package name. | `com.google.android.youtube` | 17.26.35 |
+| `autorepeat-by-default` | Enables auto repeating of videos by default. | `com.google.android.youtube` | 17.26.35 |
| `custom-playback-speed` | Allows to change the default playback speed options. | `com.google.android.youtube` | 17.26.35 |
| `hdr-max-brightness` | Sets brightness to max for HDR videos in fullscreen mode. | `com.google.android.youtube` | 17.26.35 |
| `enable-debugging` | Enables app debugging by patching the manifest file. | `com.google.android.youtube` | all |
diff --git a/gradle.properties b/gradle.properties
index da201b1168..ad3d8ad224 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.12.3
+version = 2.12.4
|
chore
|
2.12.4 [skip ci]
|
33711f74f75fed4a9802c0fa4fe8eee34fb2fc4e
|
2025-02-22 15:09:54
|
github-actions[bot]
|
chore: Sync translations (#4492)
| false
|
diff --git a/patches/src/main/resources/addresources/values-el-rGR/strings.xml b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
index f1ff14d411..9cff81f007 100644
--- a/patches/src/main/resources/addresources/values-el-rGR/strings.xml
+++ b/patches/src/main/resources/addresources/values-el-rGR/strings.xml
@@ -280,12 +280,8 @@ Second \"item\" text"</string>
<string name="revanced_hide_artist_cards_summary_on">Κρυμμένες</string>
<string name="revanced_hide_artist_cards_summary_off">Εμφανίζονται</string>
<string name="revanced_hide_attributes_section_title">Ενότητα ιδιοτήτων</string>
- <string name="revanced_hide_attributes_section_summary_on">Κρυμμένη.
-
-Αφορά τις ιδιότητες: Επιλεγμένα μέρη, Παιχνίδια, Μουσική, και «Οι χρήστες ανέφεραν»</string>
- <string name="revanced_hide_attributes_section_summary_off">Εμφανίζεται.
-
-Αφορά τις ιδιότητες: Επιλεγμένα μέρη, Παιχνίδια, Μουσική, και «Οι χρήστες ανέφεραν»</string>
+ <string name="revanced_hide_attributes_section_summary_on">Κρυμμένη.\n\nΑφορά τις ιδιότητες: Επιλεγμένα μέρη, Παιχνίδια, Μουσική, και «Οι χρήστες ανέφεραν»</string>
+ <string name="revanced_hide_attributes_section_summary_off">Εμφανίζεται.\n\nΑφορά τις ιδιότητες: Επιλεγμένα μέρη, Παιχνίδια, Μουσική, και «Οι χρήστες ανέφεραν»</string>
<string name="revanced_hide_chapters_section_title">Κεφάλαια του βίντεο</string>
<string name="revanced_hide_chapters_section_summary_on">Κρυμμένη</string>
<string name="revanced_hide_chapters_section_summary_off">Εμφανίζεται</string>
|
chore
|
Sync translations (#4492)
|
9575f633e92cf540f344f4add8a1447564690fc6
|
2022-09-21 06:28:39
|
OxrxL
|
feat: `hide-time-and-seekbar` patch (#544)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/annotations/HideTimeAndSeekbarCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/annotations/HideTimeAndSeekbarCompatibility.kt
new file mode 100644
index 0000000000..2beca78064
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/annotations/HideTimeAndSeekbarCompatibility.kt
@@ -0,0 +1,13 @@
+package app.revanced.patches.youtube.layout.hidetimeandseekbar.annotations
+
+import app.revanced.patcher.annotation.Compatibility
+import app.revanced.patcher.annotation.Package
+
+@Compatibility(
+ [Package(
+ "com.google.android.youtube", arrayOf("17.25.34", "17.26.35", "17.27.39", "17.28.34", "17.29.34", "17.32.35", "17.33.42", "17.36.37")
+ )]
+)
+@Target(AnnotationTarget.CLASS)
+@Retention(AnnotationRetention.RUNTIME)
+internal annotation class HideTimeAndSeekbarCompatibility
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/InlineTimeBarWrapperFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/InlineTimeBarWrapperFingerprint.kt
new file mode 100644
index 0000000000..f830b9e1e1
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/InlineTimeBarWrapperFingerprint.kt
@@ -0,0 +1,35 @@
+package app.revanced.patches.youtube.layout.hidetimeandseekbar.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.youtube.layout.hidetimeandseekbar.annotations.HideTimeAndSeekbarCompatibility
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+
+@Name("inline-time-bar-wrapper-fingerprint")
+@MatchingMethod("Lcom/google/android/apps/youtube/app/common/player/overlay/InlineTimeBarWrapper;", "onLayout")
+@FuzzyPatternScanMethod(3)
+@HideTimeAndSeekbarCompatibility
+@Version("0.0.1")
+object InlineTimeBarWrapperFingerprint : MethodFingerprint(
+ "V", AccessFlags.PROTECTED or AccessFlags.FINAL, listOf("Z", "I", "I", "I", "I"), listOf(
+ Opcode.SUB_INT_2ADDR,
+ Opcode.SUB_INT,
+ Opcode.IF_EQZ,
+ Opcode.IF_NEZ,
+ Opcode.GOTO_16,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT,
+ Opcode.SUB_INT,
+ Opcode.CONST_4,
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT,
+ Opcode.IGET_OBJECT,
+ )
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/TimeCounterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/TimeCounterFingerprint.kt
new file mode 100644
index 0000000000..21c0e9d358
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/fingerprints/TimeCounterFingerprint.kt
@@ -0,0 +1,26 @@
+package app.revanced.patches.youtube.layout.hidetimeandseekbar.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.youtube.layout.hidetimeandseekbar.annotations.HideTimeAndSeekbarCompatibility
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+
+@Name("time-counter-fingerprint")
+@MatchingMethod("Lfez", "a")
+@FuzzyPatternScanMethod(3)
+@HideTimeAndSeekbarCompatibility
+@Version("0.0.1")
+object TimeCounterFingerprint : MethodFingerprint(
+ "L", AccessFlags.PUBLIC or AccessFlags.STATIC, listOf("J"), listOf(
+ Opcode.SGET_OBJECT,
+ Opcode.CONST_WIDE_16,
+ Opcode.ADD_LONG_2ADDR,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_WIDE,
+ )
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
new file mode 100644
index 0000000000..75e82fd6d3
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
@@ -0,0 +1,72 @@
+package app.revanced.patches.youtube.layout.hidetimeandseekbar.patch
+
+import app.revanced.patcher.annotation.Description
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.data.impl.BytecodeData
+import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.patch.PatchResult
+import app.revanced.patcher.patch.PatchResultSuccess
+import app.revanced.patcher.patch.annotations.DependsOn
+import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patcher.patch.impl.BytecodePatch
+import app.revanced.patches.youtube.layout.hidetimeandseekbar.fingerprints.InlineTimeBarWrapperFingerprint
+import app.revanced.patches.youtube.layout.hidetimeandseekbar.fingerprints.TimeCounterFingerprint
+import app.revanced.patches.youtube.layout.hidetimeandseekbar.annotations.HideTimeAndSeekbarCompatibility
+import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
+import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
+import app.revanced.patches.youtube.misc.settings.framework.components.impl.StringResource
+import app.revanced.patches.youtube.misc.settings.framework.components.impl.SwitchPreference
+
+@Patch
+@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
+@Name("hide-time-and-seekbar")
+@Description("Hides progress bar and time counter on videos.")
+@HideTimeAndSeekbarCompatibility
+@Version("0.0.1")
+class HideTimeAndSeekbarPatch : BytecodePatch(
+ listOf(
+ InlineTimeBarWrapperFingerprint, TimeCounterFingerprint
+ )
+) {
+ override fun execute(data: BytecodeData): PatchResult {
+ SettingsPatch.PreferenceScreen.LAYOUT.addPreferences(
+ SwitchPreference(
+ "revanced_hide_time_and_seekbar",
+ StringResource("revanced_hide_time_and_seekbar_title", "Hide time and seekbar"),
+ false,
+ StringResource("revanced_hide_time_and_seekbar_summary_on", "Time and seekbar are hidden"),
+ StringResource("revanced_hide_time_and_seekbar_summary_off", "Time and seekbar are visible")
+ )
+ )
+
+ val inlineTimeBarWrapperMethod = InlineTimeBarWrapperFingerprint.result!!.mutableMethod
+
+ inlineTimeBarWrapperMethod.addInstructions(
+ 0, """
+ invoke-static { }, Lapp/revanced/integrations/patches/HideTimeAndSeekbarPatch;->hideTimeAndSeekbar()Z
+ move-result v0
+ if-eqz v0, :hide_time_and_seekbar
+ return-void
+ :hide_time_and_seekbar
+ nop
+ """
+ )
+
+ val timeCounterMethod = TimeCounterFingerprint.result!!.mutableMethod
+
+ timeCounterMethod.addInstructions(
+ 0, """
+ invoke-static { }, Lapp/revanced/integrations/patches/HideTimeAndSeekbarPatch;->hideTimeAndSeekbar()Z
+ move-result v0
+ if-eqz v0, :hide_time_and_seekbar
+ const-string v0, ""
+ return-object v0
+ :hide_time_and_seekbar
+ nop
+ """
+ )
+
+ return PatchResultSuccess()
+ }
+}
|
feat
|
`hide-time-and-seekbar` patch (#544)
|
9180d4f5c3d4a50f412b37af69d61aafce5ffc07
|
2023-11-12 21:32:41
|
oSumAtrIX
|
feat(YouTube - Hide timestamp): Support version `18.43.45`
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
index 164698dcb2..4cf61b2091 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hide/time/fingerprints/TimeCounterFingerprint.kt
@@ -1,24 +1,25 @@
package app.revanced.patches.youtube.layout.hide.time.fingerprints
import app.revanced.patcher.extensions.or
-import app.revanced.patcher.fingerprint.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.MethodFingerprint
+import app.revanced.patcher.fingerprint.annotation.FuzzyPatternScanMethod
import com.android.tools.smali.dexlib2.AccessFlags
import com.android.tools.smali.dexlib2.Opcode
@FuzzyPatternScanMethod(1)
object TimeCounterFingerprint : MethodFingerprint(
- "V", AccessFlags.PUBLIC or AccessFlags.FINAL, listOf(), listOf(
- Opcode.IGET_OBJECT,
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ emptyList(),
+ listOf(
+ Opcode.SUB_LONG_2ADDR,
Opcode.IGET_WIDE,
- Opcode.CONST_WIDE_16,
- Opcode.CMP_LONG,
- Opcode.IF_LEZ,
+ Opcode.SUB_LONG_2ADDR,
Opcode.IGET_OBJECT,
- Opcode.IF_EQZ,
- Opcode.INVOKE_VIRTUAL,
- Opcode.MOVE_RESULT,
- Opcode.IF_EQZ,
- Opcode.GOTO,
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.IGET_WIDE,
+ Opcode.IGET_WIDE,
+ Opcode.SUB_LONG_2ADDR
)
)
\ No newline at end of file
|
feat
|
Support version `18.43.45`
|
7a35e5c985b412d5a84083d1416d3207a40b3e97
|
2022-07-21 20:34:30
|
TheJeterLP
|
fix: crash when using force-vp9-codec patch
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/forcevp9/patch/ForceVP9CodecPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/forcevp9/patch/ForceVP9CodecPatch.kt
index a830890cdf..1746e6f29d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/forcevp9/patch/ForceVP9CodecPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/forcevp9/patch/ForceVP9CodecPatch.kt
@@ -78,8 +78,8 @@ class ForceVP9CodecPatch : BytecodePatch(
method.removeInstruction(index)
method.addInstructions(
index, """
- invoke-static {v$register}, Lapp/revanced/integrations/patches/ForceCodecPatch;->get$name()Ljava/lang/String;
- move-result v$register
+ invoke-static {}, Lapp/revanced/integrations/patches/ForceCodecPatch;->get$name()Ljava/lang/String;
+ move-result-object v$register
"""
)
}
|
fix
|
crash when using force-vp9-codec patch
|
83ebc731130d3d216ac4b815382d8f13548cf665
|
2022-12-19 02:58:06
|
oSumAtrIX
|
feat(youtube): bump patches compatibility to v17.49.37
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarFingerprint.kt b/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarFingerprint.kt
new file mode 100644
index 0000000000..572ec21932
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarFingerprint.kt
@@ -0,0 +1,9 @@
+package app.revanced.patches.shared.fingerprints
+
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+
+object SeekbarFingerprint : MethodFingerprint(
+ "V",
+ strings = listOf("timed_markers_width")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarOnDrawFingerprint.kt b/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarOnDrawFingerprint.kt
new file mode 100644
index 0000000000..7afcdae85c
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/shared/fingerprints/SeekbarOnDrawFingerprint.kt
@@ -0,0 +1,8 @@
+package app.revanced.patches.shared.fingerprints
+
+
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+
+object SeekbarOnDrawFingerprint : MethodFingerprint(
+ customFingerprint = { it.name == "onDraw" }
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
index a616be48f2..8a7821ada1 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/hidetimeandseekbar/patch/HideTimeAndSeekbarPatch.kt
@@ -5,18 +5,20 @@ import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.shared.fingerprints.SeekbarFingerprint
+import app.revanced.patches.shared.fingerprints.SeekbarOnDrawFingerprint
+import app.revanced.patches.shared.settings.preference.impl.StringResource
+import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.layout.hidetimeandseekbar.annotations.HideTimeAndSeekbarCompatibility
import app.revanced.patches.youtube.layout.hidetimeandseekbar.fingerprints.TimeCounterFingerprint
-import app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints.CreateVideoPlayerSeekbarFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
-import app.revanced.patches.shared.settings.preference.impl.StringResource
-import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
@Patch
@DependsOn([IntegrationsPatch::class, SettingsPatch::class])
@@ -26,7 +28,7 @@ import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
@Version("0.0.1")
class HideTimeAndSeekbarPatch : BytecodePatch(
listOf(
- CreateVideoPlayerSeekbarFingerprint, TimeCounterFingerprint
+ SeekbarFingerprint, TimeCounterFingerprint
)
) {
override fun execute(context: BytecodeContext): PatchResult {
@@ -40,7 +42,9 @@ class HideTimeAndSeekbarPatch : BytecodePatch(
)
)
- val createVideoPlayerSeekbarMethod = CreateVideoPlayerSeekbarFingerprint.result!!.mutableMethod
+ val createVideoPlayerSeekbarMethod = SeekbarFingerprint.result!!.let {
+ SeekbarOnDrawFingerprint.apply { resolve(context, it.mutableClass) }
+ }.result!!.mutableMethod
createVideoPlayerSeekbarMethod.addInstructions(
0, """
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
index 0cf0e2c8b2..de92cf149f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/returnyoutubedislike/patch/ReturnYouTubeDislikePatch.kt
@@ -1,5 +1,6 @@
package app.revanced.patches.youtube.layout.returnyoutubedislike.patch
+import app.revanced.extensions.toErrorResult
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
@@ -51,8 +52,8 @@ class ReturnYouTubeDislikePatch : BytecodePatch(
VideoIdPatch.injectCall("Lapp/revanced/integrations/patches/ReturnYouTubeDislikePatch;->newVideoLoaded(Ljava/lang/String;)V")
with(TextComponentFingerprint
- .also { it.resolve(context, TextComponentSpecParentFingerprint.result!!.classDef) }
- .result ?: return PatchResultError("Could not find createComponent method")
+ .apply { resolve(context, TextComponentSpecParentFingerprint.result!!.classDef) }
+ .result ?: return TextComponentFingerprint.toErrorResult()
) {
val createComponentMethod = mutableMethod
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/CreateVideoPlayerSeekbarFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/CreateVideoPlayerSeekbarFingerprint.kt
deleted file mode 100644
index 3c021fcef0..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/fingerprints/CreateVideoPlayerSeekbarFingerprint.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-package app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints
-
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-
-object CreateVideoPlayerSeekbarFingerprint : MethodFingerprint(
- "V",
- strings = listOf("timed_markers_width")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
index 9b3d507cd4..15e40ffc3d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt
@@ -16,12 +16,14 @@ import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
+import app.revanced.patches.shared.fingerprints.SeekbarFingerprint
+import app.revanced.patches.shared.fingerprints.SeekbarOnDrawFingerprint
+import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.youtube.layout.autocaptions.fingerprints.StartVideoInformerFingerprint
import app.revanced.patches.youtube.layout.sponsorblock.annotations.SponsorBlockCompatibility
import app.revanced.patches.youtube.layout.sponsorblock.bytecode.fingerprints.*
import app.revanced.patches.youtube.layout.sponsorblock.resource.patch.SponsorBlockResourcePatch
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
-import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch
import app.revanced.patches.youtube.misc.playercontrols.bytecode.patch.PlayerControlsBytecodePatch
import app.revanced.patches.youtube.misc.video.information.patch.VideoInformationPatch
import app.revanced.patches.youtube.misc.video.videoid.patch.VideoIdPatch
@@ -48,7 +50,7 @@ import org.jf.dexlib2.iface.reference.StringReference
@Version("0.0.1")
class SponsorBlockBytecodePatch : BytecodePatch(
listOf(
- CreateVideoPlayerSeekbarFingerprint,
+ SeekbarFingerprint,
NextGenWatchLayoutFingerprint,
AppendTimeFingerprint,
PlayerOverlaysLayoutInitFingerprint,
@@ -85,7 +87,9 @@ class SponsorBlockBytecodePatch : BytecodePatch(
/*
Seekbar drawing
*/
- val seekbarSignatureResult = CreateVideoPlayerSeekbarFingerprint.result!!
+ val seekbarSignatureResult = SeekbarFingerprint.result!!.let {
+ SeekbarOnDrawFingerprint.apply { resolve(context, it.mutableClass) }
+ }.result!!
val seekbarMethod = seekbarSignatureResult.mutableMethod
val seekbarMethodInstructions = seekbarMethod.implementation!!.instructions
@@ -96,7 +100,7 @@ class SponsorBlockBytecodePatch : BytecodePatch(
if (instruction.opcode != Opcode.MOVE_OBJECT_FROM16) continue
seekbarMethod.addInstruction(
index + 1,
- "invoke-static {v0}, $INTEGRATIONS_PLAYER_CONTROLLER_CLASS_DESCRIPTOR->setSponsorBarRect(Ljava/lang/Object;)V"
+ "invoke-static/range {p0 .. p0}, $INTEGRATIONS_PLAYER_CONTROLLER_CLASS_DESCRIPTOR->setSponsorBarRect(Ljava/lang/Object;)V"
)
break
}
@@ -120,10 +124,10 @@ class SponsorBlockBytecodePatch : BytecodePatch(
/*
Set rectangle absolute left and right positions
*/
- val drawRectangleInstructions = seekbarMethodInstructions.filter {
- it is ReferenceInstruction && (it.reference as? MethodReference)?.name == "drawRect" && it is FiveRegisterInstruction
- }.map { // TODO: improve code
- seekbarMethodInstructions.indexOf(it) to (it as FiveRegisterInstruction).registerD
+ val drawRectangleInstructions = seekbarMethodInstructions.withIndex().filter { (_, instruction) ->
+ instruction is ReferenceInstruction && (instruction.reference as? MethodReference)?.name == "drawRect"
+ }.map { (index, instruction) -> // TODO: improve code
+ index to (instruction as FiveRegisterInstruction).registerD
}
val (indexRight, rectangleRightRegister) = drawRectangleInstructions[0]
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/DrawActionBarFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/DrawActionBarFingerprint.kt
new file mode 100644
index 0000000000..5ea1ffa3f8
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/DrawActionBarFingerprint.kt
@@ -0,0 +1,27 @@
+package app.revanced.patches.youtube.layout.widesearchbar.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+
+object DrawActionBarFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PRIVATE or AccessFlags.FINAL,
+ listOf("I", "I"),
+ listOf(
+ Opcode.INVOKE_STATIC,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.MOVE_RESULT_OBJECT,
+ Opcode.SGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.IGET_OBJECT,
+ Opcode.CONST,
+ Opcode.INVOKE_VIRTUAL,
+ Opcode.IGET_OBJECT,
+ Opcode.INVOKE_STATIC,
+ ),
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckFingerprint.kt
deleted file mode 100644
index 146bf2388b..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckFingerprint.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package app.revanced.patches.youtube.layout.widesearchbar.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-
-object IsInOfflineModeCheckFingerprint : MethodFingerprint(
- "L",
- strings = listOf("bundle_is_in_offline_mode")
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckResultFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckResultFingerprint.kt
deleted file mode 100644
index 37553c83b9..0000000000
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/fingerprints/IsInOfflineModeCheckResultFingerprint.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package app.revanced.patches.youtube.layout.widesearchbar.fingerprints
-
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import org.jf.dexlib2.Opcode
-
-object IsInOfflineModeCheckResultFingerprint : MethodFingerprint(
- "L",
- parameters = listOf("L", "L", "L", "L", "L"),
- opcodes = listOf(
- Opcode.INVOKE_STATIC,
- Opcode.MOVE_RESULT,
- Opcode.IF_EQZ,
- Opcode.NEW_INSTANCE,
- Opcode.MOVE_OBJECT,
- Opcode.MOVE_OBJECT,
- Opcode.MOVE_OBJECT,
- ),
-)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/patch/WideSearchbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/patch/WideSearchbarPatch.kt
index 95ae730467..50263ba000 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/patch/WideSearchbarPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/widesearchbar/patch/WideSearchbarPatch.kt
@@ -8,7 +8,6 @@ import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
-import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
@@ -18,8 +17,7 @@ import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.layout.widesearchbar.annotations.WideSearchbarCompatibility
-import app.revanced.patches.youtube.layout.widesearchbar.fingerprints.IsInOfflineModeCheckFingerprint
-import app.revanced.patches.youtube.layout.widesearchbar.fingerprints.IsInOfflineModeCheckResultFingerprint
+import app.revanced.patches.youtube.layout.widesearchbar.fingerprints.DrawActionBarFingerprint
import app.revanced.patches.youtube.layout.widesearchbar.fingerprints.SetWordmarkHeaderFingerprint
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@@ -32,7 +30,7 @@ import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
@Version("0.0.1")
class WideSearchbarPatch : BytecodePatch(
listOf(
- SetWordmarkHeaderFingerprint, IsInOfflineModeCheckFingerprint
+ SetWordmarkHeaderFingerprint, DrawActionBarFingerprint
)
) {
private companion object {
@@ -75,16 +73,12 @@ class WideSearchbarPatch : BytecodePatch(
)
)
- // resolve fingerprints
- IsInOfflineModeCheckFingerprint.result?.let {
- if (!IsInOfflineModeCheckResultFingerprint.resolve(context, it.classDef))
- return IsInOfflineModeCheckResultFingerprint.toErrorResult()
- } ?: return IsInOfflineModeCheckFingerprint.toErrorResult()
+ val result = DrawActionBarFingerprint.result ?: return DrawActionBarFingerprint.toErrorResult()
// patch methods
mapOf(
SetWordmarkHeaderFingerprint to 1,
- IsInOfflineModeCheckResultFingerprint to 0
+ DrawActionBarFingerprint to result.scanResult.patternScanResult!!.endIndex
).forEach { (fingerprint, callIndex) ->
context.walkMutable(callIndex, fingerprint).injectSearchBarHook()
}
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
index caa22afdcb..9ea24e4332 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/litho/filter/patch/LithoFilterPatch.kt
@@ -19,6 +19,7 @@ import app.revanced.patches.youtube.misc.litho.filter.fingerprints.EmptyComponen
import org.jf.dexlib2.iface.instruction.Instruction
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
import org.jf.dexlib2.iface.instruction.ReferenceInstruction
+import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
import org.jf.dexlib2.iface.reference.FieldReference
import org.jf.dexlib2.iface.reference.MethodReference
@@ -44,14 +45,16 @@ class LithoFilterPatch : BytecodePatch(
val builderMethodDescriptor = instruction(builderMethodIndex).toDescriptor()
val emptyComponentFieldDescriptor = instruction(emptyComponentFieldIndex).toDescriptor()
+ val stringBuilderRegister = (instruction(insertHookIndex - 1) as TwoRegisterInstruction).registerA
+
addInstructions(
insertHookIndex, // right after setting the component.pathBuilder field,
"""
- invoke-static {v5, v2}, Lapp/revanced/integrations/patches/LithoFilterPatch;->filter(Ljava/lang/StringBuilder;Ljava/lang/String;)Z
+ invoke-static {v$stringBuilderRegister, v0}, Lapp/revanced/integrations/patches/LithoFilterPatch;->filter(Ljava/lang/StringBuilder;Ljava/lang/String;)Z
move-result v$clobberedRegister
if-eqz v$clobberedRegister, :not_an_ad
- move-object/from16 v2, p1
- invoke-static {v2}, $builderMethodDescriptor
+ move-object/from16 v0, p1
+ invoke-static {v0}, $builderMethodDescriptor
move-result-object v0
iget-object v0, v0, $emptyComponentFieldDescriptor
return-object v0
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeConstructorFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeConstructorFingerprint.kt
new file mode 100644
index 0000000000..599314a4f8
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeConstructorFingerprint.kt
@@ -0,0 +1,12 @@
+package app.revanced.patches.youtube.misc.settings.bytecode.fingerprints
+
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import org.jf.dexlib2.AccessFlags
+
+object ThemeConstructorFingerprint : MethodFingerprint(
+ "L",
+ AccessFlags.PUBLIC or AccessFlags.STATIC,
+ listOf("L"),
+ strings = listOf("settings.SettingsActivity", ":android:show_fragment", "settings.GeneralPrefsFragment")
+)
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeSetterAppFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeSetterAppFingerprint.kt
index b999d4a0ed..9fc0065e78 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeSetterAppFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/fingerprints/ThemeSetterAppFingerprint.kt
@@ -6,18 +6,7 @@ import org.jf.dexlib2.AccessFlags
import org.jf.dexlib2.Opcode
object ThemeSetterAppFingerprint : MethodFingerprint(
- "L", AccessFlags.PUBLIC or AccessFlags.STATIC, listOf("L", "L", "L"), listOf(
- Opcode.INVOKE_VIRTUAL,
- Opcode.MOVE_RESULT,
- Opcode.IF_EQZ,
- Opcode.INVOKE_VIRTUAL,
- Opcode.MOVE_RESULT,
- Opcode.IF_EQZ,
- Opcode.NEW_INSTANCE,
- Opcode.INVOKE_INTERFACE,
- Opcode.MOVE_RESULT_OBJECT,
- Opcode.SGET_OBJECT,
- Opcode.IF_NE,
+ "L", AccessFlags.PUBLIC or AccessFlags.STATIC, opcodes = listOf(
Opcode.CONST, //target reference
Opcode.GOTO,
Opcode.CONST, //target reference
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
index 9cac0592d2..2c1ee88bad 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/settings/bytecode/patch/SettingsPatch.kt
@@ -1,11 +1,13 @@
package app.revanced.patches.youtube.misc.settings.bytecode.patch
+import app.revanced.extensions.toErrorResult
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.addInstruction
import app.revanced.patcher.extensions.addInstructions
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
@@ -16,6 +18,7 @@ import app.revanced.patches.shared.settings.util.AbstractPreferenceScreen
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.annotations.SettingsCompatibility
import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.LicenseActivityFingerprint
+import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.ThemeConstructorFingerprint
import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.ThemeSetterAppFingerprint
import app.revanced.patches.youtube.misc.settings.bytecode.fingerprints.ThemeSetterSystemFingerprint
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsResourcePatch
@@ -33,7 +36,7 @@ import org.jf.dexlib2.util.MethodUtil
@SettingsCompatibility
@Version("0.0.1")
class SettingsPatch : BytecodePatch(
- listOf(LicenseActivityFingerprint, ThemeSetterSystemFingerprint, ThemeSetterAppFingerprint)
+ listOf(LicenseActivityFingerprint, ThemeSetterSystemFingerprint, ThemeConstructorFingerprint)
) {
override fun execute(context: BytecodeContext): PatchResult {
fun buildInvokeInstructionsString(
@@ -44,48 +47,47 @@ class SettingsPatch : BytecodePatch(
) = "invoke-static {$registers}, $classDescriptor->$methodName($parameters)V"
// apply the current theme of the settings page
- with(ThemeSetterSystemFingerprint.result!!) {
- with(mutableMethod) {
- val call = buildInvokeInstructionsString()
-
+ ThemeSetterSystemFingerprint.result!!.let { result ->
+ val call = buildInvokeInstructionsString()
+ result.mutableMethod.apply {
addInstruction(
- scanResult.patternScanResult!!.startIndex,
- call
+ result.scanResult.patternScanResult!!.startIndex, call
)
-
- addInstruction(
- mutableMethod.implementation!!.instructions.size - 1,
- call
+ addInstructions(
+ implementation!!.instructions.size - 1, call
)
}
}
// set the theme based on the preference of the app
- with(ThemeSetterAppFingerprint.result!!) {
- with(mutableMethod) {
- fun buildInstructionsString(theme: Int) = """
+ with((ThemeConstructorFingerprint.result?.let {
+ ThemeSetterAppFingerprint.apply {
+ if (!resolve(context, it.classDef)) return ThemeSetterAppFingerprint.toErrorResult()
+ }
+ } ?: return ThemeConstructorFingerprint.toErrorResult()).result!!) {
+ fun buildInstructionsString(theme: Int) = """
const/4 v0, 0x$theme
${buildInvokeInstructionsString(parameters = "I")}
"""
+ val patternScanResult = scanResult.patternScanResult!!
+
+ mutableMethod.apply {
addInstructions(
- scanResult.patternScanResult!!.endIndex + 1,
- buildInstructionsString(1)
+ patternScanResult.endIndex + 1, buildInstructionsString(1)
)
addInstructions(
- scanResult.patternScanResult!!.endIndex - 7,
- buildInstructionsString(0)
+ patternScanResult.endIndex - 7, buildInstructionsString(0)
)
addInstructions(
- scanResult.patternScanResult!!.endIndex - 9,
- buildInstructionsString(1)
+ patternScanResult.endIndex - 9, buildInstructionsString(1)
)
addInstructions(
- mutableMethod.implementation!!.instructions.size - 2,
- buildInstructionsString(0)
+ implementation!!.instructions.size - 2, buildInstructionsString(0)
)
}
+
}
// set the theme based on the preference of the device
@@ -100,8 +102,7 @@ class SettingsPatch : BytecodePatch(
// initialize the settings
addInstructions(
- 1,
- """
+ 1, """
${buildSettingsActivityInvokeString()}
return-void
"""
@@ -134,8 +135,7 @@ class SettingsPatch : BytecodePatch(
fun addPreferenceScreen(preferenceScreen: app.revanced.patches.shared.settings.preference.impl.PreferenceScreen) =
SettingsResourcePatch.addPreferenceScreen(preferenceScreen)
- fun addPreference(preference: Preference) =
- SettingsResourcePatch.addPreference(preference)
+ fun addPreference(preference: Preference) = SettingsResourcePatch.addPreference(preference)
fun renameIntentsTargetPackage(newPackage: String) {
SettingsResourcePatch.overrideIntentsTargetPackage = newPackage
|
feat
|
bump patches compatibility to v17.49.37
|
8f156e4a1506c1f2a08a4887f4e0fd944874784b
|
2024-04-19 04:48:22
|
semantic-release-bot
|
chore(release): 4.7.0-dev.13 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb7e9ba248..85f5d0ea1b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.7.0-dev.13](https://github.com/ReVanced/revanced-patches/compare/v4.7.0-dev.12...v4.7.0-dev.13) (2024-04-18)
+
+
+### Bug Fixes
+
+* **YouTube Music - Remove upgrade button:** Fix compatibility with latest versions ([#3045](https://github.com/ReVanced/revanced-patches/issues/3045)) ([80de996](https://github.com/ReVanced/revanced-patches/commit/80de99666555694670529bbfe2e0be7a14d66555))
+
# [4.7.0-dev.12](https://github.com/ReVanced/revanced-patches/compare/v4.7.0-dev.11...v4.7.0-dev.12) (2024-04-18)
diff --git a/gradle.properties b/gradle.properties
index 53a594ec6a..b939a7e0c0 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.7.0-dev.12
+version = 4.7.0-dev.13
|
chore
|
4.7.0-dev.13 [skip ci]
|
0be90ded032421f81956b572946aa420d3190e85
|
2022-10-08 02:34:25
|
semantic-release-bot
|
chore(release): 2.81.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0fed029b91..a85d5670e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.81.1](https://github.com/revanced/revanced-patches/compare/v2.81.0...v2.81.1) (2022-10-07)
+
+
+### Bug Fixes
+
+* **video-ads:** block remaining video ads ([fbc83a2](https://github.com/revanced/revanced-patches/commit/fbc83a22d37012394311a87d27202b7cc86e047d))
+
# [2.81.0](https://github.com/revanced/revanced-patches/compare/v2.80.0...v2.81.0) (2022-10-06)
diff --git a/gradle.properties b/gradle.properties
index 56622ec63a..586103279d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.81.0
+version = 2.81.1
|
chore
|
2.81.1 [skip ci]
|
952b4fc4c9291e1a3e71437b503857763c973dd4
|
2025-01-24 01:45:23
|
LisoUseInAIKyrios
|
feat(YouTube - Theme): Add option to use custom seekbar accent color (#4337)
| false
|
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/EnableDebuggingPatch.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/EnableDebuggingPatch.java
index 333420f40f..f0e0e1f273 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/EnableDebuggingPatch.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/EnableDebuggingPatch.java
@@ -9,14 +9,23 @@
@SuppressWarnings("unused")
public final class EnableDebuggingPatch {
- private static final ConcurrentMap<Long, Boolean> featureFlags
- = new ConcurrentHashMap<>(300, 0.75f, 1);
+ /**
+ * Only log if debugging is enabled on startup.
+ * This prevents enabling debugging
+ * while the app is running then failing to restart
+ * resulting in an incomplete log.
+ */
+ private static final boolean LOG_FEATURE_FLAGS = BaseSettings.DEBUG.get();
+
+ private static final ConcurrentMap<Long, Boolean> featureFlags = LOG_FEATURE_FLAGS
+ ? new ConcurrentHashMap<>(800, 0.5f, 1)
+ : null;
/**
* Injection point.
*/
public static boolean isBooleanFeatureFlagEnabled(boolean value, long flag) {
- if (value && BaseSettings.DEBUG.get()) {
+ if (LOG_FEATURE_FLAGS && value) {
if (featureFlags.putIfAbsent(flag, true) == null) {
Logger.printDebug(() -> "boolean feature is enabled: " + flag);
}
@@ -29,7 +38,7 @@ public static boolean isBooleanFeatureFlagEnabled(boolean value, long flag) {
* Injection point.
*/
public static double isDoubleFeatureFlagEnabled(double value, long flag, double defaultValue) {
- if (defaultValue != value && BaseSettings.DEBUG.get()) {
+ if (LOG_FEATURE_FLAGS && defaultValue != value) {
if (featureFlags.putIfAbsent(flag, true) == null) {
// Align the log outputs to make post processing easier.
Logger.printDebug(() -> " double feature is enabled: " + flag
@@ -44,7 +53,7 @@ public static double isDoubleFeatureFlagEnabled(double value, long flag, double
* Injection point.
*/
public static long isLongFeatureFlagEnabled(long value, long flag, long defaultValue) {
- if (defaultValue != value && BaseSettings.DEBUG.get()) {
+ if (LOG_FEATURE_FLAGS && defaultValue != value) {
if (featureFlags.putIfAbsent(flag, true) == null) {
Logger.printDebug(() -> " long feature is enabled: " + flag
+ " value: " + value + (defaultValue == 0 ? "" : " default: " + defaultValue));
@@ -58,7 +67,7 @@ public static long isLongFeatureFlagEnabled(long value, long flag, long defaultV
* Injection point.
*/
public static String isStringFeatureFlagEnabled(String value, long flag, String defaultValue) {
- if (BaseSettings.DEBUG.get() && !defaultValue.equals(value)) {
+ if (LOG_FEATURE_FLAGS && !defaultValue.equals(value)) {
if (featureFlags.putIfAbsent(flag, true) == null) {
Logger.printDebug(() -> " string feature is enabled: " + flag
+ " value: " + value + (defaultValue.isEmpty() ? "" : " default: " + defaultValue));
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/theme/SeekbarColorPatch.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/theme/SeekbarColorPatch.java
index 17e6b258e7..b7ceb2b986 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/theme/SeekbarColorPatch.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/theme/SeekbarColorPatch.java
@@ -36,6 +36,11 @@ public final class SeekbarColorPatch {
*/
private static final float[] FEED_ORIGINAL_SEEKBAR_GRADIENT_POSITIONS = { 0.8f, 1.0f };
+ /**
+ * Empty seekbar gradient, if hide seekbar in feed is enabled.
+ */
+ private static final int[] HIDDEN_SEEKBAR_GRADIENT_COLORS = { 0x0, 0x0 };
+
/**
* Default YouTube seekbar color brightness.
*/
@@ -43,10 +48,10 @@ public final class SeekbarColorPatch {
/**
* If {@link Settings#SEEKBAR_CUSTOM_COLOR} is enabled,
- * this is the color value of {@link Settings#SEEKBAR_CUSTOM_COLOR_VALUE}.
+ * this is the color value of {@link Settings#SEEKBAR_CUSTOM_COLOR_PRIMARY}.
* Otherwise this is {@link #ORIGINAL_SEEKBAR_COLOR}.
*/
- private static int seekbarColor = ORIGINAL_SEEKBAR_COLOR;
+ private static int customSeekbarColor = ORIGINAL_SEEKBAR_COLOR;
/**
* Custom seekbar hue, saturation, and brightness values.
@@ -56,7 +61,7 @@ public final class SeekbarColorPatch {
/**
* Custom seekbar color, used for linear gradient replacements.
*/
- private static final int[] customSeekbarColorInt = new int[2];
+ private static final int[] customSeekbarColorGradient = new int[2];
static {
float[] hsv = new float[3];
@@ -65,24 +70,27 @@ public final class SeekbarColorPatch {
if (SEEKBAR_CUSTOM_COLOR_ENABLED) {
loadCustomSeekbarColor();
-
- Arrays.fill(customSeekbarColorInt, seekbarColor);
}
}
private static void loadCustomSeekbarColor() {
try {
- seekbarColor = Color.parseColor(Settings.SEEKBAR_CUSTOM_COLOR_VALUE.get());
- Color.colorToHSV(seekbarColor, customSeekbarColorHSV);
+ customSeekbarColor = Color.parseColor(Settings.SEEKBAR_CUSTOM_COLOR_PRIMARY.get());
+ Color.colorToHSV(customSeekbarColor, customSeekbarColorHSV);
+
+ customSeekbarColorGradient[0] = customSeekbarColor;
+ customSeekbarColorGradient[1] = Color.parseColor(Settings.SEEKBAR_CUSTOM_COLOR_ACCENT.get());
} catch (Exception ex) {
Utils.showToastShort(str("revanced_seekbar_custom_color_invalid"));
- Settings.SEEKBAR_CUSTOM_COLOR_VALUE.resetToDefault();
+ Settings.SEEKBAR_CUSTOM_COLOR_PRIMARY.resetToDefault();
+ Settings.SEEKBAR_CUSTOM_COLOR_ACCENT.resetToDefault();
+
loadCustomSeekbarColor();
}
}
public static int getSeekbarColor() {
- return seekbarColor;
+ return customSeekbarColor;
}
/**
@@ -126,7 +134,7 @@ public static void setSplashAnimationDrawableTheme(AnimatedVectorDrawable vector
// Even if the seekbar color xml value is changed to a completely different color (such as green),
// a color filter still cannot be selectively applied when the drawable has more than 1 color.
try {
- String seekbarStyle = get9BitStyleIdentifier(seekbarColor);
+ String seekbarStyle = get9BitStyleIdentifier(customSeekbarColor);
Logger.printDebug(() -> "Using splash seekbar style: " + seekbarStyle);
final int styleIdentifierDefault = Utils.getResourceIdentifier(
@@ -153,15 +161,6 @@ public static boolean showWatchHistoryProgressDrawable(boolean original) {
return !HIDE_SEEKBAR_THUMBNAIL_ENABLED && original;
}
- /**
- * Injection point.
- */
- public static int getSeekbarScrubHandleColor(int colorValue) {
- return SEEKBAR_CUSTOM_COLOR_ENABLED
- ? seekbarColor
- : colorValue;
- }
-
/**
* Injection point.
*
@@ -173,21 +172,13 @@ public static int getSeekbarScrubHandleColor(int colorValue) {
public static int getLithoColor(int colorValue) {
if (colorValue == ORIGINAL_SEEKBAR_COLOR) {
if (HIDE_SEEKBAR_THUMBNAIL_ENABLED) {
- return 0x00000000;
+ return 0x0;
}
- return getSeekbarColorValue(ORIGINAL_SEEKBAR_COLOR);
+ return customSeekbarColor;
}
- return colorValue;
- }
- /**
- * Injection point.
- */
- public static int[] getLinearGradient(int[] original) {
- return SEEKBAR_CUSTOM_COLOR_ENABLED
- ? customSeekbarColorInt
- : original;
+ return colorValue;
}
private static String colorArrayToHex(int[] colors) {
@@ -210,21 +201,31 @@ private static String colorArrayToHex(int[] colors) {
/**
* Injection point.
*/
- public static void setLinearGradient(int[] colors, float[] positions) {
+ public static int[] getPlayerLinearGradient(int[] original) {
+ return SEEKBAR_CUSTOM_COLOR_ENABLED
+ ? customSeekbarColorGradient
+ : original;
+ }
+
+ /**
+ * Injection point.
+ */
+ public static int[] getLithoLinearGradient(int[] colors, float[] positions) {
if (SEEKBAR_CUSTOM_COLOR_ENABLED || HIDE_SEEKBAR_THUMBNAIL_ENABLED) {
// Most litho usage of linear gradients is hooked here,
// so must only change if the values are those for the seekbar.
if ((Arrays.equals(FEED_ORIGINAL_SEEKBAR_GRADIENT_COLORS, colors)
&& Arrays.equals(FEED_ORIGINAL_SEEKBAR_GRADIENT_POSITIONS, positions))) {
- Arrays.fill(colors, HIDE_SEEKBAR_THUMBNAIL_ENABLED
- ? 0x00000000
- : seekbarColor);
- return;
+ return HIDE_SEEKBAR_THUMBNAIL_ENABLED
+ ? HIDDEN_SEEKBAR_GRADIENT_COLORS
+ : customSeekbarColorGradient;
}
Logger.printDebug(() -> "Ignoring gradient colors: " + colorArrayToHex(colors)
+ " positions: " + Arrays.toString(positions));
}
+
+ return colors;
}
/**
@@ -238,7 +239,7 @@ public static int getVideoPlayerSeekbarClickedColor(int colorValue) {
}
return colorValue == ORIGINAL_SEEKBAR_COLOR
- ? getSeekbarColorValue(ORIGINAL_SEEKBAR_COLOR)
+ ? customSeekbarColor
: colorValue;
}
@@ -248,11 +249,9 @@ public static int getVideoPlayerSeekbarClickedColor(int colorValue) {
* Overrides color used for the video player seekbar.
*/
public static int getVideoPlayerSeekbarColor(int originalColor) {
- if (!SEEKBAR_CUSTOM_COLOR_ENABLED) {
- return originalColor;
- }
-
- return getSeekbarColorValue(originalColor);
+ return SEEKBAR_CUSTOM_COLOR_ENABLED
+ ? getSeekbarColorValue(originalColor)
+ : originalColor;
}
/**
@@ -261,10 +260,6 @@ public static int getVideoPlayerSeekbarColor(int originalColor) {
*/
private static int getSeekbarColorValue(int originalColor) {
try {
- if (!SEEKBAR_CUSTOM_COLOR_ENABLED || originalColor == seekbarColor) {
- return originalColor; // nothing to do
- }
-
final int alphaDifference = Color.alpha(originalColor) - Color.alpha(ORIGINAL_SEEKBAR_COLOR);
// The seekbar uses the same color but different brightness for different situations.
@@ -277,7 +272,7 @@ private static int getSeekbarColorValue(int originalColor) {
hsv[1] = customSeekbarColorHSV[1];
hsv[2] = clamp(customSeekbarColorHSV[2] + brightnessDifference, 0, 1);
- final int replacementAlpha = clamp(Color.alpha(seekbarColor) + alphaDifference, 0, 255);
+ final int replacementAlpha = clamp(Color.alpha(customSeekbarColor) + alphaDifference, 0, 255);
final int replacementColor = Color.HSVToColor(replacementAlpha, hsv);
Logger.printDebug(() -> String.format("Original color: #%08X replacement color: #%08X",
originalColor, replacementColor));
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
index 6d76255c51..59b803d985 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
@@ -27,6 +27,8 @@
import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.SKIP_AUTOMATICALLY;
import static app.revanced.extension.youtube.sponsorblock.objects.CategoryBehaviour.SKIP_AUTOMATICALLY_ONCE;
+import android.graphics.Color;
+
import app.revanced.extension.shared.Logger;
import app.revanced.extension.shared.settings.BaseSettings;
import app.revanced.extension.shared.settings.BooleanSetting;
@@ -267,18 +269,19 @@ public class Settings extends BaseSettings {
public static final BooleanSetting SHORTS_AUTOPLAY_BACKGROUND = new BooleanSetting("revanced_shorts_autoplay_background", TRUE);
// Seekbar
-
- public static final BooleanSetting DISABLE_PRECISE_SEEKING_GESTURE = new BooleanSetting("revanced_disable_precise_seeking_gesture", TRUE);
+ public static final BooleanSetting DISABLE_PRECISE_SEEKING_GESTURE = new BooleanSetting("revanced_disable_precise_seeking_gesture", FALSE);
public static final BooleanSetting HIDE_SEEKBAR = new BooleanSetting("revanced_hide_seekbar", FALSE, true);
public static final BooleanSetting HIDE_SEEKBAR_THUMBNAIL = new BooleanSetting("revanced_hide_seekbar_thumbnail", FALSE, true);
public static final BooleanSetting HIDE_TIMESTAMP = new BooleanSetting("revanced_hide_timestamp", FALSE);
public static final BooleanSetting RESTORE_OLD_SEEKBAR_THUMBNAILS = new BooleanSetting("revanced_restore_old_seekbar_thumbnails", TRUE);
- public static final BooleanSetting SEEKBAR_CUSTOM_COLOR = new BooleanSetting("revanced_seekbar_custom_color", FALSE, true);
- public static final BooleanSetting SEEKBAR_TAPPING = new BooleanSetting("revanced_seekbar_tapping", TRUE);
+ public static final BooleanSetting SEEKBAR_TAPPING = new BooleanSetting("revanced_seekbar_tapping", FALSE);
public static final BooleanSetting SEEKBAR_THUMBNAILS_HIGH_QUALITY = new BooleanSetting("revanced_seekbar_thumbnails_high_quality", FALSE, true,
"revanced_seekbar_thumbnails_high_quality_dialog_message", new SeekbarThumbnailsHighQualityAvailability());
public static final BooleanSetting SLIDE_TO_SEEK = new BooleanSetting("revanced_slide_to_seek", FALSE, true);
- public static final StringSetting SEEKBAR_CUSTOM_COLOR_VALUE = new StringSetting("revanced_seekbar_custom_color_value", "#FF0033", true, parent(SEEKBAR_CUSTOM_COLOR));
+ public static final BooleanSetting SEEKBAR_CUSTOM_COLOR = new BooleanSetting("revanced_seekbar_custom_color", FALSE, true);
+ private static final StringSetting DEPRECATED_SEEKBAR_CUSTOM_COLOR_PRIMARY = new StringSetting("revanced_seekbar_custom_color_value", "#FF0033");
+ public static final StringSetting SEEKBAR_CUSTOM_COLOR_PRIMARY = new StringSetting("revanced_seekbar_custom_color_primary", "#FF0033", true, parent(SEEKBAR_CUSTOM_COLOR));
+ public static final StringSetting SEEKBAR_CUSTOM_COLOR_ACCENT = new StringSetting("revanced_seekbar_custom_color_accent", "#FF2791", true, parent(SEEKBAR_CUSTOM_COLOR));
// Misc
public static final BooleanSetting ANNOUNCEMENTS = new BooleanSetting("revanced_announcements", TRUE);
@@ -406,6 +409,30 @@ public class Settings extends BaseSettings {
MINIPLAYER_TYPE.save(MINIMAL);
}
+ // Migrate old single color seekbar with a slightly brighter accent color based on the primary.
+ // Eventually delete this logic.
+ if (!DEPRECATED_SEEKBAR_CUSTOM_COLOR_PRIMARY.isSetToDefault()) {
+ try {
+ String oldPrimaryColorString = DEPRECATED_SEEKBAR_CUSTOM_COLOR_PRIMARY.get();
+ final int oldPrimaryColor = Color.parseColor(oldPrimaryColorString);
+ SEEKBAR_CUSTOM_COLOR_PRIMARY.save(oldPrimaryColorString);
+
+ final float brightnessScale = 1.3f;
+ final int accentColor = Color.argb(
+ 0, // Save without alpha channel.
+ Math.min(255, (int) (brightnessScale * Color.red(oldPrimaryColor))),
+ Math.min(255, (int) (brightnessScale * Color.green(oldPrimaryColor))),
+ Math.min(255, (int) (brightnessScale * Color.blue(oldPrimaryColor)))
+ );
+
+ SEEKBAR_CUSTOM_COLOR_ACCENT.save(String.format("#%06X", accentColor));
+ } catch (Exception ex) {
+ Logger.printException(() -> "Could not parse old seekbar color", ex);
+ }
+
+ DEPRECATED_SEEKBAR_CUSTOM_COLOR_PRIMARY.resetToDefault();
+ }
+
// endregion
// region SB import/export callbacks
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/SeekbarColorPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/SeekbarColorPatch.kt
index 5ccbdad845..93e8ff19ca 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/SeekbarColorPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/seekbar/SeekbarColorPatch.kt
@@ -200,25 +200,27 @@ val seekbarColorPatch = bytecodePatch(
)
execute {
- fun MutableMethod.addColorChangeInstructions(resourceId: Long) {
- val registerIndex = indexOfFirstLiteralInstructionOrThrow(resourceId) + 2
- val colorRegister = getInstruction<OneRegisterInstruction>(registerIndex).registerA
+ fun MutableMethod.addColorChangeInstructions(resourceId: Long, methodName: String) {
+ val index = indexOfFirstLiteralInstructionOrThrow(resourceId)
+ val insertIndex = indexOfFirstInstructionOrThrow(index, Opcode.MOVE_RESULT)
+ val register = getInstruction<OneRegisterInstruction>(insertIndex).registerA
+
addInstructions(
- registerIndex + 1,
+ insertIndex + 1,
+ """
+ invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->$methodName(I)I
+ move-result v$register
"""
- invoke-static { v$colorRegister }, $EXTENSION_CLASS_DESCRIPTOR->getVideoPlayerSeekbarColor(I)I
- move-result v$colorRegister
- """,
)
}
playerSeekbarColorFingerprint.method.apply {
- addColorChangeInstructions(inlineTimeBarColorizedBarPlayedColorDarkId)
- addColorChangeInstructions(inlineTimeBarPlayedNotHighlightedColorId)
+ addColorChangeInstructions(inlineTimeBarColorizedBarPlayedColorDarkId, "getVideoPlayerSeekbarColor")
+ addColorChangeInstructions(inlineTimeBarPlayedNotHighlightedColorId, "getVideoPlayerSeekbarColor")
}
shortsSeekbarColorFingerprint.method.apply {
- addColorChangeInstructions(reelTimeBarPlayedColorId)
+ addColorChangeInstructions(reelTimeBarPlayedColorId, "getVideoPlayerSeekbarColor")
}
setSeekbarClickedColorFingerprint.originalMethod.let {
@@ -245,17 +247,7 @@ val seekbarColorPatch = bytecodePatch(
// 19.25+ changes
playerSeekbarHandleColorFingerprint.method.apply {
- val index = indexOfFirstLiteralInstructionOrThrow(ytStaticBrandRedId)
- val insertIndex = indexOfFirstInstructionOrThrow(index, Opcode.MOVE_RESULT)
- val register = getInstruction<OneRegisterInstruction>(insertIndex).registerA
-
- addInstructions(
- insertIndex + 1,
- """
- invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->getSeekbarScrubHandleColor(I)I
- move-result v$register
- """
- )
+ addColorChangeInstructions(ytStaticBrandRedId, "getVideoPlayerSeekbarColor")
}
// If hiding feed seekbar thumbnails, then turn off the cairo gradient
@@ -273,16 +265,19 @@ val seekbarColorPatch = bytecodePatch(
addInstructions(
index + 1,
"""
- invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->showWatchHistoryProgressDrawable(Z)Z
- move-result v$register
- """
+ invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->showWatchHistoryProgressDrawable(Z)Z
+ move-result v$register
+ """
)
}
}
- lithoLinearGradientFingerprint.method.addInstruction(
+ lithoLinearGradientFingerprint.method.addInstructions(
0,
- "invoke-static/range { p4 .. p5 }, $EXTENSION_CLASS_DESCRIPTOR->setLinearGradient([I[F)V"
+ """
+ invoke-static/range { p4 .. p5 }, $EXTENSION_CLASS_DESCRIPTOR->getLithoLinearGradient([I[F)[I
+ move-result-object p4
+ """
)
val playerFingerprint =
@@ -302,7 +297,7 @@ val seekbarColorPatch = bytecodePatch(
addInstructions(
index + 1,
"""
- invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->getLinearGradient([I)[I
+ invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->getPlayerLinearGradient([I)[I
move-result-object v$register
"""
)
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt
index 92d3a3fd88..285909ce46 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt
@@ -13,6 +13,8 @@ import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
import app.revanced.patches.shared.misc.settings.preference.TextPreference
import app.revanced.patches.youtube.layout.seekbar.seekbarColorPatch
import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch
+import app.revanced.patches.youtube.misc.playservice.is_19_25_or_greater
+import app.revanced.patches.youtube.misc.playservice.versionCheckPatch
import app.revanced.patches.youtube.misc.settings.PreferenceScreen
import app.revanced.patches.youtube.misc.settings.settingsPatch
import app.revanced.util.forEachChildElement
@@ -71,6 +73,7 @@ val themePatch = bytecodePatch(
dependsOn(
lithoColorHookPatch,
seekbarColorPatch,
+ versionCheckPatch,
resourcePatch {
dependsOn(
settingsPatch,
@@ -83,9 +86,15 @@ val themePatch = bytecodePatch(
PreferenceScreen.SEEKBAR.addPreferences(
SwitchPreference("revanced_seekbar_custom_color"),
- TextPreference("revanced_seekbar_custom_color_value", inputType = InputType.TEXT_CAP_CHARACTERS),
+ TextPreference("revanced_seekbar_custom_color_primary", inputType = InputType.TEXT_CAP_CHARACTERS),
)
+ if (is_19_25_or_greater) {
+ PreferenceScreen.SEEKBAR.addPreferences(
+ TextPreference("revanced_seekbar_custom_color_accent", inputType = InputType.TEXT_CAP_CHARACTERS),
+ )
+ }
+
// Edit theme colors via resources.
document("res/values/colors.xml").use { document ->
diff --git a/patches/src/main/resources/addresources/values/strings.xml b/patches/src/main/resources/addresources/values/strings.xml
index ffceca0ad6..7e7a6f2dba 100644
--- a/patches/src/main/resources/addresources/values/strings.xml
+++ b/patches/src/main/resources/addresources/values/strings.xml
@@ -1223,8 +1223,10 @@ Swipe to expand or close"</string>
<string name="revanced_seekbar_custom_color_title">Enable custom seekbar color</string>
<string name="revanced_seekbar_custom_color_summary_on">Custom seekbar color is shown</string>
<string name="revanced_seekbar_custom_color_summary_off">Original seekbar color is shown</string>
- <string name="revanced_seekbar_custom_color_value_title">Custom seekbar color</string>
- <string name="revanced_seekbar_custom_color_value_summary">The color of the seekbar</string>
+ <string name="revanced_seekbar_custom_color_primary_title">Custom seekbar color</string>
+ <string name="revanced_seekbar_custom_color_primary_summary">The color of the seekbar</string>
+ <string name="revanced_seekbar_custom_color_accent_title">Custom seekbar accent color</string>
+ <string name="revanced_seekbar_custom_color_accent_summary">The accent color of the seekbar</string>
<string name="revanced_seekbar_custom_color_invalid">Invalid seekbar color value</string>
</patch>
<patch id="layout.thumbnails.bypassImageRegionRestrictionsPatch">
|
feat
|
Add option to use custom seekbar accent color (#4337)
|
69ea6f3bc2b5f419320f17c150489dcb9eed76ce
|
2024-06-28 02:21:13
|
ReVanced Bot
|
feat: Add translations (#2963)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt
index 0d0ed45f94..09707c727b 100644
--- a/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt
@@ -13,7 +13,6 @@ import app.revanced.util.resource.BaseResource
import app.revanced.util.resource.StringResource
import org.w3c.dom.Node
import java.io.Closeable
-import java.util.*
/**
* An identifier of an app. For example, `youtube`.
@@ -55,6 +54,95 @@ object AddResourcesPatch : ResourcePatch(), MutableMap<Value, MutableSet<BaseRes
*/
private lateinit var resources: Map<Value, Resources>
+ /**
+ * Map of Crowdin locales to Android resource locale names.
+ *
+ * Fixme: Instead this patch should detect what locale regions are present in both patches and the target app,
+ * and automatically merge into the appropriate existing target file.
+ * So if a target app has only 'es', then the Crowdin file of 'es-rES' should merge into that.
+ * But if a target app has specific regions (such as 'pt-rBR'),
+ * then the Crowdin region specific file should merged into that.
+ */
+ private val locales = mapOf(
+ "af-rZA" to "af",
+ "am-rET" to "am",
+ "ar-rSA" to "ar",
+ "as-rIN" to "as",
+ "az-rAZ" to "az",
+ "be-rBY" to "be",
+ "bg-rBG" to "bg",
+ "bn-rBD" to "bn",
+ "bs-rBA" to "bs",
+ "ca-rES" to "ca",
+ "cs-rCZ" to "cs",
+ "da-rDK" to "da",
+ "de-rDE" to "de",
+ "el-rGR" to "el",
+ "es-rES" to "es",
+ "et-rEE" to "et",
+ "eu-rES" to "eu",
+ "fa-rIR" to "fa",
+ "fi-rFI" to "fi",
+ "tl-rPH" to "tl",
+ "fr-rFR" to "fr",
+ "gl-rES" to "gl",
+ "gu-rIN" to "gu",
+ "hi-rIN" to "hi",
+ "hr-rHR" to "hr",
+ "hu-rHU" to "hu",
+ "hy-rAM" to "hy",
+ "in-rID" to "in",
+ "is-rIS" to "is",
+ "it-rIT" to "it",
+ "iw-rIL" to "iw",
+ "ja-rJP" to "ja",
+ "ka-rGE" to "ka",
+ "kk-rKZ" to "kk",
+ "km-rKH" to "km",
+ "kn-rIN" to "kn",
+ "ko-rKR" to "ko",
+ "ky-rKG" to "ky",
+ "lo-rLA" to "lo",
+ "lt-rLT" to "lt",
+ "lv-rLV" to "lv",
+ "mk-rMK" to "mk",
+ "ml-rIN" to "ml",
+ "mn-rMN" to "mn",
+ "mr-rIN" to "mr",
+ "ms-rMY" to "ms",
+ "my-rMM" to "my",
+ "nb-rNO" to "nb",
+ "ne-rIN" to "ne",
+ "nl-rNL" to "nl",
+ "or-rIN" to "or",
+ "pa-rIN" to "pa",
+ "pl-rPL" to "pl",
+ "pt-rBR" to "pt-rBR",
+ "pt-rPT" to "pt-rPT",
+ "ro-rRO" to "ro",
+ "ru-rRU" to "ru",
+ "si-rLK" to "si",
+ "sk-rSK" to "sk",
+ "sl-rSI" to "sl",
+ "sq-rAL" to "sq",
+ "sr-rSP" to "sr",
+ "sv-rSE" to "sv",
+ "sw-rKE" to "sw",
+ "ta-rIN" to "ta",
+ "te-rIN" to "te",
+ "th-rTH" to "th",
+ "tl-rPH" to "tl",
+ "tr-rTR" to "tr",
+ "uk-rUA" to "uk",
+ "ur-rIN" to "ur",
+ "uz-rUZ" to "uz",
+ "vi-rVN" to "vi",
+ "zh-rCN" to "zh-rCN",
+ "zh-rHK" to "zh-rHK",
+ "zh-rTW" to "zh-rTW",
+ "zu-rZA" to "zu",
+ )
+
/*
The strategy of this patch is to stage resources present in `/resources/addresources`.
These resources are organized by their respective value and patch.
@@ -75,23 +163,25 @@ object AddResourcesPatch : ResourcePatch(), MutableMap<Value, MutableSet<BaseRes
/**
* Puts resources under `/resources/addresources/<value>/<resourceKind>.xml` into the map.
*
- * @param value The value of the resource. For example, `values` or `values-de`.
+ * @param sourceValue The source value of the resource. For example, `values` or `values-de-rDE`.
+ * @param destValue The destination value of the resource. For example, 'values' or 'values-de'.
* @param resourceKind The kind of the resource. For example, `strings` or `arrays`.
* @param transform A function that transforms the [Node]s from the XML files to a [BaseResource].
*/
fun addResources(
- value: Value,
+ sourceValue: Value,
+ destValue: Value = sourceValue,
resourceKind: String,
transform: (Node) -> BaseResource,
) {
inputStreamFromBundledResource(
"addresources",
- "$value/$resourceKind.xml",
+ "$sourceValue/$resourceKind.xml",
)?.let { stream ->
// Add the resources associated with the given value to the map,
// instead of overwriting it.
// This covers the example case such as adding strings and arrays of the same value.
- getOrPut(value, ::mutableMapOf).apply {
+ getOrPut(destValue, ::mutableMapOf).apply {
context.xmlEditor[stream].use { editor ->
val document = editor.file
@@ -121,13 +211,13 @@ object AddResourcesPatch : ResourcePatch(), MutableMap<Value, MutableSet<BaseRes
// Staged resources consumed by AddResourcesPatch#invoke(PatchClass)
// are later used in AddResourcesPatch#close.
try {
- val addStringResources = { value: Value ->
- addResources(value, "strings", StringResource::fromNode)
+ val addStringResources = { source: Value, dest: Value ->
+ addResources(source, dest, "strings", StringResource::fromNode)
}
- Locale.getISOLanguages().asSequence().map { "values-$it" }.forEach { addStringResources(it) }
- addStringResources("values")
+ locales.forEach { (source, dest) -> addStringResources("values-$source", "values-$dest") }
+ addStringResources("values", "values")
- addResources("values", "arrays", ArrayResource::fromNode)
+ addResources("values", "values", "arrays", ArrayResource::fromNode)
} catch (e: Exception) {
throw PatchException("Failed to read resources", e)
}
diff --git a/src/main/resources/addresources/values-af-rZA/strings.xml b/src/main/resources/addresources/values-af-rZA/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-af-rZA/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-am-rET/strings.xml b/src/main/resources/addresources/values-am-rET/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-am-rET/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ar-rSA/strings.xml b/src/main/resources/addresources/values-ar-rSA/strings.xml
new file mode 100644
index 0000000000..4b80224aba
--- /dev/null
+++ b/src/main/resources/addresources/values-ar-rSA/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">هل ترغب في المتابعة؟</string>
+ <string name="revanced_settings_reset">إعادة التعيين</string>
+ <string name="revanced_settings_restart_title">تحديث وإعادة تشغيل</string>
+ <string name="revanced_settings_restart">إعادة التشغيل</string>
+ <string name="revanced_settings_import">استيراد</string>
+ <string name="revanced_settings_import_copy">نسخ</string>
+ <string name="revanced_settings_import_reset">إعادة تعيين إعدادات ReVanced إلى الوضع الافتراضي</string>
+ <string name="revanced_settings_import_success">تم استيراد %d إعدادات</string>
+ <string name="revanced_settings_import_failure_parse">فشل الاستيراد: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">لم يتم تثبيت MicroG GmsCore . قم بتثبيته.</string>
+ <string name="gms_core_dialog_title">الإجراء مطلوب</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">لا يملك MicroG GmsCore الصلاحية للتشغيل في الخلفية.\n\nاتبع دليل \"لا تقتل تطبيقي\" للهاتف الخاص بك، وقم بتطبيق الإرشادات على تثبيت المايكروج.\n\nهذا مطلوب لكي يعمل التطبيق.</string>
+ <string name="gms_core_dialog_open_website_text">فتح الموقع</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">يجب تعطيل تحسينات بطارية MicroG GmsCore لمنع حدوث مشكلات.\n\nاضغط على زر المتابعة وقم بتعطيل تحسينات البطارية.</string>
+ <string name="gms_core_dialog_continue_text">متابعة</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">أنت تستخدم إصدار ReVanced Patches <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">ملاحظة</string>
+ <string name="revanced_settings_about_links_dev_body">هذا الإصدار هو إصدار مسبق، وقد تواجه مشاكل غير متوقعة</string>
+ <string name="revanced_settings_about_links_header">الروابط الرسمية</string>
+ <string name="revanced_pref_import_export_title">استيراد / تصدير</string>
+ <string name="revanced_pref_import_export_summary">استيراد / تصدير إعدادات ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">لمحة</string>
+ <string name="revanced_settings_screen_01_ads_title">الإعلانات</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">مُصغَّرات فيديو بديلة</string>
+ <string name="revanced_settings_screen_03_feed_title">الموجز</string>
+ <string name="revanced_settings_screen_04_player_title">المشغل</string>
+ <string name="revanced_settings_screen_05_general_title">التصميم العام</string>
+ <string name="revanced_settings_screen_07_seekbar_title">شريط تقدم الفيديو</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">التحكم عن طريق إيماءة التمرير</string>
+ <string name="revanced_settings_screen_11_misc_title">إعدادات متنوعة</string>
+ <string name="revanced_settings_screen_12_video_title">الفيديو</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">تصحيح الأخطاء</string>
+ <string name="revanced_debug_screen_summary">تمكين أو تعطيل خيارات تصحيح الأخطاء</string>
+ <string name="revanced_debug_title">تسجيل تصحيح الأخطاء</string>
+ <string name="revanced_debug_summary_on">تم تمكين تسجيلات تصحيح الأخطاء</string>
+ <string name="revanced_debug_summary_off">تم تعطيل تسجيلات تصحيح الأخطاء</string>
+ <string name="revanced_debug_protobuffer_title">سجل بروتوكول التخزين المؤقت</string>
+ <string name="revanced_debug_protobuffer_summary_on">تتضمن سجلات التصحيح التخزين المؤقت</string>
+ <string name="revanced_debug_protobuffer_summary_off">لا تتضمن سجلات التصحيح التخزين المؤقت</string>
+ <string name="revanced_debug_stacktrace_title">سجل عمليات التطبيق</string>
+ <string name="revanced_debug_stacktrace_summary_on">تتضمن سجلات التصحيح سِجِل عمليات التطبيق</string>
+ <string name="revanced_debug_stacktrace_summary_off">لا تتضمن سجلات التصحيح سِجِل عمليات التطبيق</string>
+ <string name="revanced_debug_toast_on_error_title">عرض ملاحظة عند وجود خطأ في ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">يتم عرض ملاحظة في حالة حدوث خطأ</string>
+ <string name="revanced_debug_toast_on_error_summary_off">لا يتم عرض ملاحظة في حالة حدوث خطأ</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">يؤدي إيقاف تشغيل ملاحظات الأخطاء إلى إخفاء كافة إشعارات خطأ ReVanced.\n\nلن يتم إعلامك بأي أخطاء غير متوقعة.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">تعطيل توهج زر أعجبني / اشتراك</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">لن يتوهج زر أعجبني واشتراك عند ذكره</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">أعجبني واشتراك سوف يتوهج عند الإشارة</string>
+ <string name="revanced_hide_gray_separator_title">إخفاء الفاصل الرمادي</string>
+ <string name="revanced_hide_gray_separator_summary_on">تم إخفاء الفواصل الرمادية</string>
+ <string name="revanced_hide_gray_separator_summary_off">يتم عرض الفواصل الرمادية</string>
+ <string name="revanced_hide_channel_watermark_title">إخفاء العلامة المائية للقناة</string>
+ <string name="revanced_hide_channel_watermark_summary_on">تم إخفاء علامة الفيديو المائية</string>
+ <string name="revanced_hide_channel_watermark_summary_off">يتم عرض علامة الفيديو المائية</string>
+ <string name="revanced_hide_horizontal_shelves_title">إخفاء الرفوف الأفقية</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">تكون الرفوف مخفية مثل:\n• الأخبار العاجلة\n• متابعة المشاهدة\n• استكشاف المزيد من القنوات\n• التسوق\n• مشاهدة مرة أخرى</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">يتم عرض الرفوف</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">إخفاء زر \'الانضمام\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">تم إخفاء الزر</string>
+ <string name="revanced_hide_join_membership_button_summary_off">يتم عرض الزر</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">إخفاء رف \"من أجلك\" في صفحة القناة</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">تم إخفاء الرف</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">يتم عرض الرف</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">إخفاء زر \'نبهني\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">تم إخفاء الزر</string>
+ <string name="revanced_hide_notify_me_button_summary_off">يتم عرض الزر</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">إخفاء توصيات \'شاهد الأشخاص أيضًا\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">تم إخفاء التوصيات</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">يتم عرض التوصيات</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">إخفاء زر \'عرض المزيد\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">تم إخفاء الزر</string>
+ <string name="revanced_hide_show_more_button_summary_off">يتم عرض الزر</string>
+ <string name="revanced_hide_timed_reactions_title">إخفاء ردود الفعل المؤقتة</string>
+ <string name="revanced_hide_timed_reactions_summary_on">تم إخفاء ردود الفعل المؤقتة</string>
+ <string name="revanced_hide_timed_reactions_summary_off">يتم عرض ردود الفعل المؤقتة</string>
+ <string name="revanced_hide_search_result_shelf_header_title">إخفاء رأس رف نتائج البحث</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">تم إخفاء رأس الرف</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">يتم عرض رأس الرف</string>
+ <string name="revanced_hide_channel_guidelines_title">إخفاء إرشادات القناة</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">تم إخفاء إرشادات القناة</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">يتم عرض إرشادات القناة</string>
+ <string name="revanced_hide_expandable_chip_title">إخفاء الشريحة القابلة للتوسيع تحت مقاطع الفيديو</string>
+ <string name="revanced_hide_expandable_chip_summary_on">تم إخفاء الرقائق القابلة للتوسيع</string>
+ <string name="revanced_hide_expandable_chip_summary_off">يتم عرض الرقائق القابلة للتوسيع</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">إخفاء تذييل قائمة جودة الفيديو</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">تم إخفاء تذييل قائمة جودة الفيديو</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">يتم عرض تذييل قائمة جودة الفيديو</string>
+ <string name="revanced_hide_community_posts_title">إخفاء مشاركات المجتمع</string>
+ <string name="revanced_hide_community_posts_summary_on">تم إخفاء مشاركات المجتمع</string>
+ <string name="revanced_hide_community_posts_summary_off">يتم عرض مشاركات المجتمع</string>
+ <string name="revanced_hide_compact_banner_title">إخفاء شريط الإعلانات</string>
+ <string name="revanced_hide_compact_banner_summary_on">تم إخفاء شريط الإعلانات</string>
+ <string name="revanced_hide_compact_banner_summary_off">يتم عرض شريط الإعلانات</string>
+ <string name="revanced_hide_movies_section_title">إخفاء قسم الأفلام</string>
+ <string name="revanced_hide_movies_section_summary_on">تم إخفاء قسم الأفلام</string>
+ <string name="revanced_hide_movies_section_summary_off">يتم عرض قسم الأفلام</string>
+ <string name="revanced_hide_feed_survey_title">إخفاء الاستبيانات</string>
+ <string name="revanced_hide_feed_survey_summary_on">تم إخفاء الاستبيانات</string>
+ <string name="revanced_hide_feed_survey_summary_off">يتم عرض الاستبيانات</string>
+ <string name="revanced_hide_community_guidelines_title">إخفاء إرشادات المجتمع</string>
+ <string name="revanced_hide_community_guidelines_summary_on">تم إخفاء إرشادات المجتمع</string>
+ <string name="revanced_hide_community_guidelines_summary_off">يتم عرض إرشادات المجتمع</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">إخفاء إرشادات مجتمع المشتركين</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">تم إخفاء إرشادات مجتمع المشتركين</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">يتم عرض إرشادات مجتمع المشتركين</string>
+ <string name="revanced_hide_channel_member_shelf_title">إخفاء رف أعضاء القناة</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">تم إخفاء رف أعضاء القناة</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">يتم عرض رف أعضاء القناة</string>
+ <string name="revanced_hide_emergency_box_title">إخفاء صناديق الطوارئ</string>
+ <string name="revanced_hide_emergency_box_summary_on">تم إخفاء صناديق الطوارئ</string>
+ <string name="revanced_hide_emergency_box_summary_off">يتم عرض صناديق الطوارئ</string>
+ <string name="revanced_hide_info_panels_title">إخفاء لوحات المعلومات</string>
+ <string name="revanced_hide_info_panels_summary_on">تم إخفاء لوحات المعلومات</string>
+ <string name="revanced_hide_info_panels_summary_off">يتم عرض لوحات المعلومات</string>
+ <string name="revanced_hide_medical_panels_title">إخفاء اللوحات الطبية</string>
+ <string name="revanced_hide_medical_panels_summary_on">تم إخفاء اللوحات الطبية</string>
+ <string name="revanced_hide_medical_panels_summary_off">يتم عرض اللوحات الطبية</string>
+ <string name="revanced_hide_channel_bar_title">إخفاء شريط القناة</string>
+ <string name="revanced_hide_channel_bar_summary_on">تم إخفاء شريط القناة</string>
+ <string name="revanced_hide_channel_bar_summary_off">يتم عرض شريط القناة</string>
+ <string name="revanced_hide_playables_title">إخفاء هيّا نلعب</string>
+ <string name="revanced_hide_playables_summary_on">تم إخفاء هيّا نلعب</string>
+ <string name="revanced_hide_playables_summary_off">يتم عرض هيّا نلعب</string>
+ <string name="revanced_hide_quick_actions_title">إخفاء الإجراءات السريعة في ملء الشاشة</string>
+ <string name="revanced_hide_quick_actions_summary_on">تم إخفاء الإجراءات السريعة</string>
+ <string name="revanced_hide_quick_actions_summary_off">يتم عرض الإجراءات السريعة</string>
+ <string name="revanced_hide_related_videos_title">إخفاء الفيديوهات ذات الصلة في الإجراءات السريعة</string>
+ <string name="revanced_hide_related_videos_summary_on">تم إخفاء مقاطع الفيديو ذات الصلة</string>
+ <string name="revanced_hide_related_videos_summary_off">يتم عرض مقاطع الفيديو ذات الصلة</string>
+ <string name="revanced_hide_image_shelf_title">إخفاء رفوف الصور في نتائج البحث</string>
+ <string name="revanced_hide_image_shelf_summary_on">تم إخفاء رفوف الصورة</string>
+ <string name="revanced_hide_image_shelf_summary_off">يتم عرض رفوف الصورة</string>
+ <string name="revanced_hide_latest_posts_ads_title">إخفاء آخر المشاركات</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">تم إخفاء أحدث المشاركات</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">يتم عرض أحدث المشاركات</string>
+ <string name="revanced_hide_mix_playlists_title">إخفاء قوائم تشغيل التشكيلة</string>
+ <string name="revanced_hide_mix_playlists_summary_on">تم إخفاء قوائم تشغيل التشكيلة</string>
+ <string name="revanced_hide_mix_playlists_summary_off">يتم عرض قوائم تشغيل التشكيلة</string>
+ <string name="revanced_hide_artist_cards_title">إخفاء بطاقات الفنان</string>
+ <string name="revanced_hide_artist_cards_summary_on">تم إخفاء بطاقات الفنان</string>
+ <string name="revanced_hide_artist_cards_summary_off">يتم عرض بطاقات الفنان</string>
+ <string name="revanced_hide_chips_shelf_title">إخفاء رف الشرائح</string>
+ <string name="revanced_hide_chips_shelf_summary_on">تم إخفاء رف الشرائح</string>
+ <string name="revanced_hide_chips_shelf_summary_off">يتم عرض رف الشرائح</string>
+ <string name="revanced_hide_attributes_section_title">إخفاء قسم الصفات</string>
+ <string name="revanced_hide_attributes_section_summary_on">تم إخفاء \'الأماكن المميزة\'، أقسام الألعاب والموسيقى</string>
+ <string name="revanced_hide_attributes_section_summary_off">يتم عرض \'الأماكن المميزة\'، أقسام الألعاب والموسيقى</string>
+ <string name="revanced_hide_chapters_section_title">إخفاء قسم الفصول</string>
+ <string name="revanced_hide_chapters_section_summary_on">تم إخفاء قسم الفصول</string>
+ <string name="revanced_hide_chapters_section_summary_off">يتم عرض قسم الفصول</string>
+ <string name="revanced_hide_podcast_section_title">إخفاء قسم \'استكشاف البودكاست\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">يتم عرض قسم \'استكشاف البودكاست\'</string>
+ <string name="revanced_hide_podcast_section_summary_off">يتم عرض قسم \'استكشاف البودكاست\'</string>
+ <string name="revanced_hide_info_cards_section_title">إخفاء قسم بطاقات المعلومات</string>
+ <string name="revanced_hide_info_cards_section_summary_on">تم إخفاء قسم بطاقات المعلومات</string>
+ <string name="revanced_hide_info_cards_section_summary_off">يتم عرض قسم بطاقات المعلومات</string>
+ <string name="revanced_hide_transcript_section_title">إخفاء قسم النص</string>
+ <string name="revanced_hide_transcript_section_summary_on">تم إخفاء قسم النص</string>
+ <string name="revanced_hide_transcript_section_summary_off">يتم عرض قسم النص</string>
+ <string name="revanced_hide_description_components_screen_title">وصف الفيديو</string>
+ <string name="revanced_hide_description_components_screen_summary">إخفاء أو عرض مكونات وصف الفيديو</string>
+ <string name="revanced_custom_filter_screen_title">فلتر مخصص</string>
+ <string name="revanced_custom_filter_screen_summary">إخفاء المكونات باستخدام فلاتر مخصصة</string>
+ <string name="revanced_custom_filter_title">تمكين الفلتر المخصص</string>
+ <string name="revanced_custom_filter_summary_on">تم تمكين الفلتر المخصص</string>
+ <string name="revanced_custom_filter_summary_off">تم تعطيل الفلتر المخصص</string>
+ <string name="revanced_custom_filter_strings_title">فلتر مخصص</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">قائمة سلاسل منشئ مسار المكونات المراد تصفيتها مفصولة بسطر جديد</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">فلتر مخصص غير صالح: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">إخفاء محتوى الكلمات الرئيسية</string>
+ <string name="revanced_hide_keyword_content_screen_summary">إخفاء فيديوهات البحث والموجز باستخدام فلاتر الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_home_title">إخفاء مقاطع فيديو الصفحة الرئيسية بواسطة الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">تتم تصفية مقاطع الفيديو في علامة التبويب \"الصفحة الرئيسية\" حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">لا تتم تصفية مقاطع الفيديو في علامة التبويب \"الصفحة الرئيسية\" حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">إخفاء مقاطع الفيديو الخاصة بالاشتراك عن طريق الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">يتم تصفية الفيديوهات في علامة التبويب الاشتراكات حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">لا يتم تصفية الفيديوهات في علامة التبويب الاشتراكات حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_search_title">إخفاء نتائج البحث عن طريق الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">يتم تصفية نتائج البحث حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">لا يتم تصفية نتائج البحث حسب الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_phrases_title">الكلمات المفتاحية المراد إخفاؤها</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">الكلمات المفتاحية والعبارات المراد إخفاؤها، مفصولة بأسطر جديد\n\nالكلمات التي تحتوي على أحرف كبيرة في الوسط يجب إدخالها مع التغليف (مثل: iPhone, TikTok, Leblanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">حول تصفية الكلمات المفتاحية</string>
+ <string name="revanced_hide_keyword_content_about_summary">الصفحة الرئيسية/الاشتراك/نتائج البحث يتم تصفيتها لإخفاء المحتوى الذي يطابق عبارات الكلمات المفتاحية\n\nالتقييد\n• بعض المقاطع القصيرة قد لا تكون مخفية\n• بعض مكونات واجهة المستخدم قد لا تكون مخفية\n• البحث عن كلمة رئيسية قد لا يظهر أي نتائج</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">الكلمة المفتاحية غير صالحة. لا يمكن استخدام: \'%s\' كعامل تصفية</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">الكلمة المفتاحية غير صالحة. \'%1$s\' أقل من %2$d حرفًا</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">الكلمة المفتاحية \'$s\' سوف تخفي جميع الفيديوهات</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">إخفاء الإعلانات العامة</string>
+ <string name="revanced_hide_general_ads_summary_on">تم إخفاء الإعلانات بشكل عام</string>
+ <string name="revanced_hide_general_ads_summary_off">يتم عرض الإعلانات العامة</string>
+ <string name="revanced_hide_fullscreen_ads_title">إخفاء إعلانات ملء الشاشة</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">يتم إخفاء إعلانات ملء الشاشة\n\nهذه الميزة متوفرة فقط للأجهزة القديمة</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">يتم عرض إعلانات ملء الشاشة</string>
+ <string name="revanced_hide_buttoned_ads_title">إخفاء الإعلانات الزرية</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">تم إخفاء الإعلانات الزرية</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">يتم عرض الإعلانات الزرية</string>
+ <string name="revanced_hide_paid_promotion_label_title">إخفاء تسمية الترقية المدفوعة</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">تم إخفاء تسمية الترقية المدفوعة</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">يتم عرض تسمية الترقية المدفوعة</string>
+ <string name="revanced_hide_self_sponsor_ads_title">إخفاء بطاقات الرعاية الذاتية</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">تم إخفاء بطاقات الرعاية الذاتية</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">يتم عرض بطاقات الرعاية الذاتية</string>
+ <string name="revanced_hide_products_banner_title">إخفاء لافتة لعرض المنتجات</string>
+ <string name="revanced_hide_products_banner_summary_on">تم إخفاء البانر</string>
+ <string name="revanced_hide_products_banner_summary_off">يتم عرض البانر</string>
+ <string name="revanced_hide_shopping_links_title">إخفاء روابط التسوق في وصف الفيديو</string>
+ <string name="revanced_hide_shopping_links_summary_on">تم إخفاء روابط التسوق</string>
+ <string name="revanced_hide_shopping_links_summary_off">يتم عرض روابط التسوق</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">إخفاء زر \"زيارة المتجر\" على صفحات القناة</string>
+ <string name="revanced_hide_visit_store_button_summary_on">تم إخفاء الزر</string>
+ <string name="revanced_hide_visit_store_button_summary_off">يتم عرض الزر</string>
+ <string name="revanced_hide_web_search_results_title">إخفاء نتائج بحث الويب</string>
+ <string name="revanced_hide_web_search_results_summary_on">تم إخفاء نتائج البحث على الويب</string>
+ <string name="revanced_hide_web_search_results_summary_off">يتم عرض نتائج البحث على الويب</string>
+ <string name="revanced_hide_merchandise_banners_title">إخفاء لافتات البضائع</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">تم إخفاء لافتات البضائع</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">يتم عرض لافتات البضائع</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">إخفاء إعلانات ملء الشاشة يعمل فقط مع الأجهزة القديمة</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">إخفاء ترقية YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">تم إخفاء عروض YouTube Premium الترويجية تحت مشغل الفيديو</string>
+ <string name="revanced_hide_get_premium_summary_off">يتم عرض عروض YouTube Premium الترويجية تحت مشغل الفيديو</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">إخفاء إعلانات الفيديو</string>
+ <string name="revanced_hide_video_ads_summary_on">تم إخفاء إعلانات الفيديو</string>
+ <string name="revanced_hide_video_ads_summary_off">يتم عرض إعلانات الفيديو</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">تم نسخ URL إلى الحافظة</string>
+ <string name="revanced_share_copy_url_timestamp_success">تم نسخ عنوان URL مع الطابع الزمني</string>
+ <string name="revanced_copy_video_url_title">عرض زر نسخ عنوان URL للفيديو</string>
+ <string name="revanced_copy_video_url_summary_on">يتم عرض الزر. انقر لنسخ رابط الفيديو. انقر مع الاستمرار لنسخ URL الفيديو مع الطابع الزمني</string>
+ <string name="revanced_copy_video_url_summary_off">لا يتم عرض الزر</string>
+ <string name="revanced_copy_video_url_timestamp_title">عرض زر نسخ URL مع الطابع الزمني</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">يتم عرض الزر. انقر لنسخ عنوان URL للفيديو مع الطابع الزمني. انقر مع الاستمرار لنسخ الفيديو بدون الطابع الزمني</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">لا يتم عرض الزر</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">إزالة مربع حوار تقدير المشاهد</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">سيتم إزالة مربع الحوار</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">سيتم عرض مربع الحوار</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">وهذا لا يتجاوز قيود السن. بل يقبلها تلقائيًا.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">التنزيلات الخارجية</string>
+ <string name="revanced_external_downloader_screen_summary">إعدادات لاستخدام أداة التنزيل الخارجية</string>
+ <string name="revanced_external_downloader_title">عرض زر التنزيل الخارجي</string>
+ <string name="revanced_external_downloader_summary_on">يتم عرض زر التنزيل في المشغل</string>
+ <string name="revanced_external_downloader_summary_off">لا يتم عرض زر التنزيل في المشغل</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">تجاوز زر إجراء التنزيل</string>
+ <string name="revanced_external_downloader_action_button_summary_on">يفتح زر التنزيل أداة التنزيل الخارجية</string>
+ <string name="revanced_external_downloader_action_button_summary_off">يفتح زر التنزيل أداة التنزيل الأصلية داخل التطبيق</string>
+ <string name="revanced_external_downloader_name_title">اسم حزمة أداة التنزيل</string>
+ <string name="revanced_external_downloader_name_summary">اسم الحزمة لتطبيق التنزيل الخارجي المثبت لديك، مثل NewPipe أو Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">لم يتم تثبيت %s . الرجاء تثبيته.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">تعطيل إيماءة التمرير الدقيقة</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">تم تعطيل الإيماءة</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">تم تمكين الإيماءة</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">تمكين النقر على شريط الوقت</string>
+ <string name="revanced_seekbar_tapping_summary_on">تم تمكين النقر على شريط الوقت (شريط تقدم الفيديو)</string>
+ <string name="revanced_seekbar_tapping_summary_off">تم تعطيل النقر على شريط الوقت (شريط تقدم الفيديو)</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">التحكم بالسطوع عن طريق ايماءة التمرير</string>
+ <string name="revanced_swipe_brightness_summary_on">تم تمكين التحكم بمستوى السطوع عن طريق الإيماءة</string>
+ <string name="revanced_swipe_brightness_summary_off">تم تعطيل التحكم بمستوى السطوع عن طريق الإيماءة</string>
+ <string name="revanced_swipe_volume_title">تمكين التحكم بالصوت عن طريق إيماءة التمرير</string>
+ <string name="revanced_swipe_volume_summary_on">تم تمكين التحكم بمستوى الصوت عن طريق الإيماءة</string>
+ <string name="revanced_swipe_volume_summary_off">تم تعطيل التحكم بمستوى الصوت عن طريق الإيماءة</string>
+ <string name="revanced_swipe_press_to_engage_title">تمكين إيماءة الضغط للتمرير</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">يتم تنشيط عناصر التحكم عن طريق إيماءة التمرير فقط بضغطة طويلة</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">تنشيط عناصر التحكم عن طريق إيماءة التمرير عند الضغط مباشرة</string>
+ <string name="revanced_swipe_haptic_feedback_title">الاهتزاز عند الضغط</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">تم تمكين الاهتزاز عند الضغط</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">تم تعطيل الاهتزاز عند الضغط</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">حفظ واستعادة السطوع</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">حفظ واستعادة السطوع عند الخروج أو الدخول إلى وضع ملء الشاشة</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">لا تقم بحفظ السطوع واستعادته عند الخروج أو الدخول إلى وضع ملء الشاشة</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">تمكين إيماءة السطوع التلقائي</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">يؤدي التمرير لأسفل إلى أدنى قيمة لإيماءة السطوع إلى تمكين السطوع التلقائي</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">لا يؤدي التمرير لأسفل إلى أدنى قيمة إلى تمكين السطوع التلقائي</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">تلقائي</string>
+ <string name="revanced_swipe_overlay_timeout_title">مهلة واجهة التمرير</string>
+ <string name="revanced_swipe_overlay_timeout_summary">مقدار الوقت الذي تظهر فيه واجهة التمرير بعد التغيير بجزء الثانية</string>
+ <string name="revanced_swipe_text_overlay_size_title">حجم نص واجهة التمرير</string>
+ <string name="revanced_swipe_text_overlay_size_summary">حجم النص على واجهة التمرير</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">شفافية خلفية واجهة التمرير</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">قيمة شفافية خلفية واجهة التمرير</string>
+ <string name="revanced_swipe_threshold_title">مقدار حد التمرير</string>
+ <string name="revanced_swipe_threshold_summary">الحد الأدنى من التمرير قبل اكتشاف الإيماءة</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">تعطيل التَّرْجَمَة التلقائية</string>
+ <string name="revanced_auto_captions_summary_on">تم تعطيل التَّرْجَمَة التلقائية</string>
+ <string name="revanced_auto_captions_summary_off">تم تمكين التَّرْجَمَة التلقائية</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">أزرار الإجراء</string>
+ <string name="revanced_hide_buttons_screen_summary">إخفاء أو عرض الأزرار تحت مقاطع الفيديو</string>
+ <string name="revanced_hide_like_dislike_button_title">إخفاء أعجبني ولم يعجبني</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">تم إخفاء أزرار أعجبني ولم يعجبني</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">يتم عرض أزرار أعجبني ولم يعجبني</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">إخفاء المشاركة</string>
+ <string name="revanced_hide_share_button_summary_on">تم إخفاء زر مشاركة</string>
+ <string name="revanced_hide_share_button_summary_off">يتم عرض زر مشاركة</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">إخفاء الإبلاغ</string>
+ <string name="revanced_hide_report_button_summary_on">تم إخفاء زر الإبلاغ</string>
+ <string name="revanced_hide_report_button_summary_off">يتم عرض زر الإبلاغ</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">إخفاء ريمكس</string>
+ <string name="revanced_hide_remix_button_summary_on">تم إخفاء زر ريمكس</string>
+ <string name="revanced_hide_remix_button_summary_off">يتم عرض زر ريمكس</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">إخفاء التنزيل</string>
+ <string name="revanced_hide_download_button_summary_on">تم إخفاء زر التنزيل</string>
+ <string name="revanced_hide_download_button_summary_off">يتم عرض زر التنزيل</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">إخفاء شكرًا</string>
+ <string name="revanced_hide_thanks_button_summary_on">تم إخفاء زر شكرًا</string>
+ <string name="revanced_hide_thanks_button_summary_off">يتم عرض زر شكرًا</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">إخفاء المقطع</string>
+ <string name="revanced_hide_clip_button_summary_on">تم إخفاء زر إنشاء مقطع</string>
+ <string name="revanced_hide_clip_button_summary_off">يتم عرض زر إنشاء مقطع</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">إخفاء الحفظ في قائمة التشغيل</string>
+ <string name="revanced_hide_playlist_button_summary_on">تم إخفاء زر الحفظ في قائمة التشغيل</string>
+ <string name="revanced_hide_playlist_button_summary_off">يتم عرض زر الحفظ في قائمة التشغيل</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">إخفاء زر التشغيل التلقائي</string>
+ <string name="revanced_hide_autoplay_button_summary_on">تم إخفاء زر التشغيل التلقائي</string>
+ <string name="revanced_hide_autoplay_button_summary_off">يتم عرض زر التشغيل التلقائي</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">إخفاء زر التَرْجَمَة</string>
+ <string name="revanced_hide_captions_button_summary_on">تم إخفاء زر التَرْجَمَة</string>
+ <string name="revanced_hide_captions_button_summary_off">يتم عرض زر التَرْجَمَة</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">إخفاء زر البث</string>
+ <string name="revanced_hide_cast_button_summary_on">تم إخفاء زر البث</string>
+ <string name="revanced_hide_cast_button_summary_off">يتم عرض زر البث</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">أزرار التنقل</string>
+ <string name="revanced_navigation_buttons_screen_summary">إخفاء أو تغيير الأزرار في شريط التنقل</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">إخفاء الصفحة الرئيسية</string>
+ <string name="revanced_hide_home_button_summary_on">تم إخفاء زر الصفحة الرئيسية</string>
+ <string name="revanced_hide_home_button_summary_off">يتم عرض زر الصفحة الرئيسية</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">إخفاء Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">تم إخفاء زر Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_off">يتم عرض زر Shorts</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">إخفاء الإنشاء</string>
+ <string name="revanced_hide_create_button_summary_on">تم إخفاء زر الإنشاء</string>
+ <string name="revanced_hide_create_button_summary_off">يتم عرض زر الإنشاء</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">إخفاء الاشتراكات</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">تم إخفاء زر الاشتراكات</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">يتم عرض زر الاشتراكات</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">تبديل الإنشاء مع الإشعارات</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">تم تبديل زر الإنشاء بـزر الإشعارات\n\nملاحظة: يؤدي تمكين هذا أيضًا إلى إخفاء إعلانات الفيديو بالقوة</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">لا يتم تبديل زر الإنشاء بزر الإشعارات</string>
+ <string name="revanced_hide_navigation_button_labels_title">إخفاء تسميات زر التنقل</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">تم إخفاء التسميات</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">يتم عرض التسميات</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">القائمة المنبثقة</string>
+ <string name="revanced_hide_player_flyout_summary">إخفاء أو عرض عناصر قائمة المشغل المنبثقة</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">اخفاء التَرْجَمَة</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">تم إخفاء قائمة التَرْجَمَة</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">يتم عرض قائمة التَرْجَمَة</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">إخفاء الإعدادات الإضافية</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">تم إخفاء قائمة الإعدادات الإضافية</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">يتم عرض قائمة الإعدادات الإضافية</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">إخفاء تكرار الفيديو</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">تم إخفاء قائمة تكرار الفيديو</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">يتم عرض قائمة تكرار الفيديو</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">إخفاء وضع الإضاءة السينمائية</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">تم إخفاء قائمة الإضاءة السينمائية</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">يتم عرض قائمة الإضاءة السينمائية</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">إخفاء المساعدة & الملاحظات</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">تم إخفاء قائمة المساعدة & الملاحظات</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">يتم عرض قائمة المساعدة & الملاحظات</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">إخفاء سرعة التشغيل</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">تم إخفاء قائمة سرعة التشغيل</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">يتم عرض قائمة سرعة التشغيل</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">إخفاء المزيد من المعلومات</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">تم إخفاء قائمة المزيد من المعلومات</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">يتم عرض قائمة المزيد من المعلومات</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">إخفاء شاشة القفل</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">تم إخفاء قائمة قفل الشاشة</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">يتم عرض قائمة قفل الشاشة</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">إخفاء المقطع الصوتي</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">تم إخفاء قائمة المقطع الصوتي</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">يتم عرض قائمة المقطع الصوتي</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">إخفاء المشاهدة في VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">تم إخفاء قائمة المشاهدة في الوضع الافتراضي</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">يتم عرض قائمة المشاهدة في الوضع الافتراضي</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">إخفاء أزرار الفيديو السابق & التالي</string>
+ <string name="revanced_hide_player_buttons_summary_on">تم إخفاء الأزرار</string>
+ <string name="revanced_hide_player_buttons_summary_off">يتم عرض الأزرار</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">إخفاء بطاقات الألبوم</string>
+ <string name="revanced_hide_album_cards_summary_on">تم إخفاء بطاقات الألبوم</string>
+ <string name="revanced_hide_album_cards_summary_off">يتم عرض بطاقات الألبوم</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">التعليقات</string>
+ <string name="revanced_comments_screen_summary">إخفاء أو عرض مكونات قسم التعليقات</string>
+ <string name="revanced_hide_comments_by_members_header_title">إخفاء رأس \'تعليقات الأعضاء\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">تم إخفاء رأس \'تعليقات الأعضاء\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">يتم عرض رأس \'تعليقات الأعضاء\'</string>
+ <string name="revanced_hide_comments_section_title">إخفاء قسم التعليقات</string>
+ <string name="revanced_hide_comments_section_summary_on">تم إخفاء قسم التعليقات</string>
+ <string name="revanced_hide_comments_section_summary_off">يتم عرض قسم التعليقات</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">إخفاء زر \'إنشاء مقطع Short\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">تم إخفاء زر \'إنشاء Short\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">يتم عرض زر \'إنشاء Short\'</string>
+ <string name="revanced_hide_comments_preview_comment_title">إخفاء تعليق المعاينة</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">تم إخفاء تعليق المعاينة</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">يتم عرض تعليق المعاينة</string>
+ <string name="revanced_hide_comments_thanks_button_title">إخفاء زر شكرًا</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">تم إخفاء زر شكرًا</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">يتم عرض زر شكرًا</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">إخفاء أزرار الطابع الزمني والرموز التعبيرية</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">تم إخفاء أزرار الطابع الزمني والرموز التعبيرية</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">يتم عرض أزرار الطابع الزمني والرموز التعبيرية</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">إخفاء مربع التمويل الجماعي</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">تم إخفاء مربع التمويل الجماعي</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">يتم عرض مربع التمويل الجماعي</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">إخفاء بطاقات شاشة النهاية</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">تم إخفاء بطاقات شاشة النهاية</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">يتم عرض بطاقات شاشة النهاية</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">شريط التصفية</string>
+ <string name="revanced_hide_filter_bar_screen_summary">إخفاء شريط التصفية أو عرضه في الموجز والبحث ومقاطع الفيديو ذات الصلة</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">إخفاء في الموجز</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">مخفي في الموجز</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">يعرض في الموجز</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">إخفاء في البحث</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">مخفي في البحث</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">يعرض في البحث</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">إخفاء في الفيديوهات ذات الصلة</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">مخفي في الفيديوهات ذات الصلة</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">يعرض في الفيديوهات ذات الصلة</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">إخفاء زر الميكروفون العائم</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">تم إخفاء زر الميكروفون</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">يتم عرض زر الميكروفون</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">تعطيل وضع الإضاءة السينمائية في ملء الشاشة</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">تم تعطيل وضع الإضاءة السينمائية</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">تم تمكين وضع الإضاءة السينمائية</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">إخفاء بطاقات المعلومات</string>
+ <string name="revanced_hide_info_cards_summary_on">تم إخفاء بطاقات المعلومات</string>
+ <string name="revanced_hide_info_cards_summary_off">يتم عرض بطاقات المعلومات</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">تعطيل عدد مرات المشاهدة والإعجابات في الوقت الفعلي</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">عدد مرات المشاهدة والإعجابات غير متحركة</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">عدد مرات المشاهدة والإعجابات متحركة</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">إخفاء شريط التقدم في مشغل الفيديو</string>
+ <string name="revanced_hide_seekbar_summary_on">تم إخفاء شريط تقدم الفيديو</string>
+ <string name="revanced_hide_seekbar_summary_off">يتم عرض شريط تقدم الفيديو</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">إخفاء شريط التقدم في مُصَّغَرات الفيديو</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">تم إخفاء مصغرة شريط التقدم</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">يتم عرض مصغرة شريط التقدم</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">إخفاء Shorts في موجز الصفحة الرئيسية</string>
+ <string name="revanced_hide_shorts_home_summary_on">تم إخفاء Shorts في موجز الصفحة الرئيسية</string>
+ <string name="revanced_hide_shorts_home_summary_off">يتم عرض Shorts في موجز الصفحة الرئيسية</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">إخفاء Shorts في موجز الاشتراكات</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">تم إخفاء Shorts في موجز الاشتراكات</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">يتم عرض Shorts في موجز الاشتراكات</string>
+ <string name="revanced_hide_shorts_search_title">إخفاء Shorts في نتائج البحث</string>
+ <string name="revanced_hide_shorts_search_summary_on">تم إخفاء Shorts في نتائج البحث</string>
+ <string name="revanced_hide_shorts_search_summary_off">يتم عرض Shorts في نتائج البحث</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">إخفاء زر الانضمام</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">تم إخفاء زر الانضمام</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">يتم عرض زر الانضمام</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">إخفاء زر الاشتراك</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">تم إخفاء زر الاشتراك</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">يتم عرض زر الاشتراك</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">إخفاء أزرار واجهة التوقف</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">تم إخفاء أزرار تراكب التوقف</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">يتم عرض أزرار تراكب التوقف</string>
+ <string name="revanced_hide_shorts_shop_button_title">إخفاء زر المتجر</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">تم إخفاء زر المتجر</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">يتم عرض زر المتجر</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">إخفاء زر Super Thanks</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">تم إخفاء زر Super Thanks</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">يتم عرض زر Super Thanks</string>
+ <string name="revanced_hide_shorts_tagged_products_title">إخفاء المنتجات الموسومة</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">تم إخفاء المنتجات الموسومة</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">يتم عرض المنتجات الموسومة</string>
+ <string name="revanced_hide_shorts_location_label_title">إخفاء تسمية الموقع</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">تم إخفاء تسمية الموقع</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">يتم عرض تسمية الموقع</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">إخفاء حفظ الصوت إلى زر قائمة التشغيل</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">تم إخفاء حفظ الصوت في قائمة التشغيل</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">يتم عرض حفظ الصوت في قائمة التشغيل</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">إخفاء اقتراحات البحث</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">تم إخفاء اقتراحات البحث</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">يتم عرض اقتراحات البحث</string>
+ <string name="revanced_hide_shorts_like_button_title">إخفاء زر أعجبني</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">تم إخفاء زر أعجبني</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">يتم عرض زر أعجبني</string>
+ <string name="revanced_hide_shorts_dislike_button_title">إخفاء زر لم يعجبني</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">تم إخفاء زر لم يعجبني</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">يتم عرض زر لم يعجبني</string>
+ <string name="revanced_hide_shorts_comments_button_title">إخفاء زر التعليقات</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">تم إخفاء زر التعليقات</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">يتم عرض زر التعليقات</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">إخفاء زر ريمكس</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">تم إخفاء زر ريمكس</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">يتم عرض زر ريمكس</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">إخفاء زر مشاركة</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">تم إخفاء زر مشاركة</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">يتم عرض زر مشاركة</string>
+ <string name="revanced_hide_shorts_info_panel_title">إخفاء لوحة المعلومات</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">تم إخفاء لوحة المعلومات</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">يتم عرض لوحة المعلومات</string>
+ <string name="revanced_hide_shorts_channel_bar_title">إخفاء شريط القناة</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">تم إخفاء شريط القناة</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">يتم عرض شريط القناة</string>
+ <string name="revanced_hide_shorts_video_title_title">إخفاء عنوان الفيديو</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">تم إخفاء العنوان</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">يتم عرض العنوان</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">إخفاء تسمية بيانات التعريف الصوتية</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">تم إخفاء تسمية بيانات التعريف</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">يتم عرض تسمية البيانات الوصفية</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">إخفاء تسمية رابط الفيديو الكامل</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">تم إخفاء تسمية رابط الفيديو</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">يتم عرض تسمية رابط الفيديو</string>
+ <string name="revanced_hide_shorts_sound_button_title">إخفاء زر الصوت</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">تم إخفاء زر الصوت</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">يتم عرض زر الصوت</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">إخفاء شريط التنقل</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">تم إخفاء شريط التنقل</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">يتم عرض شريط التنقل</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">تعطيل شاشة نهاية الفيديو المقترح</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">الفيديوهات المقترحة سيتم تعطيلها</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">الفيديوهات المقترحة سيتم عرضها</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">إخفاء الطابع الزمني للفيديو</string>
+ <string name="revanced_hide_timestamp_summary_on">تم إخفاء الطابع الزمني</string>
+ <string name="revanced_hide_timestamp_summary_off">يتم عرض الطابع الزمني</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">إخفاء لوحات المشغل المنبثقة</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">تم إخفاء لوحات المشغل المنبثقة</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">يتم عرض لوحات المشغل المنبثقة</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">شفافية تراكب المشغل</string>
+ <string name="revanced_player_overlay_opacity_summary">قيمة الشفافية بين 0-100، حيث يكون 0 شفاف</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">شفافية واجهة المشغل يجب أن تكون بين 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">مخفي</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">لم يعجبني غير متاح مؤقتًا (انتهت مهلة API)</string>
+ <string name="revanced_ryd_failure_connection_status_code">لم يعجبني غير متاح (الحالة %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">لم يعجبني غير متاح (تم الوصول إلى حد API العميل)</string>
+ <string name="revanced_ryd_failure_generic">لم يعجبني غير متاح (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">أعد تحميل الفيديو للتصويت بـ Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">يتم عرض لم يعجبني</string>
+ <string name="revanced_ryd_enable_summary_off">لا يتم عرض لم يعجبني</string>
+ <string name="revanced_ryd_shorts_title">عرض لم يعجني في مقاطع Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">يتم عرض لم يعجني في مقاطع Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">إبداءات لم يعجبني التي تظهر على فيديوهات Shorts\n\nالتقييد: قد لا تظهر إبداءات لم يعجبني في وضع التصفح المتخفي</string>
+ <string name="revanced_ryd_shorts_summary_off">تم إخفاء لم يعجني في مقاطع Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">لم يعجبني كــ نسبة مئوية</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">يعرض عدد لم يعجبني كـ نسبة مئوية</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">يعرض عدد لم يعجبني كـ رَقَم</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">مقاس زر أعجبني</string>
+ <string name="revanced_ryd_compact_layout_summary_on">زر أعجبني مصمم لأدنى عرض</string>
+ <string name="revanced_ryd_compact_layout_summary_off">زر أعجبني مصمم لأفضل مظهر</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">عرض ملاحظة إذا كان API غير متاح</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">يتم عرض الملاحظة في حالة عدم توفر Return YouTube Dislike</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">لا يتم عرض الملاحظة في حالة عدم توفر Return YouTube Dislike</string>
+ <string name="revanced_ryd_about">لمحة</string>
+ <string name="revanced_ryd_attribution_summary">يتم توفير البيانات بواسطة the Return YouTube Dislike API. اضغط هنا لمعرفة المزيد</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API إحصائيات هذا الجهاز</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">وقت استجابة API، متوسط</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">وقت استجابة API، الحد الأدنى</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">وقت استجابة API، الحد الأقصى</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">وقت استجابة API، الفيديو الأخير</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">غير متوفر مؤقتًا - حد معدل API للعميل ساري المفعول</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API جلب الأصوات وعدد الاتصالات</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">لم يتم إجراء اتصالات الشبكة</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d اتصالات شبكية أجريت</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API جلب الأصوات، عدد المهلات</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">لم تنتهي مهلة المكالمات الشبكية</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">اتصالات شبكية انتهت مهلتها %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">حدود معدل عميل API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">لا توجد حدود لمعدل العميل</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">تم مواجهة حد معدل العميل %d مرة</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d جزء الثانية</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">تمكين شريط البحث العريض</string>
+ <string name="revanced_wide_searchbar_summary_on">تم تمكين شريط البحث العريض</string>
+ <string name="revanced_wide_searchbar_summary_off">تم تعطيل شريط البحث العريض</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">استعادة مصغرات شريط التقدم القديم</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">مصغرات شريط التقدم ستظهر فوق شريط تقدم الفيديو</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">مصغرات شريط التقدم ستظهر في ملء الشاشة</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">تمكين مانِع الرُعَاة SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">مانِع الرُعَاة هو نظام جماعي لتخطي الأجزاء المُمِلَّة في مقاطع YouTube</string>
+ <string name="revanced_sb_appearance_category">المظهر</string>
+ <string name="revanced_sb_enable_voting">عرض زر التصويت</string>
+ <string name="revanced_sb_enable_voting_sum_on">يتم عرض زر التصويت على المقطع</string>
+ <string name="revanced_sb_enable_voting_sum_off">لا يتم عرض زر التصويت على المقطع</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">استخدام زر التخطي المُصَغَّر</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">زر التخطي مصمم لأدنى عرض</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">زر التخطي مصمم لأفضل مظهر</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">إخفاء زر التخطي تلقائيًا</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">إخفاء زر التخطي بعد بضع ثوانٍ</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">يتم عرض زر \"التخطي\" للمقطع بأكمله</string>
+ <string name="revanced_sb_general_skiptoast">عرض ملاحظة عند تخطي المقطع تلقائيًا</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">يتم عرض ملاحظة عندما يتم تخطي مقطع تلقائيًا. انقر هنا لمشاهدة مثال</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">لن يتم عرض الملاحظة. انقر هنا لمشاهدة مثال</string>
+ <string name="revanced_sb_general_time_without">عرض مدة الفيديو بدون المقاطع</string>
+ <string name="revanced_sb_general_time_without_sum_on">يعرض مدة الفيديو ناقصًا منه جميع المقاطع بين قوسين بجوار مدة الفيديو الكاملة</string>
+ <string name="revanced_sb_general_time_without_sum_off">يتم عرض مدة الفيديو كاملةً</string>
+ <string name="revanced_sb_create_segment_category">إنشاء مقاطع جديدة</string>
+ <string name="revanced_sb_enable_create_segment">عرض زر إنشاء مقطع جديد</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">يتم عرض زر إنشاء مقطع جديد</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">لا يتم عرض زر إنشاء مقطع جديد</string>
+ <string name="revanced_sb_general_adjusting">تعديل تقديم او تأخير المقطع الجديد</string>
+ <string name="revanced_sb_general_adjusting_sum">أجزاء الثانية التي تتحرك فيها أزرار ضبط الوقت عند إنشاء مقاطع جديدة</string>
+ <string name="revanced_sb_general_adjusting_invalid">يجب أن تكون القيمة رقمًا موجبًا</string>
+ <string name="revanced_sb_guidelines_preference_title">عرض الإرشادات</string>
+ <string name="revanced_sb_guidelines_preference_sum">الإرشادات تحتوي على نصائح حول تقديم المقاطع</string>
+ <string name="revanced_sb_guidelines_popup_title">توجد إرشادات</string>
+ <string name="revanced_sb_guidelines_popup_content">من المستحسن قراءة الإرشادات لمانع الرعاة قبل تقديم أي مقطع</string>
+ <string name="revanced_sb_guidelines_popup_already_read">تمت قراءتها</string>
+ <string name="revanced_sb_guidelines_popup_open">اعرضها لي</string>
+ <string name="revanced_sb_general">عام</string>
+ <string name="revanced_sb_toast_on_connection_error_title">عرض ملاحظة إذا كان API غير متاح</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">يتم عرض ملاحظة في حالة عدم توفر SponsorBlock</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">لا يتم عرض ملاحظة في حالة عدم توفر SponsorBlock</string>
+ <string name="revanced_sb_general_skipcount">تمكين تتبع مرات التخطي</string>
+ <string name="revanced_sb_general_skipcount_sum_on">يُتيح لـ SponsorBlock Leaderboard معرفة مقدار الوقت الذي وفره المشاهدين، يتم إعلام الخادم في كل مرة تتخطى فيها مقطعًا</string>
+ <string name="revanced_sb_general_skipcount_sum_off">تم تعطيل تتبع مرات التخطي</string>
+ <string name="revanced_sb_general_min_duration">الحد الأدنى لمدة المقطع</string>
+ <string name="revanced_sb_general_min_duration_sum">لن يتم عرض المقاطع الأقصر من هذه القيمة (بالثواني) أو تخطيها</string>
+ <string name="revanced_sb_general_uuid">معرف المستخدم الفريد الخاص بك</string>
+ <string name="revanced_sb_general_uuid_sum">يجب أن يبقى هذا خاصًا. انه مثل كلمة المرور ولا ينبغي مشاركته مع أي شخص. إذا كان شخص ما يملك هذا، فيمكنه انتحال شخصيتك</string>
+ <string name="revanced_sb_general_uuid_invalid">يجب أن يكون معرف المستخدم الخاص 30 حرفًا على الأقل</string>
+ <string name="revanced_sb_general_api_url">تغيير عنوان API</string>
+ <string name="revanced_sb_general_api_url_sum">العنوان الذي يستخدمه SponsorBlock لإجراء اتصالات إلى الخادم</string>
+ <string name="revanced_sb_api_url_reset">إعادة تعيين رابط API</string>
+ <string name="revanced_sb_api_url_invalid">رابط API غير صالح</string>
+ <string name="revanced_sb_api_url_changed">تم تغيير رابط API</string>
+ <string name="revanced_sb_settings_ie">إستيراد/تصدير الإعدادات</string>
+ <string name="revanced_sb_settings_copy">نسخ</string>
+ <string name="revanced_sb_settings_ie_sum">تكوين SponsorBlock JSON الخاص بك والذي يمكن استيراده/تصديره إلى ReVanced ومنصات SponsorBlock الأخرى</string>
+ <string name="revanced_sb_settings_ie_sum_warning">تكوين SponsorBlock الخاص بك كتنسيق JSON الذي يمكن استيراده / تصديره إلى ReVanced وغيره من منصات SponsorBlock الأخرى. يتضمن هذا معرف المستخدم الفريد الخاص بك. تأكد من مشاركته بحكمة</string>
+ <string name="revanced_sb_settings_import_successful">تم استيراد الإعدادات بنجاح</string>
+ <string name="revanced_sb_settings_import_failed">فشل استيراد: %s</string>
+ <string name="revanced_sb_settings_export_failed">فشل تصدير: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">تحتوي إعداداتك على معرف مستخدم خاص لـ SponsorBlock.\n\n معرف المستخدم الخاص بك يشبه كلمة المرور ويجب عدم مشاركته أبدًا.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">لا تعرض مرة أخرى</string>
+ <string name="revanced_sb_diff_segments">تغيير سلوك المقطع</string>
+ <string name="revanced_sb_segments_sponsor">الراعي</string>
+ <string name="revanced_sb_segments_sponsor_sum">الترويج المدفوع الأجر، والإحالات المدفوعة الأجر والإعلانات المباشرة. ليس للترويج الذاتي أو لصراعات مجانية للقضايا/المبدعين/المواقع الإلكترونية/المنتجات التي يحبون الحصول عليها</string>
+ <string name="revanced_sb_segments_selfpromo">ترويج شخصي / غير مدفوع الأجر</string>
+ <string name="revanced_sb_segments_selfpromo_sum">شبيهة بـ \"الراعي\" باستثناء ما يتعلق بالإعلانات غير المدفوعة الأجر أو الذاتية. ويشمل ذلك أقسام عن السلع أو التبرعات أو المعلومات المتعلقة بمن تعاونوا مع ناشر المحتوى</string>
+ <string name="revanced_sb_segments_interaction">تذكير بالتفاعل (اشتراك)</string>
+ <string name="revanced_sb_segments_interaction_sum">تذكير قصير للإعجاب أو الاشتراك أو المتابعة في منتصف المحتوى. إذا كانت طويلة أو تتعلق بشيء محدد، فيجب أن تكون خاضعة للترويج الشخصي بدلاً من ذلك</string>
+ <string name="revanced_sb_segments_highlight">الأبرز</string>
+ <string name="revanced_sb_segments_highlight_sum">الجزء من الفيديو الذي يبحث عنه معظم الناس</string>
+ <string name="revanced_sb_segments_intro">المقدمة/فاصل</string>
+ <string name="revanced_sb_segments_intro_sum">فاصل زمني بدون محتوى فعلي. يمكن أن يكون وقفاً مؤقتاً، أو إطارًا ثابتاً، أو تكرارًا. لا يتضمن التحولات التي تحتوي على معلومات</string>
+ <string name="revanced_sb_segments_outro">الخاتمة/تترات النهاية</string>
+ <string name="revanced_sb_segments_outro_sum">تتر النهاية أو عندما تظهر بطاقات نهاية YouTube، نهايات غير منطوقة. ليس للاستنتاجات مع المعلومات</string>
+ <string name="revanced_sb_segments_preview">معاينة/موجز/ربط</string>
+ <string name="revanced_sb_segments_preview_sum">مجموعة من المقاطع التي توضح ما هو قادم أو ما حدث في الفيديو أو في مقاطع فيديو أخرى من السلسلة، حيث تتكرر جميع المعلومات في مكان آخر</string>
+ <string name="revanced_sb_segments_filler">خارج الموضوع/النكات</string>
+ <string name="revanced_sb_segments_filler_sum">تم إضافة مشاهد ملتقطة خارج الموضوع أو الفكاهة التي ليست مطلوبة لفهم المحتوى الرئيسي للفيديو. لا تتضمن مقاطع توفر تَعبِير أو تفاصيل الخلفية</string>
+ <string name="revanced_sb_segments_nomusic">الموسيقى: مقطع غير موسيقي</string>
+ <string name="revanced_sb_segments_nomusic_sum">فقط للاستخدام في مقاطع الفيديو الموسيقية. أقسام مقاطع الفيديو الموسيقية بدون موسيقى، والتي لم يتم تغطيتها بالفعل من قبل فئة أخرى</string>
+ <string name="revanced_sb_skip_button_compact">تخطي</string>
+ <string name="revanced_sb_skip_button_compact_highlight">الأبرز</string>
+ <string name="revanced_sb_skip_button_sponsor">تخطي الراعي</string>
+ <string name="revanced_sb_skip_button_selfpromo">تخطي العرض الترويجي</string>
+ <string name="revanced_sb_skip_button_interaction">تخطي التفاعل</string>
+ <string name="revanced_sb_skip_button_highlight">التخطي لأبرز المشاهد</string>
+ <string name="revanced_sb_skip_button_intro_beginning">تخطي المقدمة</string>
+ <string name="revanced_sb_skip_button_intro_middle">تخطي الفاصل</string>
+ <string name="revanced_sb_skip_button_intro_end">تخطي الفاصل</string>
+ <string name="revanced_sb_skip_button_outro">تخطي الخاتمة</string>
+ <string name="revanced_sb_skip_button_preview_beginning">تخطي النظرة العامة</string>
+ <string name="revanced_sb_skip_button_preview_middle">تخطي النظرة العامة</string>
+ <string name="revanced_sb_skip_button_preview_end">تخطي الملخص</string>
+ <string name="revanced_sb_skip_button_filler">تخطي مقطع غير ذي صلة</string>
+ <string name="revanced_sb_skip_button_nomusic">تخطي غير الموسيقى</string>
+ <string name="revanced_sb_skip_button_unsubmitted">تخطي المقطع</string>
+ <string name="revanced_sb_skipped_sponsor">تم تخطي الراعي</string>
+ <string name="revanced_sb_skipped_selfpromo">تم تخطي الترويج الشخصي</string>
+ <string name="revanced_sb_skipped_interaction">تم تخطي التذكير بالتفاعل</string>
+ <string name="revanced_sb_skipped_highlight">تم التخطي لأبرز المشاهد</string>
+ <string name="revanced_sb_skipped_intro_beginning">تم تخطي المقدمة</string>
+ <string name="revanced_sb_skipped_intro_middle">تم تخطي الفاصل</string>
+ <string name="revanced_sb_skipped_intro_end">تم تخطي الفاصل</string>
+ <string name="revanced_sb_skipped_outro">تم تخطي الخاتمة</string>
+ <string name="revanced_sb_skipped_preview_beginning">تم تخطي النظرة العامة</string>
+ <string name="revanced_sb_skipped_preview_middle">تم تخطي النظرة العامة</string>
+ <string name="revanced_sb_skipped_preview_end">تم تخطي الملخص</string>
+ <string name="revanced_sb_skipped_filler">تم تخطي مقطع غير ذي صلة</string>
+ <string name="revanced_sb_skipped_nomusic">تم تخطي جزء غير موسيقي</string>
+ <string name="revanced_sb_skipped_unsubmitted">تم تخطي المقطع الغير المرسل</string>
+ <string name="revanced_sb_skipped_multiple_segments">تم تخطي عدة مقاطع</string>
+ <string name="revanced_sb_skip_automatically">التخطي تلقائيًا</string>
+ <string name="revanced_sb_skip_automatically_once">التخطي تلقائيًا مرة واحدة</string>
+ <string name="revanced_sb_skip_showbutton">عرض زر التخطي</string>
+ <string name="revanced_sb_skip_seekbaronly">عرض في شريط تقدم الفيديو</string>
+ <string name="revanced_sb_skip_ignore">تعطيل</string>
+ <string name="revanced_sb_submit_failed_invalid">غير قادر على إرسال المقطع: الحالة: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock متوقف مؤقتًا</string>
+ <string name="revanced_sb_submit_failed_unknown_error">غير قادر على إرسال المقطع (الحالة: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">لا يمكن إرسال المقطع.\n جارٍ الحد من معدل إرسالك (عدد كبير جدا من نفس المستخدم أو IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">لا يمكن إرسال المقطع: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">لا يمكن إرسال هذا المقطع.\nموجود بالفعل</string>
+ <string name="revanced_sb_submit_succeeded">تم إرسال المقطع بنجاح</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock غير متاح مؤقتًا (انتهت مهلة API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock غير متاح مؤقتًا (الحالة %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock غير متاح مؤقتًا</string>
+ <string name="revanced_sb_vote_failed_timeout">غير قادر على التصويت للمقطع (انتهت مهلة API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">غير قادر على التصويت للمقطع (الحالة: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">غير قادر على التصويت للمقطع: %s</string>
+ <string name="revanced_sb_vote_upvote">تأييد</string>
+ <string name="revanced_sb_vote_downvote">اعتراض</string>
+ <string name="revanced_sb_vote_category">تغيير الفئة</string>
+ <string name="revanced_sb_vote_no_segments">لا توجد مقاطع للتصويت عليها</string>
+ <string name="revanced_sb_new_segment_choose_category">اختيار فئة المقطع</string>
+ <string name="revanced_sb_new_segment_disabled_category">الفئة معطلة في الإعدادات. تمكين الفئة للإرسال.</string>
+ <string name="revanced_sb_new_segment_title">مقطع مانِع رُعَاة جديد</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">تعيين %1$02d:%2$02d:%3$03d كبداية أم نهاية لمقطع جديد؟</string>
+ <string name="revanced_sb_new_segment_mark_start">البداية</string>
+ <string name="revanced_sb_new_segment_mark_end">النهاية</string>
+ <string name="revanced_sb_new_segment_now">الآن</string>
+ <string name="revanced_sb_new_segment_time_start">الوقت الذي يبدأ عنده المقطع</string>
+ <string name="revanced_sb_new_segment_time_end">الوقت الذي ينتهي عنده المقطع</string>
+ <string name="revanced_sb_new_segment_confirm_title">هل الأوقات صحيحة؟</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">المقطع من\n\n%1$s\nto\n%2$s\n\n(%3$s)\n\nReady to جاهز للإرسال؟</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">يجب أن تكون البداية قبل النهاية</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">ضع علامة على موقعين في شريط الوقت أولًا</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">معاينة المقطع، والتأكد من تخطيه بسلاسة</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">تعديل توقيت المقطع يدويًا</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">هل تود تعديل التوقيت لبداية أو نهاية المقطع؟</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">الوقت المحدد غير صحيح</string>
+ <string name="revanced_sb_stats">إحصائيات</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">الإحصائيات غير متوفرة مؤقتًا (API معطل)</string>
+ <string name="revanced_sb_stats_loading">جارٍ التحميل...</string>
+ <string name="revanced_sb_stats_sb_disabled">تم تعطيل SponsorBlock</string>
+ <string name="revanced_sb_stats_username">اسم المستخدم الخاص بك: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">اضغط هنا لتغيير اسم المستخدم الخاص بك</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">غير قادر على تغيير اسم المستخدم: الحالة: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">تم تغيير اسم المستخدم بنجاح</string>
+ <string name="revanced_sb_stats_reputation">سمعتك هي <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">لقد أنشأت <b>%s</b> مقطع</string>
+ <string name="revanced_sb_stats_saved_zero">متصدرين SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">لقد قمت بحفظ الناس من <b>%s</b> مقطع</string>
+ <string name="revanced_sb_stats_saved_sum_zero">اضغط هنا لرؤية الإحصائيات العالمية وأبرز المساهمين</string>
+ <string name="revanced_sb_stats_saved_sum">هذا يساوي <b>%s</b> من حياتهم.<br>اضغط هنا لرؤية لوحة المتصدرين</string>
+ <string name="revanced_sb_stats_self_saved">لقد قمت بتخطي <b>%s</b> مقطع</string>
+ <string name="revanced_sb_stats_self_saved_sum">هذا يساوي <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">إعادة تعيين عداد المقاطع التي تم تخطيها؟</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s ساعة %2$s دقيقة</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s دقيقة %2$s ثانية</string>
+ <string name="revanced_sb_stats_saved_second_format">%s ثانية</string>
+ <string name="revanced_sb_color_dot_label">اللون:</string>
+ <string name="revanced_sb_color_changed">تم تغيير اللون</string>
+ <string name="revanced_sb_color_reset">إعادة ضبط اللون</string>
+ <string name="revanced_sb_color_invalid">رمز اللون غير صالح</string>
+ <string name="revanced_sb_reset_color">إعادة تعيين اللون</string>
+ <string name="revanced_sb_reset">إعادة التعيين</string>
+ <string name="revanced_sb_about">لمحة</string>
+ <string name="revanced_sb_about_api_sum">يتم توفير البيانات بواسطة SponsorBlock API. انقر هنا لمعرفة المزيد ومشاهدة التنزيلات لمنصات أخرى</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">خِداع إصدار التطبيق</string>
+ <string name="revanced_spoof_app_version_summary_on">تم تغيير اصدار التطبيق</string>
+ <string name="revanced_spoof_app_version_summary_off">لم يتم تغيير اصدار التطبيق</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">سيتم تغيير إصدار التطبيق إلى إصدار قديم من YouTube.\n\nسيؤدي هذا إلى تغيير مظهر ومميزات التطبيق، ولكن قد تحدث تأثيرات جانبية غير معروفة.\n\nإذا تم إيقاف تشغيله لاحقا، من المستحسن مسح بيانات التطبيق لمنع حدوث أخطاء في واجهة المستخدم.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">الهدف من تغيير إصدار التطبيق</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - استعادة RYD على Shorts بوضع التخفي</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - استعادة سرعة الفيديو الواسعة & قائمة الجودة</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - استعادة علامة تبويب المكتبة</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - استعادة رف قائمة التشغيل القديم</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.30.34 - استعادة تصميم واجهة المستخدم القديم</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">تعيين صفحة البداية</string>
+ <string name="revanced_start_page_entry_0">إفتراضي</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">الصفحة الرئيسية</string>
+ <string name="revanced_start_page_entry_2">البحث</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">الاشتراكات</string>
+ <string name="revanced_start_page_entry_4">استكشف</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">علامة التبويب أنت</string>
+ <string name="revanced_start_page_entry_7">الفيديوهات التي أعجبتني</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">السّجل</string>
+ <string name="revanced_start_page_entry_9">المحتوى الرائج</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">تعطيل استئناف مشغل Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">لن يتم استئناف تشغيل مشغل Shorts عند بدء تشغيل التطبيق</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">سيتم استئناف تشغيل مشغل Shorts عند بدء تشغيل التطبيق</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">تمكين تصميم الجهاز اللوحي</string>
+ <string name="revanced_tablet_layout_summary_on">تم تمكين تصميم الجهاز اللوحي</string>
+ <string name="revanced_tablet_layout_summary_off">تم تعطيل تصميم الجهاز اللوحي</string>
+ <string name="revanced_tablet_layout_user_dialog_message">لا تظهر منشورات المجتمع على تخطيطات الجهاز اللوحي</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">المشغل المصغر</string>
+ <string name="revanced_miniplayer_screen_summary">تغيير نمط المشغل المصغر داخل التطبيق</string>
+ <string name="revanced_miniplayer_type_title">نوع المشغل المصغر</string>
+ <string name="revanced_miniplayer_type_entry_1">الأصلي</string>
+ <string name="revanced_miniplayer_type_entry_2">الجوّال</string>
+ <string name="revanced_miniplayer_type_entry_3">الجهاز اللوحي</string>
+ <string name="revanced_miniplayer_type_entry_4">حديث 1</string>
+ <string name="revanced_miniplayer_type_entry_5">حديث 2</string>
+ <string name="revanced_miniplayer_type_entry_6">حديث 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">إخفاء أزرار التوسيع والإغلاق</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">تم إخفاء الأزرار\n(مرر المشغل المصغر للتوسع أو الإغلاق)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">يتم عرض أزرار التوسيع والإغلاق</string>
+ <string name="revanced_miniplayer_hide_subtext_title">إخفاء النصوص الفرعية</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">تم إخفاء النصوص الفرعية</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">يتم عرض النصوص الفرعية</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">إخفاء أزرار التخطي للأمام والخلف</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">تم إخفاء تخطي للأمام والخلف</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">يتم عرض تخطي للأمام والخلف</string>
+ <string name="revanced_miniplayer_opacity_title">شفافية الواجهة</string>
+ <string name="revanced_miniplayer_opacity_summary">قيمة الشفافية بين 0-100، حيث يكون 0 شفاف</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">شفافية واجهة المشغل المصغر يجب أن تكون بين 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">تمكين شاشة التحميل المتدرجة</string>
+ <string name="revanced_gradient_loading_screen_summary_on">ستحتوي شاشة التحميل على خلفية متدرجة</string>
+ <string name="revanced_gradient_loading_screen_summary_off">ستحتوي شاشة التحميل على خلفية ثابتة</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">تمكين لون شريط تقدم الفيديو المخصص</string>
+ <string name="revanced_seekbar_custom_color_summary_on">يتم عرض لون شريط تقدم الفيديو المخصص</string>
+ <string name="revanced_seekbar_custom_color_summary_off">يتم عرض لون شريط تقدم الفيديو الاصلي</string>
+ <string name="revanced_seekbar_custom_color_value_title">لون شريط تقدم الفيديو المخصص</string>
+ <string name="revanced_seekbar_custom_color_value_summary">لون شريط التقدم</string>
+ <string name="revanced_seekbar_custom_color_invalid">لون الشريط غير صالح. استخدام القيمة الافتراضية.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">علامة تبويب الصفحة الرئيسية</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">علامة التبويب الاشتراكات</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">علامة التبويب أنت</string>
+ <string name="revanced_alt_thumbnail_player_title">قوائم تشغيل المشغل، التوصيات</string>
+ <string name="revanced_alt_thumbnail_search_title">نتائج البحث</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">المصّغرات الأصلية</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & المصّغرات الأصلية</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & اللقطات الثابتة</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">اللقطات الثابتة</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">يوف DeArrow مصغرات فيديو من مصادر جماعية لفيديوهات YouTube. هذه المصغرات غالبا ما تكون أكثر صلة من تلك المقدمة من YouTube\n\nإذا تم تفعيلها، سيتم إرسال روابط الفيديو إلى خادم API ولن يتم إرسال أي بيانات أخرى. إذا كان الفيديو لا يحتوي على مصغرات DArrow ، سيتم عرض المقاطع الأصلية أو اللقطات الثابتة\n\nاضغط هنا لمعرفة المزيد عن DArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">عرض ملاحظة إذا كان API غير متاح</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">يتم عرض ملاحظة إذا كان DeArrow غير متوفر</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">لا يتم عرض ملاحظة إذا كان DeArrow غير متوفر</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">The URL of the DeArrow thumbnail cache endpointThe URL of the DeArrow thumbnail cache endpoint</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">لقطات الفيديو الثابتة</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">يتم التقاط اللقطات الثابتة من بداية/وسط/نهاية كل فيديو. هذه الصور مدمجة في YouTube ولا يتم استخدام أي واجهة برمجة تطبيقات خارجية</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">استخدم اللقطات الثابتة السريعة</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">استخدام اللقطات متوسطة الجودة. سيتم تحميل المُصغَّرات بشكل أسرع، ولكن البث المباشر و المقاطع التي لم يتم إصدارها أو القديمة جدًا قد تعرض مُصغَّرات فارغة</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">استخدام لقطات الفيديو الثابتة بجودة عالية</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">وقت الفيديو لأخذ اللقطات الثابتة منه</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">بداية الفيديو</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">منتصف الفيديو</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">نهاية الفيديو</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow غير متوفر مؤقتًا (رمز الحالة: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow غير متوفر مؤقتًا</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">عرض إعلانات ReVanced</string>
+ <string name="revanced_announcements_summary_on">يتم عرض الإعلانات عند بدء التشغيل</string>
+ <string name="revanced_announcements_summary_off">لا يتم عرض الإعلانات عند بدء التشغيل</string>
+ <string name="revanced_announcements_enabled_summary">عرض الإعلانات عند بدء التشغيل</string>
+ <string name="revanced_announcements_connection_failed">فشل الاتصال بموفر الإعلانات</string>
+ <string name="revanced_announcements_dialog_dismiss">تجاهل</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">تمكين التكرار التلقائي</string>
+ <string name="revanced_auto_repeat_summary_on">تم تمكين التكرار التلقائي</string>
+ <string name="revanced_auto_repeat_summary_off">تم تعطيل التكرار التلقائي</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">محاكاة أبعاد الجهاز</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">تم محاكاة أبعاد الجهاز\n\nقد يتم فتح قفل جودة الفيديو العالية ولكن قد تواجه تقطعًا في تشغيل الفيديو وعمر بطارية أسوأ وتأثيرات جانبية غير معروفة</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">أبعاد الجهاز غير محاكاة\n\nيمكن أن يؤدي تفعيل هذا إلى فتح جودة أعلى للفيديو</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">قد يؤدي تمكين هذا إلى تباطؤ تشغيل الفيديو وتدهور عمر البطارية وآثار جانبية غير معروفة.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">إعدادات GmsCore</string>
+ <string name="microg_settings_summary">إعدادات لـ GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">تجاوز إعادة توجيه URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">تم تجاوز إعادة توجيه عنوان URL</string>
+ <string name="revanced_bypass_url_redirects_summary_off">لم يتم تجاوز إعادة توجيه عنوان URL</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">فتح الروابط في المتصفح</string>
+ <string name="revanced_external_browser_summary_on">فتح الروابط خارجيًا</string>
+ <string name="revanced_external_browser_summary_off">فتح الروابط في التطبيق</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">التشغيل في الخلفية</string>
+ <string name="revanced_background_playback_summary">يمكن العثور على هذا الإعداد في الإعدادات -> الخلفية</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">إزالة معلمة تتبع الاستعلام</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">يتم إزالة معلمة استعلام التتبع من الروابط</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">لا يتم إزالة معلمة استعلام التتبع من الروابط</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">تعطيل الاهتزاز عند التكبير</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">تم تعطيل الاهتزاز</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">تم تمكين الاهتزاز</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">جودة تلقائية</string>
+ <string name="revanced_remember_video_quality_last_selected_title">تذكر تغييرات جودة الفيديو</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">تنطبق تغييرات الجودة على جميع مقاطع الفيديو</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">تنطبق تغييرات الجودة على الفيديو الحالي فقط</string>
+ <string name="revanced_video_quality_default_wifi_title">جودة الفيديو الافتراضية على شبكة Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">جودة الفيديو الافتراضية على شبكة الجوَّال</string>
+ <string name="revanced_remember_video_quality_mobile">الجوّال</string>
+ <string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
+ <string name="revanced_remember_video_quality_toast">تم تغيير جودة %1$s الافتراضية إلى: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">عرض زر مربع حوار السرعة</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">يتم عرض الزر</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">لا يتم عرض الزر</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">سرعة التشغيل المخصصة</string>
+ <string name="revanced_custom_playback_speeds_summary">إضافة أو تغيير سرعات التشغيل المتاحة</string>
+ <string name="revanced_custom_playback_speeds_invalid">يجب أن تكون السرعة المخصصة أقل من %s. باستخدام القيم الافتراضية.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">سرعة تشغيل مخصصة غير صالحة. استخدام القيم الافتراضية.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">تذكر التغيرات في سرعة التشغيل</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">تطبيق تغييرات سرعة التشغيل على جميع مقاطع الفيديو</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">تطبيق تغييرات سرعة التشغيل فقط على الفيديو الحالي</string>
+ <string name="revanced_playback_speed_default_title">سرعة التشغيل الافتراضية</string>
+ <string name="revanced_remember_playback_speed_toast">تغيير السرعة الافتراضية إلى: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">استعادة قائمة جودة الفيديو القديمة</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">يتم عرض قائمة جودة الفيديو القديمة</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">لا يتم عرض قائمة جودة الفيديو القديمة</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">تمكين Slide to Seek</string>
+ <string name="revanced_slide_to_seek_summary_on">تم تمكين Slide to Seek</string>
+ <string name="revanced_slide_to_seek_summary_off">تم تعطيل Slide to Seek</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof Client</string>
+ <string name="revanced_spoof_client_screen_summary">محاكاة العميل لمنع مشكلات التشغيل</string>
+ <string name="revanced_spoof_client_title">Spoof Client</string>
+ <string name="revanced_spoof_client_summary_on">يتم محاكاة العميل</string>
+ <string name="revanced_spoof_client_summary_off">لا يتم محاكاة العميل\n\nقد لا يعمل تشغيل الفيديو</string>
+ <string name="revanced_spoof_client_user_dialog_message">إيقاف تشغيل هذا الإعداد قد يسبب مشاكل في تشغيل الفيديو.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof Client to iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">تتم حاليًا محاكاة العميل إلى iOS\n\nالآثار الجانبية تشمل:\n• لا يوجد فيديو HDR\n• قد لا يعمل سجل المشاهدة\n• قد تكون جودة الفيديو الأعلى مفقودة\n• لا يمكن تشغيل البث المباشر كصوت فقط\n• البث المباشر غير متوفر على Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">تتم محاكاة العميل حاليًا إلى Android VR\n\nالآثار الجانبية تشمل:\n• لا يوجد فيديو HDR\n• فيديوهات الأطفال لا يتم تشغيلهم\n• مقاطع الفيديو المتوقفة يمكن أن تستأنف عشوائيا\n• جودة منخفضة لمصغرات شريط التقدم\n• زر التنزيل مخفي بشكل دائم\n• بطاقات نهاية الشاشة مخفية بشكل دائم</string>
+ <string name="revanced_spoof_client_storyboard_timeout">محاكاة مصغرات العميل غير متوفرة (انتهت مهلة API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">محاكاة مصغرات العميل غير متوفرة مؤقتًا: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">منع الإعلانات الصوتية</string>
+ <string name="revanced_block_audio_ads_summary_on">تم منع الإعلانات الصوتية</string>
+ <string name="revanced_block_audio_ads_summary_off">تم إلغاء منع الإعلانات الصوتية</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s غير متوفر. قد تظهر الإعلانات. حاول التبديل إلى خدمة منع إعلانات أخرى في الإعدادات.</string>
+ <string name="revanced_embedded_ads_service_failed">قام خادم %s بإرجاع خطأ. قد تظهر الإعلانات. حاول التبديل إلى خدمة منع إعلانات أخرى في الإعدادات.</string>
+ <string name="revanced_block_embedded_ads_title">منع إعلانات الفيديو المضمنة</string>
+ <string name="revanced_block_embedded_ads_entry_1">معطّل</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous Proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock Proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">منع إعلانات الفيديو</string>
+ <string name="revanced_block_video_ads_summary_on">تم منع إعلانات الفيديو</string>
+ <string name="revanced_block_video_ads_summary_off">تم إلغاء منع إعلانات الفيديو</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">تم حذف الرسالة</string>
+ <string name="revanced_show_deleted_messages_title">عرض الرسائل المحذوفة</string>
+ <string name="revanced_show_deleted_messages_entry_1">لا تعرض الرسائل المحذوفة</string>
+ <string name="revanced_show_deleted_messages_entry_2">إخفاء الرسائل المحذوفة داخل Spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">عرض الرسائل المحذوفة كنص مشطوب</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">الحصول على نقاط القناة تلقائيًا</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">يتم الحصول على نقاط القناة تلقائيًا</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">لا تتم المطالبة بنقاط القناة تلقائيًا</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">تمكين وضع تصحيح أخطاء Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">تم تمكين وضع تصحيح أخطاء Twitch (غير مستحسن)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">تم تعطيل وضع تصحيح أخطاء Twitch</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">إعدادات ReVanced</string>
+ <string name="revanced_ads_screen_title">الإعلانات</string>
+ <string name="revanced_ads_screen_summary">إعدادات حجب الإعلانات</string>
+ <string name="revanced_chat_screen_title">الدردشة</string>
+ <string name="revanced_chat_screen_summary">إعدادات الدردشة</string>
+ <string name="revanced_misc_screen_title">الخصائص المختلفة</string>
+ <string name="revanced_misc_screen_summary">إعدادات متنوعة</string>
+ <string name="revanced_general_category_title">الإعدادات العامة</string>
+ <string name="revanced_other_category_title">إعدادات أخرى</string>
+ <string name="revanced_client_ads_category_title">إعلانات جانب العميل</string>
+ <string name="revanced_surestream_ads_category_title">إعلانات surestream على جانب الخادم</string>
+ <string name="revanced_twitch_debug_title">تسجيل تصحيح الأخطاء</string>
+ <string name="revanced_twitch_debug_summary_on">تم تمكين تسجيلات تصحيح الأخطاء</string>
+ <string name="revanced_twitch_debug_summary_off">تم تعطيل تسجيلات تصحيح الأخطاء</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-as-rIN/strings.xml b/src/main/resources/addresources/values-as-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-as-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-az-rAZ/strings.xml b/src/main/resources/addresources/values-az-rAZ/strings.xml
new file mode 100644
index 0000000000..efb7a3a85e
--- /dev/null
+++ b/src/main/resources/addresources/values-az-rAZ/strings.xml
@@ -0,0 +1,1128 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Davam etmək istəyirsiniz?</string>
+ <string name="revanced_settings_reset">Sıfırla</string>
+ <string name="revanced_settings_restart_title">Təzələ və yenidən başlat</string>
+ <string name="revanced_settings_restart">Yenidən başlat</string>
+ <string name="revanced_settings_import">Daxilə köçür</string>
+ <string name="revanced_settings_import_copy">Kopyala</string>
+ <string name="revanced_settings_import_reset">ReVanced ayarları ilkin dəyərlərinə sıfırlandı</string>
+ <string name="revanced_settings_import_success">%d ayar daxilə köçürüldü</string>
+ <string name="revanced_settings_import_failure_parse">Uğursuz daxilə köçürmə: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore quraşdırılmayıb. Onu quraşdır.</string>
+ <string name="gms_core_dialog_title">Əməliyyat lazımdır</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore üçün arxaplanda işləmə icazəsi yoxdur.\n\nTelefonunuz üçün \"Tətbiqim bağlanılmasın\" bələdçisini izləyin və təlimatları MicroG quraşdırmasına tətbiq edin.\n\nTətbiqin işləməsi üçün bu tələb olunur.</string>
+ <string name="gms_core_dialog_open_website_text">Veb saytı aç</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Problemləri önləmək üçün MicroG GmsCore batareya optimallaşdırması sıradan çıxarılmalıdır.\n\nDavam düyməsinə toxunub batareya optimallaşdırmalarını sıradan çıxardın.</string>
+ <string name="gms_core_dialog_continue_text">Davam</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">ReVanced Patches <i>%s</i> versiyasını istifadə edirsiniz</string>
+ <string name="revanced_settings_about_links_dev_header">Qeyd</string>
+ <string name="revanced_settings_about_links_dev_body">Bu versiya, ön buraxılış olduğu üçün gözlənilməz problemlərlə üzləşə bilərsiniz</string>
+ <string name="revanced_settings_about_links_header">Rəsmi keçidlər</string>
+ <string name="revanced_pref_import_export_title">Daxilə/Xaricə köçür</string>
+ <string name="revanced_pref_import_export_summary">ReVanced ayarlarını daxilə/xaricə köçür</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Haqqında</string>
+ <string name="revanced_settings_screen_01_ads_title">Reklamlar</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternativ kiçik şəkillər</string>
+ <string name="revanced_settings_screen_03_feed_title">Lent</string>
+ <string name="revanced_settings_screen_04_player_title">Pleyer</string>
+ <string name="revanced_settings_screen_05_general_title">Ümumi düzüm</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Zaman çubuğu</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Sürüşdürmə kontrolları</string>
+ <string name="revanced_settings_screen_11_misc_title">Müxtəlif</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Sazlama</string>
+ <string name="revanced_debug_screen_summary">Sazlama seçimlərini aç/bağla</string>
+ <string name="revanced_debug_title">Sazlama jurnalı</string>
+ <string name="revanced_debug_summary_on">Sazlama jurnalı fəaldır</string>
+ <string name="revanced_debug_summary_off">Sazlama jurnalı sıradan çıxarılıb</string>
+ <string name="revanced_debug_protobuffer_title">Jurnal protokol buferi</string>
+ <string name="revanced_debug_protobuffer_summary_on">Sazlama jurnallarına protokol buferi daxildir</string>
+ <string name="revanced_debug_protobuffer_summary_off">Sazlama jurnallarına protokol buferi daxil deyil</string>
+ <string name="revanced_debug_stacktrace_title">Yığın izlərini jurnala yaz</string>
+ <string name="revanced_debug_stacktrace_summary_on">Sazlama jurnalına yığın izləri daxildir</string>
+ <string name="revanced_debug_stacktrace_summary_off">Sazlama jurnalına yığın izləri daxil deyil</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced xətasında tost bildiriş göstər</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Xəta baş verəndə göstər</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Xəta baş verəndə göstərmə</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Tost bildirişlərini söndürmək, bütün ReVanced xəta bildirişlərini gizlədir.\n\nGözlənilməz hallardan xəbərdar olmayacaqsınız.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Bəyən/abunə ol düymə parıltısını sıradan çıxart</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Bu düymələrə toxunduqda parlamayacaq</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Bu düymələrə toxunduqda parlayacaq</string>
+ <string name="revanced_hide_gray_separator_title">Boz ayırıcını gizlət</string>
+ <string name="revanced_hide_gray_separator_summary_on">Gizlidir</string>
+ <string name="revanced_hide_gray_separator_summary_off">Göstərilir</string>
+ <string name="revanced_hide_channel_watermark_title">Kanal filiqranını gizlət</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Gizlidir</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Göstərilir</string>
+ <string name="revanced_hide_horizontal_shelves_title">Üfüqi rəfləri gizlət</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Belə rəflər gizlidir:\n• Son xəbərlər\n• Baxmağa davam et\n• Daha çox kanal kəşf et\n• Alış-veirş\n• Yenidən bax</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Rəflər göstərilir</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">\'Qoşul\' düyməsini gizlət</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Göstərilir</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Kanal səhifəsində \'Sənin üçün\' bölməsini gizlət</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Gizlidir</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Göstərilir</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\'Mənə bildir\' düyməsini gizlət</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Göstərilir</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">\'İnsanların baxdıqları\' tövsiyələrini gizlət</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Gizlidir</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Göstərilir</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'Daha çox göstər\' düyməsini gizlət</string>
+ <string name="revanced_hide_show_more_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_show_more_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_timed_reactions_title">Vaxtlı reaksiyaları gizlət</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Gizlidir</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Göstərilir</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Axtarış nəticəsi rəf başlığını gizlət</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Gizlidir</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Göstərilir</string>
+ <string name="revanced_hide_channel_guidelines_title">Kanal təlimatlarını gizlət</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Gizlidir</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Göstərilir</string>
+ <string name="revanced_hide_expandable_chip_title">Videoların altında genişləndirilə bilən çipi gizlət</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Gizlidir</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Göstərilir</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Video keyfiyyət menyusu alt məlumatını gizlət</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Gizlidir</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Göstərilir</string>
+ <string name="revanced_hide_community_posts_title">İcma göndərişlərini gizlət</string>
+ <string name="revanced_hide_community_posts_summary_on">Gizlidir</string>
+ <string name="revanced_hide_community_posts_summary_off">Göstərilir</string>
+ <string name="revanced_hide_compact_banner_title">Yığcam bannerləri gizlət</string>
+ <string name="revanced_hide_compact_banner_summary_on">Gizlidir</string>
+ <string name="revanced_hide_compact_banner_summary_off">Göstərilir</string>
+ <string name="revanced_hide_movies_section_title">Filmlər bölməsini gizlət</string>
+ <string name="revanced_hide_movies_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_movies_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_feed_survey_title">Lent anketlərini gizlət</string>
+ <string name="revanced_hide_feed_survey_summary_on">Gizlidir</string>
+ <string name="revanced_hide_feed_survey_summary_off">Göstərilir</string>
+ <string name="revanced_hide_community_guidelines_title">İcma təlimatlarını gizlət</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Gizlidir</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Göstərilir</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Abunəlik icma qaydalarını gizlət</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Gizlidir</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Göstərilir</string>
+ <string name="revanced_hide_channel_member_shelf_title">Kanal üzvləri rəfini gizlət</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Gizlidir</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Göstərilir</string>
+ <string name="revanced_hide_emergency_box_title">Fövqəladə hal qutularını gizlət</string>
+ <string name="revanced_hide_emergency_box_summary_on">Gizlidir</string>
+ <string name="revanced_hide_emergency_box_summary_off">Göstərilir</string>
+ <string name="revanced_hide_info_panels_title">Məlumat panellərini gizlət</string>
+ <string name="revanced_hide_info_panels_summary_on">Gizlidir</string>
+ <string name="revanced_hide_info_panels_summary_off">Göstərilir</string>
+ <string name="revanced_hide_medical_panels_title">Tibbi panelləri gizlət</string>
+ <string name="revanced_hide_medical_panels_summary_on">Gizlidir</string>
+ <string name="revanced_hide_medical_panels_summary_off">Göstərilir</string>
+ <string name="revanced_hide_channel_bar_title">Kanal çubuğunu gizlət</string>
+ <string name="revanced_hide_channel_bar_summary_on">Gizlidir</string>
+ <string name="revanced_hide_channel_bar_summary_off">Göstərilir</string>
+ <string name="revanced_hide_playables_title">Oxudula bilən elementləri gizlət</string>
+ <string name="revanced_hide_playables_summary_on">Gizlidir</string>
+ <string name="revanced_hide_playables_summary_off">Göstərilir</string>
+ <string name="revanced_hide_quick_actions_title">Tam ekranda cəld fəaliyyətləri gizlət</string>
+ <string name="revanced_hide_quick_actions_summary_on">Gizlidir</string>
+ <string name="revanced_hide_quick_actions_summary_off">Göstərilir</string>
+ <string name="revanced_hide_related_videos_title">Cəld fəaliyyətlərdəki əlaqəli videoları gizlət</string>
+ <string name="revanced_hide_related_videos_summary_on">Gizlidir</string>
+ <string name="revanced_hide_related_videos_summary_off">Göstərilir</string>
+ <string name="revanced_hide_image_shelf_title">Axtarış nəticələrindəki təsvir rəfini gizlət</string>
+ <string name="revanced_hide_image_shelf_summary_on">Gizlidir</string>
+ <string name="revanced_hide_image_shelf_summary_off">Göstərilir</string>
+ <string name="revanced_hide_latest_posts_ads_title">Son göndərişləri gizlət</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Gizlidir</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Göstərilir</string>
+ <string name="revanced_hide_mix_playlists_title">Miks pleylistləri gizlət</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Gizlidir</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Göstərilir</string>
+ <string name="revanced_hide_artist_cards_title">Sənətçi kartlarını gizlət</string>
+ <string name="revanced_hide_artist_cards_summary_on">Gizlidir</string>
+ <string name="revanced_hide_artist_cards_summary_off">Göstərilir</string>
+ <string name="revanced_hide_chips_shelf_title">Çip rəfini gizlət</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Gizlidir</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Göstərilir</string>
+ <string name="revanced_hide_attributes_section_title">Atributlar bölməsini gizlət</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Önə çıxan məkanlar\', Oyunlar və Musiqi bölmələri gizlidir</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Önə çıxan məkanlar\', Oyunlar və Musiqi bölmələri göstərilir</string>
+ <string name="revanced_hide_chapters_section_title">Fəsillər bölməsini gizlət</string>
+ <string name="revanced_hide_chapters_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_chapters_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_podcast_section_title">\'Podkastı kəşf et\' bölməsini gizlət</string>
+ <string name="revanced_hide_podcast_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_podcast_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_info_cards_section_title">Məlumat kartları bölməsini gizlət</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_transcript_section_title">Transkript bölməsini gizlət</string>
+ <string name="revanced_hide_transcript_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_transcript_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_description_components_screen_title">Video açıqlaması</string>
+ <string name="revanced_hide_description_components_screen_summary">Video açıqlaması komponentlərini gizlət və ya göstər</string>
+ <string name="revanced_custom_filter_screen_title">Özəl filtr</string>
+ <string name="revanced_custom_filter_screen_summary">Özəl filtrlər ilə komponentləri gizlət</string>
+ <string name="revanced_custom_filter_title">Özəl filtri fəallaşdır</string>
+ <string name="revanced_custom_filter_summary_on">Özəl filtr fəaldır</string>
+ <string name="revanced_custom_filter_summary_off">Özəl filtr sıradan çıxarılıb</string>
+ <string name="revanced_custom_filter_strings_title">Özəl filtr</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_toast_invalid_syntax">Yararsız özəl filtr: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Açar söz məzmununu gizlət</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Açar söz filtrləri ilə axtarış və lent videolarını gizlət</string>
+ <string name="revanced_hide_keyword_content_home_title">Əsas ekran videolarını açar sözlərə görə gizlət</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Ev vərəqindəki videolar açar sözlərlə filtrlənir</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Ev vərəqindəki videolar açar sözlərlə filtrlənmir</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Abunəlik videolarını açar sözlərlə gizlət</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Abunəliklər vərəqindəki vərəqindəki açar sözlərlə filtrlənir</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Abunəliklər vərəqindəki vərəqindəki açar sözlərlə filtrlənmir</string>
+ <string name="revanced_hide_keyword_content_search_title">Axtarış nəticələrini açar sözlərlə gizlət</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Filtrlənir</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Filtrlənmir</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Gizlədiləcək açar sözlər</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_about_title">Açar sözlə filtrləmə haqqında</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Yararsız açar sözü. \'%s\' istifadə edilə bilməz</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Yararsız açar sözü. \'%1$s\', %2$d simvoldan azdır</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">\'$s\' açar sözü, bütün videolardan gizlədiləcək</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ümumi reklamları gizlət</string>
+ <string name="revanced_hide_general_ads_summary_on">Gizlidir</string>
+ <string name="revanced_hide_general_ads_summary_off">Göstərilir</string>
+ <string name="revanced_hide_fullscreen_ads_title">Tam ekran reklamlarını gizlət</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Tam ekran reklamları gizlidir\n\nBu özəllik yalnız köhnə cihazlar üçün əlçatandır</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Göstərilir</string>
+ <string name="revanced_hide_buttoned_ads_title">Düyməli reklamları gizlət</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Gizlidir</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Göstərilir</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ödənişli tanıtım etiketini gizlət</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Gizlidir</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Göstərilir</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Öz-sponsorlu kartları gizlət</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Gizlidir</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Göstərilir</string>
+ <string name="revanced_hide_products_banner_title">Məhsullara baxma bannerini gizlət</string>
+ <string name="revanced_hide_products_banner_summary_on">Gizlidir</string>
+ <string name="revanced_hide_products_banner_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shopping_links_title">Video açıqlamasındakı alış-veriş keçidlərini gizlət</string>
+ <string name="revanced_hide_shopping_links_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shopping_links_summary_off">Göstərilir</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Kanal səhifəsində \"Mağazanı ziyarət et\" düyməsini gizlət</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Düymə gizlidir</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Düymə göstərilir</string>
+ <string name="revanced_hide_web_search_results_title">Veb axtarış nəticələrini gizlət</string>
+ <string name="revanced_hide_web_search_results_summary_on">Gizlidir</string>
+ <string name="revanced_hide_web_search_results_summary_off">Göstərilir</string>
+ <string name="revanced_hide_merchandise_banners_title">Satılıq əşya bannerlərini gizlət</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Gizlidir</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Göstərilir</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Tam ekran reklamları gizlətmə yalnız köhnə cihazlarda işləyir</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube Premium tanıtımlarını gizlət</string>
+ <string name="revanced_hide_get_premium_summary_on">Video pleyerin altındakı YouTube Premium tanıtımları gizlidir</string>
+ <string name="revanced_hide_get_premium_summary_off">Video pleyerin altındakı YouTube Premium tanıtımları göstərilir</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Video reklamlarını gizlət</string>
+ <string name="revanced_hide_video_ads_summary_on">Gizlidir</string>
+ <string name="revanced_hide_video_ads_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL lövhəyə kopyalandı</string>
+ <string name="revanced_share_copy_url_timestamp_success">Vaxt möhürlü URL kopyalandı</string>
+ <string name="revanced_copy_video_url_title">Video URL-sini kopyalama düyməsini göstər</string>
+ <string name="revanced_copy_video_url_summary_off">Göstərilmir</string>
+ <string name="revanced_copy_video_url_timestamp_title">Vaxt möhürlü URL-ni kopyalama düyməsini göstər</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Göstərilmir</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">İzləyici mülahizə dialoqunu sil</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialoq silindi</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialoq göstərilir</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Bu, yaş məhdudiyyətini ötürmür. Sadəcə avtomatik qəbul edir.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Xarici endirmələr</string>
+ <string name="revanced_external_downloader_screen_summary">Xarici endirici üçün istifadə ayarları</string>
+ <string name="revanced_external_downloader_title">Xarici endirmə düyməsini göstər</string>
+ <string name="revanced_external_downloader_summary_on">Endirmə düyməsi pleyerdə göstərilir</string>
+ <string name="revanced_external_downloader_summary_off">Endirmə düyməsi pleyerdə göstərilmir</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Endirmə fəaliyyəti düyməsini yararsız et</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Endirmə düyməsi, xarici endiricini açır</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Endirmə düyməsi daxili endiricini açır</string>
+ <string name="revanced_external_downloader_name_title">Endirici paket adı</string>
+ <string name="revanced_external_downloader_name_summary">NewPipe və ya NewPipe kimi quraşdırılmış xarici endirmə tətbiqinizin paket adı</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s quraşdırılmayıb. Lütfən quraşdırın.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Həssas (irəli/geri) çəkmə jestini sıradan çıxart</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Sıradan çıxarılıb</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Fəaldır</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Zaman çubuğuna toxunmanı fəallaşdır</string>
+ <string name="revanced_seekbar_tapping_summary_on">Fəaldır</string>
+ <string name="revanced_seekbar_tapping_summary_off">Sıradan çıxarılıb</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Parlaqlıq jestini fəallaşdır</string>
+ <string name="revanced_swipe_brightness_summary_on">Fəaldır</string>
+ <string name="revanced_swipe_brightness_summary_off">Sıradan çıxarılıb</string>
+ <string name="revanced_swipe_volume_title">Səs səviyyəsi jestini fəallaşdır</string>
+ <string name="revanced_swipe_volume_summary_on">Fəaldır</string>
+ <string name="revanced_swipe_volume_summary_off">Sıradan çıxarılıb</string>
+ <string name="revanced_swipe_press_to_engage_title">Basıb sürüşdürmə jestini fəallaşdır</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Fəaldır</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Sıradan çıxarılıb</string>
+ <string name="revanced_swipe_haptic_feedback_title">Toxunuşlu əks-əlaqəni fəallaşdır</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Fəaldır</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Sıradan çıxarılıb</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Parlaqlığı saxla və bərpa et</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Tam ekrana keçərkən və ya tam ekrandan çıxarkən parlaqlığı saxla və bərpa et</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Tam ekrana keçərkən və ya tam ekrandan çıxarkən parlaqlığı saxlama və bərpa etmə</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Avto-parlaqlıq jestini fəallaşdır</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Parlaqlığı ən aşağı dəyərə sürüşdürəndə avto-parlaqlıq fəallaşır</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Parlaqlığı ən aşağı dəyərə sürüşdürəndə avto-parlaqlıq fəallaşmır</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Avto</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Sürüşdürmə arxaplan şəffaflığı</string>
+ <string name="revanced_swipe_threshold_title">Sürüşdürmə böyüklük həddi</string>
+ <string name="revanced_swipe_threshold_summary">\"Sürüşdürmə\"ni icra etmək üçün hədd miqdarı</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Avtomatik altyazıları sıradan çıxart</string>
+ <string name="revanced_auto_captions_summary_on">Sıradan çıxarılıb</string>
+ <string name="revanced_auto_captions_summary_off">Fəaldır</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Fəaliyyət düymələri</string>
+ <string name="revanced_hide_buttons_screen_summary">Videonun altındakı düymələri gizlət və ya göstər</string>
+ <string name="revanced_hide_like_dislike_button_title">\"Bəyənmə\" və \"Bəyənməmə\"ni gizlət</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Göstərilir</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">\"Paylaş\"ı gizlət</string>
+ <string name="revanced_hide_share_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_share_button_summary_off">Göstərilir</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">\"Bildir\"i gizlət</string>
+ <string name="revanced_hide_report_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_report_button_summary_off">Göstərilir</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">\"Remiks\"i gizlət</string>
+ <string name="revanced_hide_remix_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_remix_button_summary_off">Göstərilir</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">\"Endir\"i gizlət</string>
+ <string name="revanced_hide_download_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_download_button_summary_off">Göstərilir</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">\"Təşəkkürlər\"i gizlət</string>
+ <string name="revanced_hide_thanks_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_thanks_button_summary_off">Göstərilir</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Klipi gizlət</string>
+ <string name="revanced_hide_clip_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_clip_button_summary_off">Göstərilir</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">\"Pleylistdə saxla\"nı gizlət</string>
+ <string name="revanced_hide_playlist_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_playlist_button_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Avto-oxut düyməsini gizlət</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Altyazılar düyməsini gizlət</string>
+ <string name="revanced_hide_captions_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_captions_button_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Yayımla düyməsini gizlət</string>
+ <string name="revanced_hide_cast_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_cast_button_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Naviqasiya düymələri</string>
+ <string name="revanced_navigation_buttons_screen_summary">Naviqasiya çubuğundakı düymələri gizlət və ya dəyişdir</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">\"Ev\"i gizlət</string>
+ <string name="revanced_hide_home_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_home_button_summary_off">Göstərilir</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">\"Shorts\"u gizlət</string>
+ <string name="revanced_hide_shorts_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_button_summary_off">Göstərilir</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">\"Yarat\"ı gizlət</string>
+ <string name="revanced_hide_create_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_create_button_summary_off">Göstərilir</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">\"Abunəliklər\"i gizlət</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Göstərilir</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">\"Yarat\"ı \"Bildirişlər\" ilə dəyişdir</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">\"Yarat\" düyməsi, \"Bildirişlər\" düyməsi ilə dəyişdirilmədi</string>
+ <string name="revanced_hide_navigation_button_labels_title">Naviqasiya düymə etiketlərini gizlət</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Gizlidir</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Açılan menyu</string>
+ <string name="revanced_hide_player_flyout_summary">Pleyer açılan menyu elementlərini gizlət və ya göstər</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">\"Altyazılar\"ı gizlət</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Göstərilir</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Əlavə ayarları gizlət</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Göstərilir</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">\"Videonu dövr etdir\"i gizlət</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Göstərilir</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ambient rejimini gizlət</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Göstərilir</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">\"Kömək və əks-əlaqə\"ni gizlət</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Göstərilir</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">\"Oxutma sürəti\"ni gizlət</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Göstərilir</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">\"Daha çox məlumat\"ı gizlət</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Göstərilir</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Kilid ekranını gizlət</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Göstərilir</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Səs trekini gizlət</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Göstərilir</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">\"VR-da Bax\"ı gizlət</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Əvvəlki və növbəti video düymələrini gizlət</string>
+ <string name="revanced_hide_player_buttons_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_buttons_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Albom kartlarını gizlət</string>
+ <string name="revanced_hide_album_cards_summary_on">Gizlidir</string>
+ <string name="revanced_hide_album_cards_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Rəylər</string>
+ <string name="revanced_comments_screen_summary">Rəylər bölməsi komponentlərini gizlət və ya göstər</string>
+ <string name="revanced_hide_comments_by_members_header_title">\'Üzvlərin rəyləri\' başlığını gizlət</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Gizlidir</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Göstərilir</string>
+ <string name="revanced_hide_comments_section_title">Rəy bölməsini gizlət</string>
+ <string name="revanced_hide_comments_section_summary_on">Gizlidir</string>
+ <string name="revanced_hide_comments_section_summary_off">Göstərilir</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">\'Bir Short yarat\' düyməsini gizlət</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_comments_preview_comment_title">Önizləmə rəyini gizlət</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Gizlidir</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Göstərilir</string>
+ <string name="revanced_hide_comments_thanks_button_title">Təşəkkürlər düyməsini gizlət</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">İanə qutusunu gizlət</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Gizlidir</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Son ekran kartlarını gizlət</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Gizlidir</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filtr çubuğu</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Lentdə, axtarışda və əlaqəli videolardakı filtr çubuğunu gizlət və ya göstər</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Lentdə gizlət</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Lentdə gizlidir</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Lentdə görünür</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Axtarışda gizlət</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Axtarışda gizlidir</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Axtarışda görünür</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Əlaqəli videolarda gizlət</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Əlaqəli videolarda gizlidir</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Əlaqəli videolarda görünür</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Üzən mikrofon düyməsini gizlət</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofon düyməsi gizlidir</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofon düyməsi görünür</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Tam ekranda ambient rejimini sıradan çıxart</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Sıradan çıxarıldı</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Fəaldır</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Məlumat kartlarını gizlət</string>
+ <string name="revanced_hide_info_cards_summary_on">Gizlidir</string>
+ <string name="revanced_hide_info_cards_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Sürüşən rəqəm animasiyalarını sıradan çıxart</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Sürüşən say animasiyası bağlıdır</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Sürüşən say animasiyası açıqdır</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Video pleyerdə zaman çubuğunu gizlət</string>
+ <string name="revanced_hide_seekbar_summary_on">Gizlidir</string>
+ <string name="revanced_hide_seekbar_summary_off">Göstərilir</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Vide kiçik şəkillərində zaman çubuğunu gizlət</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Gizlidir</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ev lentində \"Shorts\"u gizlət</string>
+ <string name="revanced_hide_shorts_home_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_home_summary_off">Göstərilir</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Abunəlik lentində \"Shorts\"u gizlət</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_search_title">Axtarış nəticələrindəki \"Shorts\"u gizlət</string>
+ <string name="revanced_hide_shorts_search_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_search_summary_off">Göstərilir</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Qoşul düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Göstərilir</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Abunə ol düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Fasilə vermə qat düymələrini gizlət</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_shop_button_title">Mağaza düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Super təşəkkürlər düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Etiketlənmiş məhsulları gizlət</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_location_label_title">Yerləşmə etiketini gizlət</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Səsi pleylistdə saxlama düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Axtarış təkliflərini gizlət</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_like_button_title">\"Bəyən\" düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_dislike_button_title">\"Bəyənməmə\" düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_comments_button_title">\"Rəylər\" düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Göstərilir</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Remix düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Göstərilir</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Paylaş düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_info_panel_title">Məlumat panelini gizlət</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Kanal çubuğunu gizlət</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_video_title_title">Video başlığını gizlət</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Səs metadata etiketini gizlət</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Tam video keçid etiketini gizlət</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_sound_button_title">Səs düyməsini gizlət</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Göstərilir</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Naviqasiya çubuğunu gizlət</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Gizlidir</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Təklif edilən video bitiş ekranını sıradan çıxart</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Sıradan çıxarılıb</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Video vaxt möhürünü gizlət</string>
+ <string name="revanced_hide_timestamp_summary_on">Gizlidir</string>
+ <string name="revanced_hide_timestamp_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Pleyer açılan pəncərə panellərini gizlət</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Gizlidir</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Gizli</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">\"Bəyənməmə\" müvəqqəti işləmir (API vaxtı bitdi)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Bəyənməmə mövcud deyil (status %d)</string>
+ <string name="revanced_ryd_failure_generic">Bəyənməmə mövcud deyil (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike ilə səs vermək üçün yenidən yüklə</string>
+ <string name="revanced_ryd_enable_summary_on">Göstərilir</string>
+ <string name="revanced_ryd_enable_summary_off">Göstərilmir</string>
+ <string name="revanced_ryd_shorts_title">\"Shorts\"da bəyənməmə sayını göstər</string>
+ <string name="revanced_ryd_shorts_summary_on">Bəyənməmə sayı \"Shorts\"da göstərilir</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">\"Bəyənməmə\"lər \"Shorts\"da göstərilir\n\nMəhdudiyyət: \"Bəyənməmə\"lər gizli rejimdə görünməyə bilər</string>
+ <string name="revanced_ryd_shorts_summary_off">\"Bəyənməmə\"lər \"Shorts\"da gizlidir</string>
+ <string name="revanced_ryd_dislike_percentage_title">\"Bəyənməmə\"lər faiz olaraq</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">\"Bəyənməmə\"lər faiz olaraq göstərilir</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">\"Bəyənməmə\"lər sayla göstərilir</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Yığcam bəyən düyməsi</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Minimum en üçün tərtib edilmiş Bəyən düyməsi</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Ən yaxşı görünüş üçün tərtib edilmiş Bəyən düyməsi</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">API əlçatan deyilsə bir tost bildirişi göstər</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Return YouTube Dislike əlçatan deyilsə bir tost bildirişi göstər</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Return YouTube Dislike əlçatan deyilsə bir tost bildirişi göstərmə</string>
+ <string name="revanced_ryd_about">Haqqında</string>
+ <string name="revanced_ryd_attribution_summary">Data, Return YouTube Dislike API tərəfindən təmin edilir. Ətraflı öyrənmək üçün bura toxunun</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Bu cihazın ReturnYouTubeDislike API statistikaları</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Ortalama API cavab vaxtı</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Minimum API cavab vaxtı</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Maksimum API cavab vaxtı</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Son video üzrə API cavab vaxtı</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">\"Bəyənməmə\"lər müvəqqəti olaraq əlçatmazdır - Client API limiti var</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API gələn səs, çağırış sayı</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Heç bir şəbəkə zəngi edilmədi</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d şəbəkə zəngi edildi</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API gələn səs, vaxt bitmə sayı</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Heç bir şəbəkə zəngi üçün vaxt bitmədi</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d şəbəkə zəngi üçün vaxt bitdi</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API client rate limits</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Heç bir limit olmadı</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Client rate limit, %d dəfə oldu</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisaniyə</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Geniş axtarış çubuğunu fəallaşdır</string>
+ <string name="revanced_wide_searchbar_summary_on">Fəaldır</string>
+ <string name="revanced_wide_searchbar_summary_off">Sıradan çıxarılıb</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Köhnə zaman çubuğu kiçik şəkillərini bərpa et</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">\"SponsorBlock\"u fəallaşdır</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock, YouTube videolarının zəhlətökən hissələrini ötürmək üçün kütlə mənbəli bir sistemdir</string>
+ <string name="revanced_sb_appearance_category">Görünüş</string>
+ <string name="revanced_sb_enable_voting">Səsvermə düyməsini göstər</string>
+ <string name="revanced_sb_enable_voting_sum_on">Göstərilir</string>
+ <string name="revanced_sb_enable_voting_sum_off">Göstərilmir</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Yığcam ötürmə düyməsini istifadə et</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Minimum en üçün hazırlanmış ötürmə düyməsi</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Ən yaxşı görünüş üçün hazırlanmış ötürmə düyməsi</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ötürmə düyməsini avto-gizlət</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Ötürmə düyməsi bir neçə saniyə sonra gizlənir</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Bütün seqment üçün göstərilən ötürmə düyməsi</string>
+ <string name="revanced_sb_general_skiptoast">Avto-ötürüləndə bir bildiriş göstər</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Seqment avto-ötürüləndə bildiriş göstərilir. Nümunəni görmək üçün bura toxunun</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Bildiriş göstərilmir. Nümunəni görmək üçün bura toxunun</string>
+ <string name="revanced_sb_general_time_without">Seqment olmadan video uzunluğunu göstər</string>
+ <string name="revanced_sb_general_time_without_sum_on">Video uzunluğu çıxılsın bütün seqmentlər, tam video uzunluğunun yanında mötərizədə göstərilir</string>
+ <string name="revanced_sb_general_time_without_sum_off">Tam video uzunluğu göstərilir</string>
+ <string name="revanced_sb_create_segment_category">Yeni seqmentlər yaradılır</string>
+ <string name="revanced_sb_enable_create_segment">Yeni seqment yarat düyməsini göstər</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Göstərilir</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Göstərilmir</string>
+ <string name="revanced_sb_general_adjusting">Yeni seqment addımını tənzimlə</string>
+ <string name="revanced_sb_general_adjusting_sum">Yeni seqment yaradarkən vaxt tənzimləmə düymələrinin hərəkət etdiyi milli saniyə sayı</string>
+ <string name="revanced_sb_general_adjusting_invalid">Dəyər, müsbət bir ədəd olmalıdır</string>
+ <string name="revanced_sb_guidelines_preference_title">Təlimatlara bax</string>
+ <string name="revanced_sb_guidelines_preference_sum">Təlimatlar, yeni seqmentlərin yaradılması üçün qaydalar və məsləhətlər ehtiva edir</string>
+ <string name="revanced_sb_guidelines_popup_title">Təlimatları izləyin</string>
+ <string name="revanced_sb_guidelines_popup_content">Yeni seqmentləri yaratmazdan əvvəl SponsorBlock təlimatlarını oxuyun</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Artıq oxudum</string>
+ <string name="revanced_sb_guidelines_popup_open">Göstәr</string>
+ <string name="revanced_sb_general">Ümumi</string>
+ <string name="revanced_sb_toast_on_connection_error_title">API əlçatan deyilsə bir tost bildirişi göstər</string>
+ <string name="revanced_sb_general_skipcount">Ötürmə sayının izlənməsini fəallaşdır</string>
+ <string name="revanced_sb_general_skipcount_sum_on">SponsorBlock liderlik lövhəsinin nə qədər vaxta qənaət edildiyini bilməsinə icazə verir. Bir seqmenti hər ötürəndə liderlik lövhəsinə bir mesaj göndərilir</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Ötürmə sayının izlənməsi fəal deyil</string>
+ <string name="revanced_sb_general_min_duration">Minimum seqment müddəti</string>
+ <string name="revanced_sb_general_min_duration_sum">Bu dəyərdən (saniyə olaraq) daha qısa olan seqmentlər göstərilməyəcək və ya ötürülməyəcək</string>
+ <string name="revanced_sb_general_uuid">Şəxsi istifadəçi kimliyiniz</string>
+ <string name="revanced_sb_general_uuid_sum">Bu gizli saxlanılmalıdır. Bu, parol kimidir və heç kimlə paylaşılmamalıdır. Əgər kimsə buna sahibdirsə, o, sizi təqlid edə bilər</string>
+ <string name="revanced_sb_general_api_url">API URL-ni dəyişdirin</string>
+ <string name="revanced_sb_api_url_reset">API URL sıfırlaması</string>
+ <string name="revanced_sb_api_url_invalid">API URL yararsızdır</string>
+ <string name="revanced_sb_api_url_changed">API URL dəyişdirildi</string>
+ <string name="revanced_sb_settings_ie">Daxilə/Xaricə köçürmə ayarları</string>
+ <string name="revanced_sb_settings_copy">Kopyala</string>
+ <string name="revanced_sb_settings_import_successful">Ayarlar uğurla daxilə köçürüldü</string>
+ <string name="revanced_sb_settings_import_failed">%s daxilə köçürülmədi</string>
+ <string name="revanced_sb_settings_export_failed">%s xaricə köçürülmədi</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ayarlarınız şəxsi bir SponsorBlock istifadəçi kimliyi ehtiva edir.\n\nİstifadəçi kimliyiniz sanki bir paroldur və heç kimlə paylaşılmamalıdır.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Təkrar göstərmə</string>
+ <string name="revanced_sb_diff_segments">Seqment davranışını dəyişdir</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Ödənişli tanıtım, ödənişli yönləndirmələr və birbaşa reklamlar. Öz-tanıtım və ya bəyəndikləri səbəblərə/yaradıcılara/veb saytlara/məhsullara ödənişsiz çağırışlar etmək üçün deyil</string>
+ <string name="revanced_sb_segments_selfpromo">Ödənişsiz/Öz-tanıtım</string>
+ <string name="revanced_sb_segments_interaction">Qarşılıqlı əlaqə xatırlatma (Abunə ol)</string>
+ <string name="revanced_sb_segments_interaction_sum">Məzmunun ortasında onları bəyənməyiniz, izləməyiniz və ya onlara abunə olmağınız üçün qısa bir xatırlatma. Əgər uzundursa və ya konkret bir şey haqqındadırsa, bunun əvəzinə öz-tanıtım altında olmalıdır</string>
+ <string name="revanced_sb_segments_highlight">Vurğulama</string>
+ <string name="revanced_sb_segments_highlight_sum">Videonun əksər insanlar tərəfindən axtarılan hissəsi</string>
+ <string name="revanced_sb_segments_intro">Fasilə/Giriş Animasiyası</string>
+ <string name="revanced_sb_segments_intro_sum">Həqiqi bir məzmunu olmayan bir aralıq. Bir fasilə, statik kadr və ya təkrarlanan animasiya ola bilər. Məlumat ehtiva edən keçidlər daxil deyil</string>
+ <string name="revanced_sb_segments_outro">Bitiş kartları/Jenerik</string>
+ <string name="revanced_sb_segments_outro_sum">Kreditlər və ya YouTube bitiş kartları görünəndə. Məlumat daxil olan nəticələr üçün deyil</string>
+ <string name="revanced_sb_segments_preview">Önizləmə/İcmal</string>
+ <string name="revanced_sb_segments_preview_sum">Videoda və ya bir serialın digər videolarında nələrin gözləndiyini və ya baş verdiyini göstərən, bütün məlumatların başqa bir yerdə təkrarlandığı kliplər kolleksiyası</string>
+ <string name="revanced_sb_segments_filler">Əlaqəsiz/Zarafatlar</string>
+ <string name="revanced_sb_segments_filler_sum">Videonun əsas məzmununu başa düşmək üçün tələb olunmayan yalnız doldurucu və ya yumor üçün əlavə edilmiş tangensial səhnələr. Kontekst və ya arxaplan detallarını təqdim edən seqmentlər daxil deyil</string>
+ <string name="revanced_sb_segments_nomusic">Musiqi: Musiqi olmayan bölmə</string>
+ <string name="revanced_sb_skip_button_compact">Ötür</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Vurğulama</string>
+ <string name="revanced_sb_skip_button_sponsor">Sponsoru ötür</string>
+ <string name="revanced_sb_skip_button_selfpromo">Tanıtımı ötür</string>
+ <string name="revanced_sb_skip_button_interaction">İnteraksiyanı ötür</string>
+ <string name="revanced_sb_skip_button_highlight">Vurğulanana keç</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Girişi ötür</string>
+ <string name="revanced_sb_skip_button_intro_middle">Aranı ötür</string>
+ <string name="revanced_sb_skip_button_intro_end">Aranı ötür</string>
+ <string name="revanced_sb_skip_button_outro">Bitişi ötür</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Önizləməni ötür</string>
+ <string name="revanced_sb_skip_button_preview_middle">Önizləməni ötür</string>
+ <string name="revanced_sb_skip_button_preview_end">İcmalı ötür</string>
+ <string name="revanced_sb_skip_button_filler">Doldurucu hissəni ötür</string>
+ <string name="revanced_sb_skip_button_nomusic">Musiqi olmayan hissəni ötür</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Seqmenti ötür</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor ötürüldü</string>
+ <string name="revanced_sb_skipped_selfpromo">Öz tanıtım ötürüldü</string>
+ <string name="revanced_sb_skipped_interaction">Cansıxıcı xatırlatma ötürüldü</string>
+ <string name="revanced_sb_skipped_highlight">Vurğulanan hissəyə keçdi</string>
+ <string name="revanced_sb_skipped_intro_beginning">Giriş ötürüldü</string>
+ <string name="revanced_sb_skipped_intro_middle">Ara hissə ötürüldü</string>
+ <string name="revanced_sb_skipped_intro_end">Ara hissə ötürüldü</string>
+ <string name="revanced_sb_skipped_outro">Bitiş ötürüldü</string>
+ <string name="revanced_sb_skipped_preview_beginning">Önizləmə ötürüldü</string>
+ <string name="revanced_sb_skipped_preview_middle">Önizləmə ötürüldü</string>
+ <string name="revanced_sb_skipped_preview_end">İcmal ötürüldü</string>
+ <string name="revanced_sb_skipped_filler">Doldurucu hissə ötürüldü</string>
+ <string name="revanced_sb_skipped_nomusic">Musiqi olmayan hissə ötürüldü</string>
+ <string name="revanced_sb_skipped_unsubmitted">Göndərilməmiş seqment ötürüldü</string>
+ <string name="revanced_sb_skipped_multiple_segments">Çoxlu seqmentlər ötürüldü</string>
+ <string name="revanced_sb_skip_automatically">Avto-ötür</string>
+ <string name="revanced_sb_skip_automatically_once">Təksəfərlik avto-ötür</string>
+ <string name="revanced_sb_skip_showbutton">Ötürmə düyməsini göstər</string>
+ <string name="revanced_sb_skip_seekbaronly">Zaman çubuğunda göstər</string>
+ <string name="revanced_sb_skip_ignore">Sıradan çıxart</string>
+ <string name="revanced_sb_submit_failed_invalid">Seqment göndərilə bilmir: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock, müvəqqəti olaraq çöküb</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Seqment göndərilə bilmir (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Seqment göndərilə bilmir.\nRate Limited (eyni istifadəçi və ya IP-dən həddindən çox)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Seqment göndərilə bilmir: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Seqment göndərilə bilmir.\nArtıq var</string>
+ <string name="revanced_sb_submit_succeeded">Seqment uğurla göndərildi</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock müvəqqəti əlçatmazdır (API vaxtı bitdi)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock müvəqqəti olaraq əlçatan deyil (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock müvəqqəti olaraq əlçatan deyil</string>
+ <string name="revanced_sb_vote_failed_timeout">Seqment üçün səs verilə bilmir (API vaxtı bitdi)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Seqment üçün səs verilə bilmir (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Seqment üçün səs verilə bilmir: %s</string>
+ <string name="revanced_sb_vote_upvote">Müsbət səs</string>
+ <string name="revanced_sb_vote_downvote">Mənfi səs</string>
+ <string name="revanced_sb_vote_category">Kateqoriyanı dəyişdir</string>
+ <string name="revanced_sb_vote_no_segments">Səs veriləcək seqment yoxdur</string>
+ <string name="revanced_sb_new_segment_choose_category">Seqment kateqoriyasını seçin</string>
+ <string name="revanced_sb_new_segment_disabled_category">Ayarlarda kateqoriya sıradan çıxarıldı. Göndərmək üçün kateqoriyanı fəallaşdırın.</string>
+ <string name="revanced_sb_new_segment_title">Yeni SponsorBlock seqmenti</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">%1$02d:%2$02d:%3$03d yeni seqmentin başlanğıcı və ya sonu olaraq ayarlansın?</string>
+ <string name="revanced_sb_new_segment_mark_start">başlanğıc</string>
+ <string name="revanced_sb_new_segment_mark_end">bitiş</string>
+ <string name="revanced_sb_new_segment_now">indi</string>
+ <string name="revanced_sb_new_segment_time_start">Seqmentin başladığı vaxt</string>
+ <string name="revanced_sb_new_segment_time_end">Seqmentin bitmə vaxtı</string>
+ <string name="revanced_sb_new_segment_confirm_title">Vaxtlar düzgündür?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_start_is_before_end">Başlanğıc, bitişdən əvvəl olmalıdır</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Əvvəlcə vaxt çubuğunda iki yeri qeyd edin</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Seqmenti ön izləyin, rahatlıqla ötürdüyünə əmin olun</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Seqmentin vaxtına əllə düzəliş et</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Seqmentin başlanğıc və bitiş vaxtlarına düzəliş etmək istəyirsiniz?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Yanlış vaxt verilmişdir</string>
+ <string name="revanced_sb_stats">Statistikalar</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistikalar müvəqqəti olaraq əlçatmazdır (API çökdü)</string>
+ <string name="revanced_sb_stats_loading">Yüklənir...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock sıradan çıxarıldı</string>
+ <string name="revanced_sb_stats_username">İstifadəçi adınız: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">İstifadəçi adınızı dəyişdirmək üçün bura toxunun</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">İstifadəçi adı dəyişdirilə bilmir: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">İstifadəçi adı uğurla dəyişdirildi</string>
+ <string name="revanced_sb_stats_reputation">Nüfuzunuz <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions"><b>%s</b> seqment yaratdınız</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock liderlik lövhəsi</string>
+ <string name="revanced_sb_stats_saved">İnsanları <b>%s</b> seqmentən xilas etdiniz</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Qlobal statistikaları və başlıca töhfəçiləri görmək üçün bura toxunun</string>
+ <string name="revanced_sb_stats_saved_sum">Bu, həyatlarının <b>%s</b> qədəridir.<br>Liderlik lövhəsinə baxmaq üçün toxunun</string>
+ <string name="revanced_sb_stats_self_saved"><b>%s</b> seqmenti ötürdünüz</string>
+ <string name="revanced_sb_stats_self_saved_sum">Bu, <b>%s</b> deməkdir</string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Ötürülən seqment sayğacı sıfırlansın?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s saat %2$s dəqiqə</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s dəqiqə %2$s saniyə</string>
+ <string name="revanced_sb_stats_saved_second_format">%s saniyə</string>
+ <string name="revanced_sb_color_dot_label">Rəng:</string>
+ <string name="revanced_sb_color_changed">Rəng dəyişdirildi</string>
+ <string name="revanced_sb_color_reset">Rəngi sıfırla</string>
+ <string name="revanced_sb_color_invalid">Yararsız rəng kodu</string>
+ <string name="revanced_sb_reset_color">Rəngi sıfırla</string>
+ <string name="revanced_sb_reset">Sıfırla</string>
+ <string name="revanced_sb_about">Haqqında</string>
+ <string name="revanced_sb_about_api_sum">Data, SponsorBlock API tərəfindən təqdim edilir. Daha ətraflı öyrənmək və digər platformalar üzrə endirmələrə baxmaq üçün bura toxunun</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Tətbiq versiyasını təqlid et</string>
+ <string name="revanced_spoof_app_version_summary_on">Təqlid edilir</string>
+ <string name="revanced_spoof_app_version_summary_off">Təqlid edilmir</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Tətbiq versiyası, YouTube-un daha köhnə bir versiyası olaraq təqlid ediləcək.\n\nBu, tətbiqin görünüşünü və özəlliklərini dəyişdirəcək, ancaq bilinməyən yan təsirləri yarana bilər.\n\nDaha sonra söndürsəniz, interfeys xətalarını önləmək üçün tətbiq datasını təmizləmək tövsiyə olunur.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Təqlid ediləcək tətbiq versiyası</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Shorts gizli rejimində RYD-ni bərpa et</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Geniş video sürəti & keyfiyyət menyusunu bərpa et</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Kitabxana vərəqini bərpa et</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Köhnə pleylist rəfini bərpa et</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Köhnə interfeys düzümünü bərpa et</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Başlanğıc səhifəsini ayarla</string>
+ <string name="revanced_start_page_entry_0">İlkin</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Ev</string>
+ <string name="revanced_start_page_entry_2">Axtar</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abunəliklər</string>
+ <string name="revanced_start_page_entry_4">Kəşf et</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">\"Siz\" vərəqi</string>
+ <string name="revanced_start_page_entry_7">Bəyənilən videolar</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Tarixçə</string>
+ <string name="revanced_start_page_entry_9">Trendlər</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Shorts pleyerinin davam edilməsini söndür</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Tətbiq açılanda Shorts pleyeri davam edilməyəcək</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Tətbiq açılanda Shorts pleyeri davam ediləcək</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Planşet düzümünü işə sal</string>
+ <string name="revanced_tablet_layout_summary_on">Fəaldır</string>
+ <string name="revanced_tablet_layout_summary_off">Sıradan çıxarıldı</string>
+ <string name="revanced_tablet_layout_user_dialog_message">İcma göndərişləri planşet düzümündə göstərilmir</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minipleyer</string>
+ <string name="revanced_miniplayer_type_title">Mini pleyer növü</string>
+ <string name="revanced_miniplayer_type_entry_1">Orijinal</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Planşet</string>
+ <string name="revanced_miniplayer_type_entry_4">Müasir 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Müasir 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Müasir 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Genişləndir və bağla düymələrini gizlət</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Gizlidir\n(genişləndirmə və ya bağlamaq üçün mini pleyeri sürüşdür)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Göstərilir</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Alt mətnləri gizlət</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Gizlidir</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Göstərilir</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">İrəli və geri ötür düymələrini gizlət</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Gizlidir</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Göstərilir</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Qradiyent yükləmə ekranını fəallaşdır</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Yükləmə ekranı, qradiyent bir arxaplana sahib olacaq</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Yükləmə ekranı, düz bir arxaplana sahib olacaq</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Özəl zaman çubuğu rəngini fəallaşdır</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Özəl zaman çubuğu rəngi göstərilir</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Orijinal zaman çubuğu rəngi göstərilir</string>
+ <string name="revanced_seekbar_custom_color_value_title">Özəl zaman çubuğu rəngi</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Zaman çubuğunun rəngi</string>
+ <string name="revanced_seekbar_custom_color_invalid">Yararsız zaman çubuğu rəng dəyəri. İlkin dəyər istifadə edilir.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Ev vərəqi</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Abunəliklər vərəqi</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">\"Siz\" vərəqi</string>
+ <string name="revanced_alt_thumbnail_player_title">Pleyer pleylistləri, tövsiyələr</string>
+ <string name="revanced_alt_thumbnail_search_title">Axtarış nəticələri</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Orijinal kiçik şəkillər</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Orijinal kiçik şəkillər</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Videodan kadrlar</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Videodan kadrlar</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">API əlçatan deyilsə bir tost bildirişi göstər</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API son nöqtəsi</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Hərəkətsiz video kadrları</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Hərəkətsiz kadrlar, hər bir videonun başından/ortasında/sonundan götürülür. Bu təsvirlər YouTube-da qurulu gəlir və heç bir xarici API istifadə edilmir</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Sürətli hərəkətsiz kadrları istifadə et</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Orta keyfiyyətli hərəkətsiz kadrlar istifadə edilir. Kiçik şəkillər, daha sürətli yüklənəcək, ancaq canlı yayımlar, buraxılmayan və ya çox köhnə videolar boş kiçik şəkilləri göstərə bilər</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Yüksək keyfiyyətli hərəkətsiz kadrlar istifadə edilir</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Hərəkətsiz kadrın götürələcəyi video vaxtı</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Videonun başlanğıcı</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Videonun ortası</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Videonun sonu</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow müvəqqəti əlçatan deyil (status kodu: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow müvəqqəti olaraq əlçatan deyil</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVanced elanlarını göstər</string>
+ <string name="revanced_announcements_summary_on">Elanlar açılışda göstərilir</string>
+ <string name="revanced_announcements_summary_off">Elanlar açılışda göstərilmir</string>
+ <string name="revanced_announcements_enabled_summary">Elanları açılışda göstər</string>
+ <string name="revanced_announcements_connection_failed">Elan provayderinə bağlana bilmədi</string>
+ <string name="revanced_announcements_dialog_dismiss">Rədd et</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Avto-təkrarı fəallaşdır</string>
+ <string name="revanced_auto_repeat_summary_on">Fəaldır</string>
+ <string name="revanced_auto_repeat_summary_off">Sıradan çıxarılıb</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Cihaz ölçülərini təqlid et</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Ayarları</string>
+ <string name="microg_settings_summary">GmsCore ayarları</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL yönləndirmələrini ötür</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Ötürülür</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Ötürülmür</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Keçidləri brauzerdə aç</string>
+ <string name="revanced_external_browser_summary_on">Keçidlər xarici brauzerdə açılır</string>
+ <string name="revanced_external_browser_summary_off">Keçidlər tətbiqdə açılır</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Arxaplanda oxutma</string>
+ <string name="revanced_background_playback_summary">Bu ayar, Ayarlar -> Arxaplan bölməsinə tapıla bilər</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">İzləmə sorğusu parametrini sil</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">İzləmə sorğusu parametri keçidlərdən silinir</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">İzləmə sorğusu parametri keçidlərdən silinmir</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Yaxınlaşdırma toxunuş əks-əlaqəsini söndür</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Toxunuş əks-əlaqəsi söndürüldü</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Toxunuş əks-əlaqəsi fəaldır</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Avtomatik keyfiyyət</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Video keyfiyyəti dəyişikliklərini xatırla</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Bütün videolara tətbiq et</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Yalnız hazırkı videoya tətbiq et</string>
+ <string name="revanced_video_quality_default_wifi_title">Wi-Fi-da ilkin video keyfiyyəti</string>
+ <string name="revanced_video_quality_default_mobile_title">Mobil şəbəkədə ilkin video keyfiyyəti</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">İlkin %1$s keyfiyyəti %2$s olaraq dəyişdirildi</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Sürət dialoq düyməsini göstər</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Düymə göstərilir</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Göstərilmir</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Özəl oxutma sürəti</string>
+ <string name="revanced_custom_playback_speeds_summary">Oxutma sürəti əlavə et və ya dəyişdir</string>
+ <string name="revanced_custom_playback_speeds_invalid">Özəl oxutma sürəti %s dəyərindən az olmalıdır. İlkin dəyərlər istifadə edilir.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Yararsız özəl oxutma sürətləri. İlkin dəyərlər istifadə edilir.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Oxutma sürəti dəyişikliklərini xatırla</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Bütün videolara tətbiq et</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Yalnız hazırkı videoya tətbiq et</string>
+ <string name="revanced_playback_speed_default_title">İlkin oxutma sürəti</string>
+ <string name="revanced_remember_playback_speed_toast">İlkin sürət: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Köhnə video keyfiyyəti menyusunu bərpa et</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Köhnə menyu göstərilir</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Köhnə menyu göstərilmir</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Sürüşdürərək çəkməyi fəallaşdır</string>
+ <string name="revanced_slide_to_seek_summary_on">Fəaldır</string>
+ <string name="revanced_slide_to_seek_summary_off">Fəal deyil</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Səsli reklamları əngəllə</string>
+ <string name="revanced_block_audio_ads_summary_on">Əngəllənib</string>
+ <string name="revanced_block_audio_ads_summary_off">Əngəllənməyib</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s əlçatmazdır. Reklamlar görünə bilər. Ayarlarda başqa bir reklam əngəlləmə xidmətinə keçməyə çalışın.</string>
+ <string name="revanced_embedded_ads_service_failed">%s serveri bir xəta qaytardı. Reklamlar görünə bilər. Ayarlarda başqa bir reklam əngəlləmə xidmətinə keçməyə çalışın.</string>
+ <string name="revanced_block_embedded_ads_title">Pərçimlənmiş video reklamlarını əngəllə</string>
+ <string name="revanced_block_embedded_ads_entry_1">Sıradan çıxarıldı</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Video reklamları əngəllə</string>
+ <string name="revanced_block_video_ads_summary_on">Əngəllənib</string>
+ <string name="revanced_block_video_ads_summary_off">Əngəllənməyib</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mesaj silindi</string>
+ <string name="revanced_show_deleted_messages_title">Silinən mesajları göstər</string>
+ <string name="revanced_show_deleted_messages_entry_1">Silinən mesajlar göstərilməsin</string>
+ <string name="revanced_show_deleted_messages_entry_2">Silinən mesajları spoiler ilə gizlət</string>
+ <string name="revanced_show_deleted_messages_entry_3">Silinən mesajları üzərindən xətt çəkilmiş kimi göstər</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Kanal Xallarını avtomatik götür</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Götürülür</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Götürülmür</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch sazlama rejimini fəallaşdır</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Fəaldır (tövsiyə edilmir)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Sıradan çıxarılıb</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced Ayarları</string>
+ <string name="revanced_ads_screen_title">Reklamlar</string>
+ <string name="revanced_ads_screen_summary">Reklam əngəlləmə ayarları</string>
+ <string name="revanced_chat_screen_title">Söhbət</string>
+ <string name="revanced_chat_screen_summary">Söhbət ayarları</string>
+ <string name="revanced_misc_screen_title">Müxtəlif</string>
+ <string name="revanced_misc_screen_summary">Müxtəlif ayarlar</string>
+ <string name="revanced_general_category_title">Ümumi ayarlar</string>
+ <string name="revanced_other_category_title">Digər ayarlar</string>
+ <string name="revanced_client_ads_category_title">Client tərəfli reklamlar</string>
+ <string name="revanced_surestream_ads_category_title">Server tərəfli surestream reklamlar</string>
+ <string name="revanced_twitch_debug_title">Sazlama jurnalı</string>
+ <string name="revanced_twitch_debug_summary_on">Sazlama jurnalı fəaldır</string>
+ <string name="revanced_twitch_debug_summary_off">Sazlama jurnalı sıradan çıxarılıb</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-be-rBY/strings.xml b/src/main/resources/addresources/values-be-rBY/strings.xml
new file mode 100644
index 0000000000..678ee742d3
--- /dev/null
+++ b/src/main/resources/addresources/values-be-rBY/strings.xml
@@ -0,0 +1,374 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Хочаце працягнуць?</string>
+ <string name="revanced_settings_reset">Скінуць</string>
+ <string name="revanced_settings_restart_title">Абнавіць і перазапусціць</string>
+ <string name="revanced_settings_restart">Перазапусціць</string>
+ <string name="revanced_settings_import">Імпартаваць</string>
+ <string name="revanced_settings_import_copy">Скапіяваць</string>
+ <string name="revanced_settings_import_reset">Пашыраныя налады скінуты да стандартных</string>
+ <string name="revanced_settings_import_success">Імпартавана налад: %d</string>
+ <string name="revanced_settings_import_failure_parse">Збой імпартавання: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_pref_import_export_title">Імпартаванне або экспартаванне</string>
+ <string name="revanced_pref_import_export_summary">Налады ReVanced імпартавання або экспартавання</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Пра праграму</string>
+ <string name="revanced_settings_screen_01_ads_title">Рэклама</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Альтэрнатыўныя мініяцюры</string>
+ <string name="revanced_settings_screen_03_feed_title">Стужка</string>
+ <string name="revanced_settings_screen_04_player_title">Плэер</string>
+ <string name="revanced_settings_screen_05_general_title">Асноўныя</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Прагрэс прайгравання</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Кіраванне жэстамі</string>
+ <string name="revanced_settings_screen_11_misc_title">Рознае</string>
+ <string name="revanced_settings_screen_12_video_title">Відэа</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Адладка</string>
+ <string name="revanced_debug_screen_summary">Уключыць або адключыць параметры адладкі</string>
+ <string name="revanced_debug_summary_on">Журналы адладкі ўключаны</string>
+ <string name="revanced_debug_summary_off">Журналы адладкі адключаны</string>
+ <string name="revanced_debug_protobuffer_title">Журналяванне буфера пратакола</string>
+ <string name="revanced_debug_protobuffer_summary_on">Журналы адладкі ўключаюць протабуфер</string>
+ <string name="revanced_debug_protobuffer_summary_off">Журналы адладкі не ўключаюць протабуфер</string>
+ <string name="revanced_debug_stacktrace_title">Журнал трасіроўкі стэка</string>
+ <string name="revanced_debug_stacktrace_summary_on">Журналы адладкі ўключаюць трасіроўку стэка</string>
+ <string name="revanced_debug_stacktrace_summary_off">Журналы адладкі не ўключаюць трасіроўку стэка</string>
+ <string name="revanced_debug_toast_on_error_title">Паказваць паведамленне пра памылку ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Усплывальнае паведамленне адлюстроўваецца ў выпадку ўзнікнення памылкі</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Усплывальнае паведамленне не адлюстроўваецца ў выпадку ўзнікнення памылкі</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Адключэнне ўсплывальных апавяшчэнняў схавае ўсе апавяшчэнні аб памылках ReVanced.\n\nВы не будзеце атрымліваць апавяшчэнні аб любых непрадбачаных падзеях.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_hide_gray_separator_title">Схаваць шэрыя раздзяляльнікі</string>
+ <string name="revanced_hide_gray_separator_summary_on">Шэрыя раздзяляльнікі схаваны</string>
+ <string name="revanced_hide_gray_separator_summary_off">Шэрыя раздзяляльнікі адлюстраваны</string>
+ <string name="revanced_hide_channel_watermark_title">Схаваць вадзяны знак канала</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Вадзяны знак схаваны</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">Кнопка трансляцыі схавана</string>
+ <string name="revanced_hide_cast_button_summary_off">Кнопка трансляцыі паказваецца</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_summary_on">Кнопка shorts схавана</string>
+ <string name="revanced_hide_shorts_button_summary_off">Кнопка shorts паказваецца</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Падказкі схаваны</string>
+ <string name="revanced_hide_info_cards_summary_off">Падказкі паказваюцца</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Схавана</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Пра праграму</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Уключыць SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">Знешні выгляд</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">Паглядзець кіраўніцтва</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Ужо прачытаў</string>
+ <string name="revanced_sb_guidelines_popup_open">Пакажыце мне</string>
+ <string name="revanced_sb_general">Асноўныя</string>
+ <string name="revanced_sb_general_min_duration">Мінімальная працягласць сегмента</string>
+ <string name="revanced_sb_general_uuid_sum">Гэта патрэбна трымаць у сакрэце. Гэта як пароль, і яго нельга нікому перадаваць. Калі ў кагосьці ёсць гэта, яны могуць выдаваць сябе за вас</string>
+ <string name="revanced_sb_general_api_url">Змяніць API URL адраса</string>
+ <string name="revanced_sb_api_url_reset">Скінуць URL API</string>
+ <string name="revanced_sb_api_url_changed">URL API зменены</string>
+ <string name="revanced_sb_settings_ie">Імпарт/Экспарт налад</string>
+ <string name="revanced_sb_settings_copy">Скапіяваць</string>
+ <string name="revanced_sb_segments_sponsor">Спонсар</string>
+ <string name="revanced_sb_segments_selfpromo">Самарэклама/рэкамендацыя</string>
+ <string name="revanced_sb_segments_interaction">Напамін аб узаемадзеянні (Падпіска)</string>
+ <string name="revanced_sb_segments_intro">Паўза/Інтро</string>
+ <string name="revanced_sb_segments_outro">Заключэнне/Цітры</string>
+ <string name="revanced_sb_segments_filler">Іншыя тэмы/жарты</string>
+ <string name="revanced_sb_segments_nomusic">Музыка: Сегмент без музыкі</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Прапусціць сегмент</string>
+ <string name="revanced_sb_skipped_sponsor">Прапушчаны спонсар</string>
+ <string name="revanced_sb_skipped_selfpromo">Прапушчана самарэклама</string>
+ <string name="revanced_sb_skipped_interaction">Прапушчаны надакучлівы напамін</string>
+ <string name="revanced_sb_skipped_intro_beginning">Прапушчаны ўступ</string>
+ <string name="revanced_sb_skipped_outro">Прапушчана канцоўка</string>
+ <string name="revanced_sb_skipped_preview_beginning">Прапушчаны прадпрагляд</string>
+ <string name="revanced_sb_skipped_preview_middle">Прапушчаны прадпрагляд</string>
+ <string name="revanced_sb_skipped_filler">Прапушчанны напаўняльнік</string>
+ <string name="revanced_sb_skipped_nomusic">Прапушчаны сегмент без музыкі</string>
+ <string name="revanced_sb_skipped_unsubmitted">Прпаушчаны неадпраўлены сегмент</string>
+ <string name="revanced_sb_skip_automatically">Прапускаць аўтаматычна</string>
+ <string name="revanced_sb_skip_showbutton">Паказваць кнопку пропуску</string>
+ <string name="revanced_sb_skip_ignore">Адключыць</string>
+ <string name="revanced_sb_submit_failed_duplicate">Немагчіыма даслаць сегмент.\nУжо існуе</string>
+ <string name="revanced_sb_submit_succeeded">Сегмент паспяхова дасланы</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">Галасаваць \"за\"</string>
+ <string name="revanced_sb_vote_downvote">Галасаваць \"супраць\"</string>
+ <string name="revanced_sb_vote_category">Змяніць катэгорыю</string>
+ <string name="revanced_sb_vote_no_segments">Няма сегментаў для галасавання</string>
+ <string name="revanced_sb_new_segment_choose_category">Выберыце катэгорыю сегмента</string>
+ <string name="revanced_sb_new_segment_title">Новы SponsorBlock сегмент</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Пазначыць %1$02d:%2$02d:%3$03d як пачатак і канец новага сегмента?</string>
+ <string name="revanced_sb_new_segment_mark_start">пачаць</string>
+ <string name="revanced_sb_new_segment_mark_end">канец</string>
+ <string name="revanced_sb_new_segment_now">зараз</string>
+ <string name="revanced_sb_new_segment_time_start">Час пачатку сегмента</string>
+ <string name="revanced_sb_new_segment_time_end">Час канца сегмента</string>
+ <string name="revanced_sb_new_segment_confirm_title">Час пачатка і канца сегмента верны?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_locations_first">Па-першае, пазначце спачатку два месца на шкале часу</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Змяніць час сегмента ўручную</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Вы хочаце змяніць час пачатку або канца сегмента?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Час указаны некарэктна</string>
+ <string name="revanced_sb_stats">Статыстыка</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Загрузка...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock адключаны</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Немагчыма змяніць імя карыстальніка: Статус: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Імя карыстальніка паспяхова зменена</string>
+ <string name="revanced_sb_color_changed">Колер зменены</string>
+ <string name="revanced_sb_color_reset">Колер скінуты</string>
+ <string name="revanced_sb_reset">Скінуць</string>
+ <string name="revanced_sb_about">Пра праграму</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Па змаўчанні</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Адхіліць</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Адключана</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_ads_screen_title">Рэклама</string>
+ <string name="revanced_misc_screen_title">Рознае</string>
+ <string name="revanced_twitch_debug_summary_on">Журналы адладкі ўключаны</string>
+ <string name="revanced_twitch_debug_summary_off">Журналы адладкі адключаны</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-bg-rBG/strings.xml b/src/main/resources/addresources/values-bg-rBG/strings.xml
new file mode 100644
index 0000000000..1802b75078
--- /dev/null
+++ b/src/main/resources/addresources/values-bg-rBG/strings.xml
@@ -0,0 +1,531 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Желаете ли да продължите?</string>
+ <string name="revanced_settings_reset">Нулиране</string>
+ <string name="revanced_settings_restart_title">Опреснете и рестартирайте</string>
+ <string name="revanced_settings_restart">Рестартиране</string>
+ <string name="revanced_settings_import">Импортиране</string>
+ <string name="revanced_settings_import_copy">Копиране</string>
+ <string name="revanced_settings_import_reset">Настройките на ReVanced бяха нулирани</string>
+ <string name="revanced_settings_import_success">Следните настройки бяха импортирани успешно: %d</string>
+ <string name="revanced_settings_import_failure_parse">Импортирането беше неуспешно: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_dialog_open_website_text">Отвори сайта</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_dev_header">Забележка</string>
+ <string name="revanced_pref_import_export_title">Импортиране / Експортиране</string>
+ <string name="revanced_pref_import_export_summary">Импортиране / Експортиране на ReVanced настройките</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Относно</string>
+ <string name="revanced_settings_screen_01_ads_title">Реклами</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Алтернативни миниатюри</string>
+ <string name="revanced_settings_screen_03_feed_title">Поток</string>
+ <string name="revanced_settings_screen_04_player_title">Плейър</string>
+ <string name="revanced_settings_screen_05_general_title">Общо оформление</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Seekbar</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Контроли с плъзгане</string>
+ <string name="revanced_settings_screen_11_misc_title">Разни</string>
+ <string name="revanced_settings_screen_12_video_title">Видео</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Отстраняване на грешки</string>
+ <string name="revanced_debug_screen_summary">Активиране или деактивиране на отстраняването на грешки</string>
+ <string name="revanced_debug_title">Дневник на отстраняването на грешки</string>
+ <string name="revanced_debug_summary_on">Дневникът за остраняване на грешки е активиран</string>
+ <string name="revanced_debug_summary_off">Дневникът за остраняване на грешки е деактивиран</string>
+ <string name="revanced_debug_protobuffer_title">Буфер на протокола за дневника</string>
+ <string name="revanced_debug_protobuffer_summary_on">Файлове с дневници за грешки включват буфера</string>
+ <string name="revanced_debug_protobuffer_summary_off">Файлове с дневници за грешки не включват буфера</string>
+ <string name="revanced_debug_stacktrace_title">Следи от стека на дневника</string>
+ <string name="revanced_debug_stacktrace_summary_on">Дневникът за отстраняване на грешки съдържа следи от стека</string>
+ <string name="revanced_debug_stacktrace_summary_off">Дневникът за отстраняване на грешки не съдържа следи от стека</string>
+ <string name="revanced_debug_toast_on_error_title">Покажи системно съобщение при ReVanced грешка</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Системно съобщение ще бъде показано, ако се появи грешка</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Системно съобщение няма да бъде показано, ако се появи грешка</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Ако изключите системните съобщения, ще скриете всички уведомления за ReVanced грешки. \n\nНяма да бъдете уведомени, ако настъпят неочаквани събития.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_hide_gray_separator_title">Скриване на сивия разделител</string>
+ <string name="revanced_hide_gray_separator_summary_on">Сивите разделители са скрити</string>
+ <string name="revanced_hide_gray_separator_summary_off">Сивите разделители са показани</string>
+ <string name="revanced_hide_channel_watermark_title">Скриване на водния знак на канала</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Водният знак е скрит</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Водният знак е показан</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_summary_on">Бутонът е скрит</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Бутонът е показан</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_summary_on">Рафтът е скрит</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Рафтът е показан</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_summary_on">Бутонът е скрит</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Бутонът е показан</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_summary_on">Препоръките са скрити</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Препоръките са показани</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_summary_on">Бутонът е скрит</string>
+ <string name="revanced_hide_show_more_button_summary_off">Бутонът е показан</string>
+ <string name="revanced_hide_timed_reactions_title">Скриване на времевите реакции</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Времевите реакции са скрити</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Времевите реакции са показани</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Скриване на заглавието на рафта с резултатите от търсенето</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Заглавието на рафта е скрито</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Заглавието е показано</string>
+ <string name="revanced_hide_channel_guidelines_title">Скриване на насоките на канала</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Насоките на канала са скрити</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Насоките на канала са показани</string>
+ <string name="revanced_hide_expandable_chip_title">Скриване на разширяемия чип под видеоклиповете</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Разширяващите се чипове са скрити</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Разширяващите се чипове са показани</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Скриване на футъра на менюто за качество на видеото</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Футърът на менюто за качество на видеото е скрит</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Футърът на менюто за качество на видеото е показан</string>
+ <string name="revanced_hide_community_posts_title">Скриване на публикациите от общността</string>
+ <string name="revanced_hide_community_posts_summary_on">Публикациите от общността са скрити</string>
+ <string name="revanced_hide_community_posts_summary_off">Публикациите от общността са показани</string>
+ <string name="revanced_hide_compact_banner_title">Скриване на компактните банери</string>
+ <string name="revanced_hide_compact_banner_summary_on">Компактните банери са скрити</string>
+ <string name="revanced_hide_compact_banner_summary_off">Компактните банери са показани</string>
+ <string name="revanced_hide_movies_section_title">Скриване на раздела за филми</string>
+ <string name="revanced_hide_movies_section_summary_on">Разделът за филми е скрит</string>
+ <string name="revanced_hide_movies_section_summary_off">Разделът за филми е показан</string>
+ <string name="revanced_hide_feed_survey_title">Скриване на анкетите в новинарския поток</string>
+ <string name="revanced_hide_feed_survey_summary_on">Aнкетите в новинарския поток са скрити</string>
+ <string name="revanced_hide_feed_survey_summary_off">Aнкетите в новинарския поток са показани</string>
+ <string name="revanced_hide_community_guidelines_title">Скриване на насоките на общността</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Насоките на общността са скрити</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Насоките на общността са показани</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Скриване на насоките за общността на абонатите</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Насоките за общността на абонатите са скрити</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Насоките за общността на абонатите са показани</string>
+ <string name="revanced_hide_channel_member_shelf_title">Скриване на рафта на канала</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Рафтът на канала е скрит</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Рафтът на канала е показан</string>
+ <string name="revanced_hide_emergency_box_title">Скриване аварийните кутии</string>
+ <string name="revanced_hide_emergency_box_summary_on">Аварийните кутии са скрити</string>
+ <string name="revanced_hide_emergency_box_summary_off">Аварийните кутии са показани</string>
+ <string name="revanced_hide_info_panels_title">Скриване на информационните панели</string>
+ <string name="revanced_hide_info_panels_summary_on">Информационните панели са скрити</string>
+ <string name="revanced_hide_info_panels_summary_off">Информационните панели са показани</string>
+ <string name="revanced_hide_medical_panels_title">Скриване на медицинските панели</string>
+ <string name="revanced_hide_medical_panels_summary_on">Медицинските панели са скрити</string>
+ <string name="revanced_hide_medical_panels_summary_off">Медицинските панели са показани</string>
+ <string name="revanced_hide_channel_bar_title">Скриване на лентата на канала</string>
+ <string name="revanced_hide_channel_bar_summary_on">Лентата на канала е скрита</string>
+ <string name="revanced_hide_channel_bar_summary_off">Лентата на канала е показана</string>
+ <string name="revanced_hide_quick_actions_title">Скриване на бързите действия в режим на цял екран</string>
+ <string name="revanced_hide_quick_actions_summary_on">Бързите действия в режим на цял екран са скрити</string>
+ <string name="revanced_hide_quick_actions_summary_off">Бързите действия в режим на цял екран са показани</string>
+ <string name="revanced_hide_related_videos_title">Скриване на свързаните видеоклипове в бързите действия</string>
+ <string name="revanced_hide_related_videos_summary_on">Свързаните видеоклипове в бързите действия са скирти</string>
+ <string name="revanced_hide_related_videos_summary_off">Свързаните видеоклипове в бързите действия са показани</string>
+ <string name="revanced_hide_image_shelf_title">Скриване на рафта с изображения в резултатите от търсенето</string>
+ <string name="revanced_hide_image_shelf_summary_on">Рафтът с изображения в резултатите от търсенето е скрит</string>
+ <string name="revanced_hide_image_shelf_summary_off">Рафтът с изображения в резултатите от търсенето е показан</string>
+ <string name="revanced_hide_latest_posts_ads_title">Скриване на последните публикации</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Последните публикации са скрити</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Последните публикации са показани</string>
+ <string name="revanced_hide_mix_playlists_title">Скриване на разбърканите плейлисти</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Разбърканите плейлисти са скрити</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Разбърканите плейлисти са показани</string>
+ <string name="revanced_hide_artist_cards_title">Скриване на картите на артистите</string>
+ <string name="revanced_hide_artist_cards_summary_on">Картите на артистите са скрити</string>
+ <string name="revanced_hide_artist_cards_summary_off">Картите на артистите са показани</string>
+ <string name="revanced_hide_chips_shelf_title">Скриване на рафта за чипове</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Рафтът за чипове е скрит</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Рафтът за чипове е показан</string>
+ <string name="revanced_hide_info_cards_section_title">Скриване на раздела за информационни карти</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Разделът за информационни карти е скрит</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Разделът за информационни карти е показан</string>
+ <string name="revanced_hide_transcript_section_summary_on">Разделът за транскрипция е скрит</string>
+ <string name="revanced_hide_transcript_section_summary_off">Разделът за транскрипция е показан</string>
+ <string name="revanced_hide_description_components_screen_title">Описание на видеото</string>
+ <string name="revanced_hide_description_components_screen_summary">Скриване или показване на компонентите за описание на видеоклиповете</string>
+ <string name="revanced_custom_filter_screen_title">Потребителски филтър</string>
+ <string name="revanced_custom_filter_screen_summary">Скриване на компоненти с помощта на потребителски филтри</string>
+ <string name="revanced_custom_filter_title">Активиране на потребителските филтри</string>
+ <string name="revanced_custom_filter_summary_on">Потребителският филтър е активиран</string>
+ <string name="revanced_custom_filter_summary_off">Потребителският филтър е деактивиран</string>
+ <string name="revanced_custom_filter_strings_title">Потребителски филтър</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Списък с низове за изграждане на пътя на компонента, които да се филтрират, разделени с нов ред</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Невалиден потребителски филтър: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Скриване на съдържанието с ключови думи</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Скриване на видеоклипове в резултатите от търсенуя и в новинарския поток с помощта на филтри с ключови думи</string>
+ <string name="revanced_hide_keyword_content_home_title">Скриване на видеоклипове на началната страница с ключови думи</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Видеоклиповете на началния екран са филтрирани с ключови думи</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Видеоклиповете на началния екран не са филтрирани с ключови думи</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Скриване на видеоклипове от абонаменти с ключови думи</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Видеоклиповете в раздела за абонаменти са са филтрирани с ключови думи</string>
+ <string name="revanced_hide_keyword_content_search_title">Скриване на резултати от търсения с ключови думи</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Резултатите от търсения са филтрирани с ключови думи</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Резултатите от търсения не са филтрирани с ключови думи</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Ключови думи, които да бъдат скрити</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Ключови думи и фрази, които да бъдат скрити, разделени с нови редове\n\nДуми с главни букви в средата трябва да бъдат въведени с големи букви (например: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">За филтриране с ключови думи</string>
+ <string name="revanced_hide_keyword_content_about_summary">Начало/Абонамент/Резултатите от търсенето се филтрират, за да се скрие съдържанието, което съответства на ключовите фрази\n\nОграничения\n• Някои кратки видеоклипове може да не са скрити\n• Някои компоненти на потребителския интерфейс може да не са скрити\n• Търсенето на ключова дума може да не покаже резултати</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Скриване на общите реклами</string>
+ <string name="revanced_hide_general_ads_summary_on">Общите реклами са скрити</string>
+ <string name="revanced_hide_general_ads_summary_off">Общите реклами са показани</string>
+ <string name="revanced_hide_fullscreen_ads_title">Скриване на рекламите в режим на цял екран</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Рекламите в режим на цял екран са показани</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Рекламите като бутон са скрити</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Рекламите като бутон са показани</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Скриване на самоспонсорирани карти</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Самоспонсорираните карти са скрити</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Самоспонсорираните карти са показани</string>
+ <string name="revanced_hide_products_banner_title">Скриване на банера за показване на продукти</string>
+ <string name="revanced_hide_products_banner_summary_on">Банерът е скрит</string>
+ <string name="revanced_hide_products_banner_summary_off">Банерът е показан</string>
+ <string name="revanced_hide_shopping_links_title">Скриване на връзките за пазаруване в описанието на видеоклипа</string>
+ <string name="revanced_hide_shopping_links_summary_on">Връзките за пазаруване са скрити</string>
+ <string name="revanced_hide_shopping_links_summary_off">Връзките за пазаруване са показани</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_summary_on">Бутонът е скрит</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Бутонът е показан</string>
+ <string name="revanced_hide_web_search_results_title">Скриване на резултатите от уеб търсенето</string>
+ <string name="revanced_hide_web_search_results_summary_on">Резултатите от уеб търсенето са скрити</string>
+ <string name="revanced_hide_web_search_results_summary_off">Резултатите от уеб търсенето са показани</string>
+ <string name="revanced_hide_merchandise_banners_title">Скриване на банерите за стоки</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Банерите за стоки са скрити</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Банерите за стоки са показани</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Скриване на YouTube Premium промоции</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium промоциите под видео плейъра са скрити</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium промоциите под видео плейъра са показани</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Скриване на видео рекламите</string>
+ <string name="revanced_hide_video_ads_summary_on">Видео рекламите са скрити</string>
+ <string name="revanced_hide_video_ads_summary_off">Видео рекламите са показани</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL адресът е копиран в клипборда</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL адресът с времеви отпечатък е копиран</string>
+ <string name="revanced_copy_video_url_title">Показване на бутона за копиране на URL адреса на видеоклипа</string>
+ <string name="revanced_copy_video_url_summary_off">Бутонът не е показан</string>
+ <string name="revanced_copy_video_url_timestamp_title">Показване на бутона за копиране на URL адреса на времевия отпечатък на видеоклипа</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Бутонът не е показан</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Скриване на прозореца за възрастово ограничение</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Диалоговият прозорец ще бъде премахнат</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Диалоговият прозорец ще бъде показан</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Външни изтегляния</string>
+ <string name="revanced_external_downloader_screen_summary">Настройки за използване на външно приложение за изтегляне</string>
+ <string name="revanced_external_downloader_title">Показване на бутона за изтегляне чрез външно приложение</string>
+ <string name="revanced_external_downloader_summary_on">Бутонът за изтегляне е показан в плейъра</string>
+ <string name="revanced_external_downloader_summary_off">Бутонът за изтегляне не е показан в плейъра</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Отмяна на бутона за изтегляне</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Бутонът за изтегляне отваря избраното от Вас външно приложение за изтегляне</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Бутонът за изтегляне отваря вграденото приложение за изтегляне</string>
+ <string name="revanced_external_downloader_name_title">Име на пакета на изтеглящото приложение</string>
+ <string name="revanced_external_downloader_name_summary">Име на пакета на приложението за изтегляне, като NewPipe или Seal</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Деактивиране на жеста за точно търсене</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Жестът е деактивиран</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Жестът е активиран</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Активиране на докосването на лентата за време</string>
+ <string name="revanced_seekbar_tapping_summary_on">Докосването на лентата за време е включено</string>
+ <string name="revanced_seekbar_tapping_summary_off">Докосването на лентата за време е изключено</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Задаване на яркост чрез плъзгане</string>
+ <string name="revanced_swipe_brightness_summary_on">Задаването на яркост чрез плъзгане е включено</string>
+ <string name="revanced_swipe_brightness_summary_off">Задаването на яркост чрез плъзгане е изключено</string>
+ <string name="revanced_swipe_volume_title">Настройване на звука чрез плъзгане</string>
+ <string name="revanced_swipe_volume_summary_on">Настройването на звука чрез плъзгане е включено</string>
+ <string name="revanced_swipe_volume_summary_off">Настройването на звука чрез плъзгане е изключено</string>
+ <string name="revanced_swipe_press_to_engage_title">Активиране на жеста натискане за преместване</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Натискането при плъзгане е включено</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Натискането при плъзгане е изключено</string>
+ <string name="revanced_swipe_haptic_feedback_title">Активиране на хептичната обратна връзка</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Хептичната обратна връзка е активирана</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Хептичната обратна връзка е деактивирана</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Запазване и възстановяване на яркостта</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Запазване и възстаовяване яркостта при включване или изключване на цял екран</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Не се запазва или възстаовява яркостта при включване или изключване на цял екран</string>
+ <string name="revanced_swipe_overlay_timeout_title">Задръжка на плъзгащата контрола</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Време за което плъзгащата контрола е видима</string>
+ <string name="revanced_swipe_text_overlay_size_title">Размер на текста при плъзгане</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Размера на текста на плъзгащите контроли</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Видимост на фона на плъзгащите контроли</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Видимостта на фона на плъзгащите контроли</string>
+ <string name="revanced_swipe_threshold_title">Праг на величината на плъзгане</string>
+ <string name="revanced_swipe_threshold_summary">Праг преди да се осъществи плъзгането</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_channel_bar_title">Скриване на лентата на канала</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Лентата на канала е скрита</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Лентата на канала е показана</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Скрито</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Относно</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Включване на SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">Облик</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">Преглед на ръководните линии</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Вече прочетох</string>
+ <string name="revanced_sb_general">Общи</string>
+ <string name="revanced_sb_general_uuid_sum">Това трябва да се държи тайно. То е като парола и не трябва да се споделя с никого. Ако някой го има, то той може да се представи вместо вас</string>
+ <string name="revanced_sb_api_url_reset">Нулиране URL адреса на API</string>
+ <string name="revanced_sb_api_url_changed">URL адресът на API е променен</string>
+ <string name="revanced_sb_settings_ie">Настройки за внасяне и изнасяне</string>
+ <string name="revanced_sb_settings_copy">Копиране</string>
+ <string name="revanced_sb_segments_sponsor">Спонсор</string>
+ <string name="revanced_sb_skip_automatically">Да се прескача от само себе си</string>
+ <string name="revanced_sb_skip_ignore">Изключване</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">Положителен вот</string>
+ <string name="revanced_sb_vote_downvote">Отрицателен вот</string>
+ <string name="revanced_sb_vote_category">Промяна на категорията</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_start">начало</string>
+ <string name="revanced_sb_new_segment_mark_end">край</string>
+ <string name="revanced_sb_new_segment_now">сега</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Желаете ли да редактирате времената за начало или край на частта?</string>
+ <string name="revanced_sb_stats">Статистика</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Зареждане...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock е изключено</string>
+ <string name="revanced_sb_stats_username_changed">Потребителското име е успешно променено</string>
+ <string name="revanced_sb_color_changed">Цветът е променен</string>
+ <string name="revanced_sb_reset">Нулиране</string>
+ <string name="revanced_sb_about">Относно</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">По подразбиране</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Отхвърли</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_summary_on">Бутонът е показан</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Бутонът не е показан</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Деактивирано</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_ads_screen_title">Реклами</string>
+ <string name="revanced_misc_screen_title">Разни</string>
+ <string name="revanced_twitch_debug_title">Дневник на отстраняването на грешки</string>
+ <string name="revanced_twitch_debug_summary_on">Дневникът за остраняване на грешки е активиран</string>
+ <string name="revanced_twitch_debug_summary_off">Дневникът за остраняване на грешки е деактивиран</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-bn-rBD/strings.xml b/src/main/resources/addresources/values-bn-rBD/strings.xml
new file mode 100644
index 0000000000..54532b4ad8
--- /dev/null
+++ b/src/main/resources/addresources/values-bn-rBD/strings.xml
@@ -0,0 +1,1166 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">আপনি কি এগিয়ে যেতে ইচ্ছুক?</string>
+ <string name="revanced_settings_reset">আবার সেট করুন</string>
+ <string name="revanced_settings_restart_title">রিফ্রেশ করুন এবং আবার চালু করুন</string>
+ <string name="revanced_settings_restart">আবার চালু করুন</string>
+ <string name="revanced_settings_import">আমদানি করুন</string>
+ <string name="revanced_settings_import_copy">অনুলিপি করুন</string>
+ <string name="revanced_settings_import_reset">ReVanced সেটিং ডিফল্ট সেট করা হয়েছে</string>
+ <string name="revanced_settings_import_success">%d সেটিং আমদানি হয়েছে</string>
+ <string name="revanced_settings_import_failure_parse">আমদানি করা যায়নি: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore ইনস্টল করা হয়নি। ইনস্টল করুন।</string>
+ <string name="gms_core_dialog_title">পদক্ষেপ প্রয়োজন</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore এর ব্যাকগ্রাউন্ডে চলমান থাকার অনুমতি নেই।\n\nআপনার ডিভাইসের জন্য \"Don\'t kill my app\" এ থাকা নির্দেশাবলী অনুসরণ করুন, এবং আপনার ইনস্টলকৃত MicroG তে তা প্রয়োগ করুন।\n\nঅ্যাপ সঠিকভাবে চলতে এটি অবশ্যই প্রয়োজন।</string>
+ <string name="gms_core_dialog_open_website_text">ওয়েবসাইট খুলুন</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">ত্রুটি এড়াতে MicroG GmsCore এর ব্যাটারি অপটিমাইজেশন অবশ্যই নিষ্ক্রিয় করতে হবে।\n\nএগিয়ে যান বোতামে ট্যাপ করুন এবং ব্যাটারি অপটিমাইজেশন নিস্ক্রিয় করুন।</string>
+ <string name="gms_core_dialog_continue_text">এগিয়ে যান</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">আপনি ReVanced প্যাচ সংস্করণ <i><i>%s</i></i> ব্যবহার করছেন</string>
+ <string name="revanced_settings_about_links_dev_header">দ্রষ্টব্য</string>
+ <string name="revanced_settings_about_links_dev_body">এই সংস্করণ একটি প্রাক-প্রকাশনা এবং এতে আপনি অনাকাঙ্খিত সমস্যার সম্মুখিন হতে পারেন</string>
+ <string name="revanced_settings_about_links_header">অফিশ্যাল লিংকসমূহ</string>
+ <string name="revanced_pref_import_export_title">আমদানি এবং রপ্তানি</string>
+ <string name="revanced_pref_import_export_summary">ReVanced সেটিং আমদানি বা রপ্তানি করুন</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">সম্পর্কিত</string>
+ <string name="revanced_settings_screen_01_ads_title">বিজ্ঞাপন</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">বিকল্প থাম্বনেইল</string>
+ <string name="revanced_settings_screen_03_feed_title">ফিড</string>
+ <string name="revanced_settings_screen_04_player_title">প্লেয়ার</string>
+ <string name="revanced_settings_screen_05_general_title">সাধারণ লে-আউট</string>
+ <string name="revanced_settings_screen_06_shorts_title">শর্টস</string>
+ <string name="revanced_settings_screen_07_seekbar_title">সিকবার</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">সোয়াইপ কন্ট্রোল</string>
+ <string name="revanced_settings_screen_11_misc_title">বিবিধ</string>
+ <string name="revanced_settings_screen_12_video_title">ভিডিও</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">ডিবাগিং</string>
+ <string name="revanced_debug_screen_summary">ডিবাগিং অপশন সক্রিয় বা নিষ্ক্রিয় করুন</string>
+ <string name="revanced_debug_title">ডিবাগ লগিং</string>
+ <string name="revanced_debug_summary_on">ডিবাগ লগ সক্রিয় হয়েছে</string>
+ <string name="revanced_debug_summary_off">ডিবাগ লগ নিষ্ক্রিয় হয়েছে</string>
+ <string name="revanced_debug_protobuffer_title">প্রটোকল বাফার লগ</string>
+ <string name="revanced_debug_protobuffer_summary_on">ডিবাগ লগ প্রটোকল বাফার সংযুক্ত করবে</string>
+ <string name="revanced_debug_protobuffer_summary_off">ডিবাগ লগ প্রটোকল বাফার সংযুক্ত করবে না</string>
+ <string name="revanced_debug_stacktrace_title">স্টেক ট্রেস লগ</string>
+ <string name="revanced_debug_stacktrace_summary_on">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে</string>
+ <string name="revanced_debug_stacktrace_summary_off">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে না</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced এর ত্রুটির ক্ষেত্রে টোস্ট দেখান</string>
+ <string name="revanced_debug_toast_on_error_summary_on">কোন ত্রুটি দেখা গেলে টোস্ট দেখায়</string>
+ <string name="revanced_debug_toast_on_error_summary_off">কোন ত্রুটি দেখা গেলে টোস্ট দেখায় না</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">ত্রুটির টোস্ট দেখানো বন্ধ করলে তা ReVanced এর সকল ত্রুটির বিজ্ঞপ্তি লুকিয়ে রাখবে।\n\nআপনি কোন অনাকাঙ্ক্ষিত ঘটনার বিজ্ঞপ্তি পাবেন না।</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">পছন্দ / সদস্যতা বোতামের উজ্জ্বলতা নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">পছন্দ এবং সদস্যতা বোতাম যখন উল্লেখ করা হবে উজ্জ্বলতা দিবে না</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">পছন্দ এবং সদস্যতা বোতাম যখন উল্লেখ করা হবে উজ্জ্বলতা দিবে</string>
+ <string name="revanced_hide_gray_separator_title">ধূসর বিভাজক লুকান</string>
+ <string name="revanced_hide_gray_separator_summary_on">ধূসর বিভাজক লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_gray_separator_summary_off">ধূসর বিভাজক প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_channel_watermark_title">চ্যানেল জলছাপ লুকান</string>
+ <string name="revanced_hide_channel_watermark_summary_on">জলছাপ লুকানো আছে</string>
+ <string name="revanced_hide_channel_watermark_summary_off">জলছাপ দেখানো আছে</string>
+ <string name="revanced_hide_horizontal_shelves_title">আনুভূমিক শেলফ লুকান</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">যে সকল শেলফ লুকানো হবে:\n• সর্বমেষ খবর\n• দেখা অবিরত রাখুন\n• আরও চ্যানেল দেখুন\n• কেনাকাটা\n• এটি আবার দেখুন</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">শেলফ প্রদর্শিত হয়েছে</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">\'জয়েন করুন\' বোতাম লুকান</string>
+ <string name="revanced_hide_join_membership_button_summary_on">বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_join_membership_button_summary_off">বোতাম দেখানো আছে</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">চ্যানেল পাতায় \'আপনার জন্য\' শেলফ লুকান</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">শেলফ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">শেলফ প্রদর্শিত হয়েছে</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\'আমাকে জানান\' বোতাম লুকান</string>
+ <string name="revanced_hide_notify_me_button_summary_on">বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_notify_me_button_summary_off">বোতাম দেখানো আছে</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">\'মানুষ আরও দেখছে\' প্রস্তাবনাগুলো লুকান</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">প্রস্তাবনাগুলো লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">প্রস্তাবনাগুলো প্রদর্শিত হয়েছে</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'আরও দেখান\' বোতাম লুকান</string>
+ <string name="revanced_hide_show_more_button_summary_on">বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_show_more_button_summary_off">বোতাম দেখানো আছে</string>
+ <string name="revanced_hide_timed_reactions_title">সময় অনুযায়ী প্রতিক্রিয়া লুকান</string>
+ <string name="revanced_hide_timed_reactions_summary_on">সময় অনুযায়ী প্রতিক্রিয়া লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_timed_reactions_summary_off">সময় অনুযায়ী প্রতিক্রিয়া প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_search_result_shelf_header_title">অনুসন্ধান ফলাফল শেলফের হেডার লুকান</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">শেলফ হেডার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">শেলফ হেডার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_channel_guidelines_title">চ্যানেল নির্দেশিকা লুকান</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">চ্যানেল নির্দেশিকা লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">চ্যানেল নির্দেশিকা প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_expandable_chip_title">ভিডিওর নিচের সম্প্রসারণযোগ্য চিপস লুকান</string>
+ <string name="revanced_hide_expandable_chip_summary_on">সম্প্রসারণযোগ্য চিপস লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_expandable_chip_summary_off">সম্প্রসারণযোগ্য চিপস প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">ভিডিও গুণমান মেনুর ফুটার লুকান</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">ভিডিও গুণমান মেনুর ফুটার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">ভিডিও গুণমান মেনুর ফুটার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_community_posts_title">সম্প্রদায় পোস্ট লুকান</string>
+ <string name="revanced_hide_community_posts_summary_on">সম্প্রদায় পোস্ট লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_community_posts_summary_off">সম্প্রদায় পোস্ট প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_compact_banner_title">সংক্ষিপ্ত ব্যানার লুকান</string>
+ <string name="revanced_hide_compact_banner_summary_on">সংক্ষিপ্ত ব্যানার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_compact_banner_summary_off">সংক্ষিপ্ত ব্যানার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_movies_section_title">চলচ্চিত্র বিভাগ লুকান</string>
+ <string name="revanced_hide_movies_section_summary_on">চলচ্চিত্র বিভাগ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_movies_section_summary_off">চলচ্চিত্র বিভাগ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_feed_survey_title">ফিড জরিপ লুকান</string>
+ <string name="revanced_hide_feed_survey_summary_on">ফিড জরিপ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_feed_survey_summary_off">ফিড জরিপ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_community_guidelines_title">সম্প্রদায় নির্দেশিকা লুকান</string>
+ <string name="revanced_hide_community_guidelines_summary_on">সম্প্রদায় নির্দেশিকা লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_community_guidelines_summary_off">সম্প্রদায় নির্দেশিকা প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">সাবস্ক্রাইবারদের সম্পদ্রায় নির্দেশিকা লুকান</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">সাবস্ক্রাইবারদের সম্পদ্রায় নির্দেশিকা লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">সাবস্ক্রাইবারদের সম্পদ্রায় নির্দেশিকা প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_channel_member_shelf_title">চ্যানেল মেম্বার শেলফ লুকান</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">চ্যানেল মেম্বার শেলফ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">চ্যানেল মেম্বার শেলফ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_emergency_box_title">জরুরী বাক্সগুলো লুকান</string>
+ <string name="revanced_hide_emergency_box_summary_on">জরুরী বাক্সগুলো লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_emergency_box_summary_off">জরুরী বাক্সগুলো প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_info_panels_title">তথ্য প্যানেল লুকান</string>
+ <string name="revanced_hide_info_panels_summary_on">তথ্য প্যানেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_info_panels_summary_off">তথ্য প্যানেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_medical_panels_title">মেডিকেল প্যানেল লুকান</string>
+ <string name="revanced_hide_medical_panels_summary_on">মেডিকেল প্যানেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_medical_panels_summary_off">মেডিকেল প্যানেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_channel_bar_title">চ্যানেল বার লুকান</string>
+ <string name="revanced_hide_channel_bar_summary_on">চ্যানেল বার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_channel_bar_summary_off">চ্যানেল বার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_playables_title">খেলার উপযুক্ত লুকান</string>
+ <string name="revanced_hide_playables_summary_on">খেলার উপযুক্ত লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_playables_summary_off">খেলার উপযুক্ত প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_quick_actions_title">পূর্ণস্ক্রীণে দ্রুত ক্রিয়াকলাপগুলি লুকান</string>
+ <string name="revanced_hide_quick_actions_summary_on">দ্রুত ক্রিয়াকলাপগুলি লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_quick_actions_summary_off">দ্রুত ক্রিয়াকলাপগুলি প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_related_videos_title">দ্রুত ক্রিয়াকলাপগুলিতে সম্পর্কিত ভিডিওগুলি লুকান</string>
+ <string name="revanced_hide_related_videos_summary_on">সম্পর্কিত ভিডিও লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_related_videos_summary_off">সম্পর্কিত ভিডিও প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_image_shelf_title">অনুসন্ধান ফলাফলে ছবির শেলফ লুকান</string>
+ <string name="revanced_hide_image_shelf_summary_on">ছবির শেলফ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_image_shelf_summary_off">ছবির শেলফ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_latest_posts_ads_title">সর্বশেষ পোস্ট লুকান</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">সর্বশেষ পোস্ট লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">সর্বশেষ পোস্ট প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_mix_playlists_title">মিক্স প্লেলিস্ট লুকান</string>
+ <string name="revanced_hide_mix_playlists_summary_on">মিক্স প্লেলিস্ট লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_mix_playlists_summary_off">মিক্স প্লেলিস্ট প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_artist_cards_title">আর্টিস্ট কার্ড লুকান</string>
+ <string name="revanced_hide_artist_cards_summary_on">আর্টিস্ট কার্ড লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_artist_cards_summary_off">আর্টিস্ট কার্ড প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_chips_shelf_title">চিপ শেলপ লুকান</string>
+ <string name="revanced_hide_chips_shelf_summary_on">চিপ শেলপ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_chips_shelf_summary_off">চিপ শেলপ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_info_cards_section_title">তথ্য কার্ড সেকশন লুকান</string>
+ <string name="revanced_hide_info_cards_section_summary_on">তথ্য কার্ড সেকশন লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_info_cards_section_summary_off">তথ্য কার্ড সেকশন প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_transcript_section_summary_on">ট্রান্সস্ক্রিপ্ট বিভাগ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_transcript_section_summary_off">ট্রান্সস্ক্রিপ্ট বিভাগ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_description_components_screen_title">ভিডিওর বিবরণ</string>
+ <string name="revanced_hide_description_components_screen_summary">ভিডিও বিবরণ এর উপাদান লুকান বা প্রদর্শন করুন</string>
+ <string name="revanced_custom_filter_screen_title">কাস্টম ফিল্টার</string>
+ <string name="revanced_custom_filter_screen_summary">কাস্টম ফিল্টার ব্যবহার করে বিভিন্ন উপাদান লুকান</string>
+ <string name="revanced_custom_filter_title">কাস্টম ফিল্টার সক্রিয় করুন</string>
+ <string name="revanced_custom_filter_summary_on">কাস্টম ফিল্টার সক্রিয় আছে</string>
+ <string name="revanced_custom_filter_summary_off">কাস্টম ফিল্টার নিস্ক্রিয় আছে</string>
+ <string name="revanced_custom_filter_strings_title">কাস্টম ফিল্টার</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">নতুন লাইন দ্বারা পৃথক করা ফিল্টার করার জন্য উপাদান পাথ বিল্ডার স্ট্রিং এর তালিকা</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">ত্রুটিপূর্ণ কাস্টম ফিল্টার: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">কীওয়ার্ড কনটেন্ট লুকান</string>
+ <string name="revanced_hide_keyword_content_screen_summary">কীওয়ার্ড ফিল্টার ব্যবহার করে অনুসন্ধান এবং ফিড ভিডিও লুকান</string>
+ <string name="revanced_hide_keyword_content_home_title">কীওয়ার্ড ব্যবহার করে প্রধান পাতার ভিডিও লুকান</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">প্রধান পাতার ভিডিও কীওয়ার্ড দ্বারা ফিল্টার করা হয়েছে</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">প্রধান পাতার ভিডিও কীওয়ার্ড দ্বারা ফিল্টার করা হয়নি</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">কীওয়ার্ড ব্যবহার করে সাবস্ক্রিপশন ভিডিও লুকান</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">সাবস্ক্রিপশন পাতার ভিডিও কীওয়ার্ড দ্বারা ফিল্টার করা হয়েছে</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">সাবস্ক্রিপশন পাতার ভিডিও কীওয়ার্ড দ্বারা ফিল্টার করা হয়নি</string>
+ <string name="revanced_hide_keyword_content_search_title">কীওয়ার্ড ব্যবহার করে অনুসন্ধান ফলাফল লুকান</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">অনুসন্ধান ফলাফল কীওয়ার্ড দ্বারা ফিল্টার করা হয়েছে</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">অনুসন্ধান ফলাফল কীওয়ার্ড দ্বারা ফিল্টার করা হয়নি</string>
+ <string name="revanced_hide_keyword_content_phrases_title">লুকানোর জন্য কীওয়ার্ড</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">লুকানোর জন্য কীওয়ার্ড এবং বাক্যাংশ, নতুন লাইনে পৃথক করা\n\nশব্দের মাঝে বড় হাতের অক্ষর থাকলে তা অবশ্যই সঠিক আবরণে লিখতে হবে (উদাহরণ: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">কীওয়ার্ড ফিল্টারিং সম্পর্কে</string>
+ <string name="revanced_hide_keyword_content_about_summary">প্রধান পাতা/সাবস্ক্রিপশন/অনুসন্ধান ফলাফল গুলো কীওয়ার্ড বাক্যাংশের সাথে মিলিয়ে লুকানোর জন্য ফিল্টার করা হয়েছে\n\nসীমাবদ্ধতা\n• কিছু Shorts নাও লুকানো হতে পারে\n• কিছু ইউআই উপাদান নাও লুকানো হতে পারে\n• কোন কীওয়ার্ড সার্চ করলে কোন ফলাফল নাও দেখাতে পারে</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">অবৈধ কীওয়ার্ড ফিল্টার \'%s\' ব্যবহার করা যাবে না</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">ত্রুটিপূর্ণ কীওয়ার্ড। \'%1$s\' টি %2$d অক্ষর থেকে কম</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">সাধারণ বিজ্ঞাপন লুকান</string>
+ <string name="revanced_hide_general_ads_summary_on">সাধারণ বিজ্ঞাপন লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_general_ads_summary_off">সাধারণ বিজ্ঞাপন প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_fullscreen_ads_title">পূর্ণ স্ক্রীন প্যানেল লুকান</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">পূর্ণ স্ক্রীণ বিজ্ঞাপন লুকিয়ে রয়েছে\n\nএই ফিচারটি শুধুমাত্র পুরোনো ডিভাইসের জন্য উপলভ্য</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">পূর্ণ স্ক্রীন বিজ্ঞাপন প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_buttoned_ads_title">বোতামযুক্ত বিজ্ঞাপন লুকান</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">বোতামযুক্ত বিজ্ঞাপন লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">বোতামযুক্ত বিজ্ঞাপন প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_paid_promotion_label_title">অর্থের বিনিময়ে প্রচার অন্তর্ভুক্ত রয়েছে ব্যানার লুকান</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">অর্থের বিনিময়ে প্রচার অন্তর্ভুক্ত রয়েছে ব্যানার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">অর্থের বিনিময়ে প্রচার অন্তর্ভুক্ত রয়েছে ব্যানার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_self_sponsor_ads_title">স্ব-স্পন্সর কার্ড লুকান</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">স্ব-স্পন্সর কার্ড লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">স্ব-স্পন্সর কার্ড প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_products_banner_title">প্রোডাক্ট দেখার ব্যানার লুকান</string>
+ <string name="revanced_hide_products_banner_summary_on">ব্যানার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_products_banner_summary_off">ব্যানার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shopping_links_title">ভিডিওর বিবরণে কেনাকাটার লিঙ্ক লুকান</string>
+ <string name="revanced_hide_shopping_links_summary_on">কেনাকাটার লিঙ্ক লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shopping_links_summary_off">কেনাকাটার লিঙ্ক প্রদর্শিত হয়েছে</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">চ্যানেল পাতায় \'স্টোরে যান\' বোতাম লুকান</string>
+ <string name="revanced_hide_visit_store_button_summary_on">বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_visit_store_button_summary_off">বোতাম দেখানো আছে</string>
+ <string name="revanced_hide_web_search_results_title">লোকেরা এইগুলিও সার্চ করছে লুকান</string>
+ <string name="revanced_hide_web_search_results_summary_on">লোকেরা এইগুলিও সার্চ করছে লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_web_search_results_summary_off">লোকেরা এইগুলিও সার্চ করছে প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_merchandise_banners_title">পণ্যদ্রব্য ব্যানার লুকান</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">পণ্যদ্রব্যের ব্যানার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">পণ্যদ্রব্যের ব্যানার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">পূর্ণস্ক্রীন বিজ্ঞাপন লুকানো পুরোনো ডিভাইসে কাজ করে</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube প্রিমিয়াম প্রচারণা লুকান</string>
+ <string name="revanced_hide_get_premium_summary_on">ভিডিওর নিচের YouTube প্রিমিয়াম প্রচারণা লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_get_premium_summary_off">ভিডিওর নিচের YouTube প্রিমিয়াম প্রচারণা প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">ভিডিও বিজ্ঞাপন লুকান</string>
+ <string name="revanced_hide_video_ads_summary_on">ভিডিও বিজ্ঞাপন লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_video_ads_summary_off">ভিডিও বিজ্ঞাপন প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">ক্লিপবোর্ডে URL অনুলিপি করা হয়েছে</string>
+ <string name="revanced_share_copy_url_timestamp_success">টাইমস্ট্যাম্প সহ URL অনুলিপি করা হয়েছে</string>
+ <string name="revanced_copy_video_url_title">ভিডিও URL অনুলিপি বোতাম দেখান</string>
+ <string name="revanced_copy_video_url_summary_on">বোতাম প্রদর্শিত হয়েছে। URL অনুলিপি করতে ট্যাপ করুন। টাইমস্ট্যাম্প সহ URL অনুলিপি করতে ট্যাপ করে ধরে রাখুন।</string>
+ <string name="revanced_copy_video_url_summary_off">বোতাম প্রদর্শিত হয়নি</string>
+ <string name="revanced_copy_video_url_timestamp_title">টাইমস্ট্যাম্প URL অনুলিপি বোতাম দেখান</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">বোতাম প্রদর্শিত হয়েছে। টাইমস্ট্যাম্প সহ URL অনুলিপি করতে ট্যাপ করুন। টাইমস্ট্যাম্প ছাড়া URL অনুলিপি করতে ট্যাপ করে ধরে রাখুন।</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">বোতাম প্রদর্শিত হয়নি</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">দর্শকের বিচক্ষণতা ডায়ালগ সরান</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">ডায়ালগ সরানো হবে</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">ডায়ালগ প্রদর্শিত হবে</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">এটি বয়সের সীমাবদ্ধতাকে বাইপাস করে না। এটা শুধু স্বয়ংক্রিয়ভাবে গ্রহণ করে।</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">বাহিরে ডাউনলোড</string>
+ <string name="revanced_external_downloader_screen_summary">বাহিরের ডাউনলোডার ব্যবহার করার সেটিং</string>
+ <string name="revanced_external_downloader_title">বাহিরের ডাউনলোডার বাটন দেখান</string>
+ <string name="revanced_external_downloader_summary_on">প্লেয়ারে ডাউনলোড বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_external_downloader_summary_off">প্লেয়ারে ডাউনলোড বোতাম প্রদর্শিত হয়নি</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">ডাউনলোড অ্যাকশন বোতাম ওভাররাইড করুন</string>
+ <string name="revanced_external_downloader_action_button_summary_on">ডাউনলোড বোতামটি আপনার বাহিরের ডাউনলোডার খুলবে</string>
+ <string name="revanced_external_downloader_action_button_summary_off">ডাউনলোড বোতামটি নেটিভ ইন-অ্যাপ ডাউনলোডার খুলবে</string>
+ <string name="revanced_external_downloader_name_title">ডাউনলোডারের প্যাকেজ নাম</string>
+ <string name="revanced_external_downloader_name_summary">আপনার ইনস্টল করা বাইরের ডাউনলোডার অ্যাপের প্যাকেজ নাম, যেমন NewPipe বা Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s ইনস্টল করা নেই, ইনস্টল করুন।</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">ভিডিওর নির্দিষ্ট অংশে যাওয়ার অঙ্গভঙ্গি নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">অঙ্গভঙ্গি নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">অঙ্গভঙ্গি সক্রিয় করা হয়েছে</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">সিকবারে চাপ দেওয়া সক্রিয় করুন</string>
+ <string name="revanced_seekbar_tapping_summary_on">সিকবারে চাপ দেওয়া সক্রিয় করা হয়েছে</string>
+ <string name="revanced_seekbar_tapping_summary_off">সিকবারে চাপ দেওয়া নিষ্ক্রিয় করা হয়েছে</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">উজ্জ্বলতার সোয়াইপ অঙ্গভঙ্গি সক্রিয় করুন</string>
+ <string name="revanced_swipe_brightness_summary_on">উজ্জ্বলতা সোয়াইপ সক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_brightness_summary_off">উজ্জ্বলতা সোয়াইপ নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_volume_title">ভলিউম অঙ্গভঙ্গি সক্রিয় করুন</string>
+ <string name="revanced_swipe_volume_summary_on">ভলিউম সোয়াইপ সক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_volume_summary_off">ভলিউম সোয়াইপ নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_press_to_engage_title">প্রেস-টু-সোয়াইপ অঙ্গভঙ্গি সক্রিয় করুন</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">প্রেস-টু-সোয়াইপ সক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">প্রেস-টু-সোয়াইপ নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_haptic_feedback_title">কম্পন প্রতিক্রিয়া সক্রিয় করুন</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">কম্পন প্রতিক্রিয়া সক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">কম্পন প্রতিক্রিয়া নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">উজ্জ্বলতা সংরক্ষণ এবং পুনরুদ্ধার করুন</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">পূর্ণস্ক্রিনে প্রবেশ বা পূর্ণস্ক্রিন থেকে বাহির হওয়ার সময়, উজ্জ্বলতা সংরক্ষণ এবং পুনরুদ্ধার করবে</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">পূর্ণস্ক্রিনে প্রবেশ বা পূর্ণস্ক্রিন থেকে বাহির হওয়ার সময়, উজ্জ্বলতা সংরক্ষণ এবং পুনরুদ্ধার করবে না</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">স্বয়ংক্রিয়-উজ্জ্বলতার অঙ্গভঙ্গি সক্রিয় করুন</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on"></string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off"></string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Hell</string>
+ <string name="revanced_swipe_overlay_timeout_title"></string>
+ <string name="revanced_swipe_overlay_timeout_summary">The amount of milliseconds the overlay is visible</string>
+ <string name="revanced_swipe_text_overlay_size_title">Swipe overlay text size</string>
+ <string name="revanced_swipe_text_overlay_size_summary">The text size for swipe overlay</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Swipe background visibility</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">The visibility of swipe overlay background</string>
+ <string name="revanced_swipe_threshold_title">Swipe magnitude threshold</string>
+ <string name="revanced_swipe_threshold_summary">The amount of threshold for swipe to occur</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Disable auto captions</string>
+ <string name="revanced_auto_captions_summary_on">Auto captions are disabled</string>
+ <string name="revanced_auto_captions_summary_off">Auto captions are enabled</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Action buttons</string>
+ <string name="revanced_hide_buttons_screen_summary">Hide or show buttons under videos</string>
+ <string name="revanced_hide_like_dislike_button_title">Hide Like and Dislike</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Like and Dislike buttons are hidden</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Like and Dislike buttons are shown</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Hide Share</string>
+ <string name="revanced_hide_share_button_summary_on">Share button is hidden</string>
+ <string name="revanced_hide_share_button_summary_off">Share button is hidden</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Hide Report</string>
+ <string name="revanced_hide_report_button_summary_on">Report button is hidden</string>
+ <string name="revanced_hide_report_button_summary_off">Report button is shown</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Hide Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix button is hidden</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix button is shown</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Hide Download </string>
+ <string name="revanced_hide_download_button_summary_on">ডাউনলোড বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_download_button_summary_off">ডাউনলোড বোতাম দেখানো হয়েছে</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">ধন্যবাদ লুকান</string>
+ <string name="revanced_hide_thanks_button_summary_on">ধন্যবাদ বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_thanks_button_summary_off">ধন্যবাদ বোতাম দেখানো হয়</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Clip button is hidden</string>
+ <string name="revanced_hide_clip_button_summary_off">Clip button is shown</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Hide Save to playlist</string>
+ <string name="revanced_hide_playlist_button_summary_on">Save to playlist button is hidden</string>
+ <string name="revanced_hide_playlist_button_summary_off">Save to playlist button is shown</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Hide autoplay button</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Autoplay button is hidden</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Autoplay button is shown</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Hide captions button</string>
+ <string name="revanced_hide_captions_button_summary_on">Captions button is hidden</string>
+ <string name="revanced_hide_captions_button_summary_off">Captions button is shown</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Hide cast button</string>
+ <string name="revanced_hide_cast_button_summary_on">Cast button is hidden</string>
+ <string name="revanced_hide_cast_button_summary_off">Cast button is shown</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">নেভিগেশন বোতাম</string>
+ <string name="revanced_navigation_buttons_screen_summary">নেভিগেশন বারে বোতাম লুকান বা পরিবর্তন করুন</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">হোম লুকান</string>
+ <string name="revanced_hide_home_button_summary_on">হোম বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_home_button_summary_off">হোম বোতাম দেখানো হয়</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Shorts লুকান</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shorts বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shorts বোতাম প্রদর্শিত হয়েছে</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">লুকান তৈরি করুন</string>
+ <string name="revanced_hide_create_button_summary_on">তৈরি বোতাম লুকানো আছে</string>
+ <string name="revanced_hide_create_button_summary_off">Create button is shown</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Hide Subscriptions</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Subscriptions button is hidden</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Subscriptions button is shown</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Switch Create with Notifications</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">তৈরি করুন বোতাম বিজ্ঞপ্তিগুলো বোতাম দ্বারা স্থান পরিবর্তিত হয়েছে\n\nবিঃদ্রঃ এটি সক্রিয় করার ফলে ভিডিও বিজ্ঞাপন জোরপূর্বক বন্ধ থাকবে</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Create button is not switched with Notifications button</string>
+ <string name="revanced_hide_navigation_button_labels_title">নেভিগেশন বোতাম লেবেল লুকান</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">লেবেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">লেবেল প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Hide or show player flyout menu items</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Hide Captions</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Captions menu is hidden</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Captions menu is shown</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Hide Additional settings</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Additional settings menu is hidden</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Additional settings menu is shown</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Hide Loop video</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Loop video menu is hidden</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Loop video menu is shown</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Hide Ambient mode</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Ambient mode menu is hidden</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Ambient mode menu is shown</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Hide Help & feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Help & feedback menu is hidden</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Help & feedback menu is shown</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Hide Playback speed</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Playback speed menu is hidden</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Playback speed menu is shown</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">আরো তথ্য লুকান</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">আরও তথ্য মেনু লুকানো আছে</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">আরও তথ্য মেনু দেখানো হয়</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">লক স্ক্রীন লুকান</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">লক স্ক্রীন মেনু লুকানো আছে</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">লক স্ক্রিন মেনু দেখানো হয়েছে</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">অডিও ট্র্যাক লুকান</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">অডিও ট্র্যাক মেনু লুকানো আছে</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">অডিও ট্র্যাক মেনু দেখানো হয়</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">ভিআর-এ ঘড়ি লুকান</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">ভিআর মেনুতে দেখুন লুকানো আছে</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">ভিআর মেনুতে দেখুন দেখানো হয়েছে</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">পূর্ববর্তী লুকান & পরবর্তী ভিডিও বোতাম</string>
+ <string name="revanced_hide_player_buttons_summary_on">বোতাম লুকানো হয়</string>
+ <string name="revanced_hide_player_buttons_summary_off">বোতাম দেখানো হয়</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Hide album cards</string>
+ <string name="revanced_hide_album_cards_summary_on">Album cards are hidden</string>
+ <string name="revanced_hide_album_cards_summary_off">Album cards are shown</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">মন্তব্য</string>
+ <string name="revanced_comments_screen_summary">মন্তব্য বিভাগের উপাদানগুলি লুকান বা দেখান৷</string>
+ <string name="revanced_hide_comments_by_members_header_title">\'মেম্বারদের মন্তব্য\' হেডার লুকান</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'মেম্বারদের মন্তব্য\' হেডার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'মেম্বারদের মন্তব্য\' হেডার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_comments_section_title">মন্তব্য বিভাগ লুকান</string>
+ <string name="revanced_hide_comments_section_summary_on">মন্তব্য বিভাগ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_comments_section_summary_off">মন্তব্য বিভাগ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_comments_preview_comment_title">মন্তব্যের পূর্বরূপ লুকান</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">মন্তব্যের পূর্বরূপ লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">মন্তব্যের পূর্বরূপ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_comments_thanks_button_title">ধন্যবাদ বোতাম লুকান</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">ধন্যবাদ বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">ধন্যবাদ বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">টাইমস্ট্যাম্প ও ইমোজি বোতাম লুকান</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">টাইমস্ট্যাম্প ও ইমোজি বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">টাইমস্ট্যাম্প ও ইমোজি বোতাম প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">গণ-অর্থায়ন বাক্স লুকান</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">গণ-অর্থায়ন বাক্স লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">গণ-অর্থায়ন বাক্স প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">শেষ স্ক্রীন কার্ড লুকান</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">শেষ স্ক্রীন কার্ড লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">শেষ স্ক্রীন কার্ড প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">ফিল্টার বার</string>
+ <string name="revanced_hide_filter_bar_screen_summary">ফিড, অনুসন্ধান এবং সম্পর্কিত ভিডিওতে ফিল্টার বার লুকান বা প্রদর্শন করুন</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">ফিডে লুকান</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">ফিডে লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">ফিডে প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">অনুসন্ধানে লুকান</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">অনুসন্ধানে লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">অনুসন্ধানে প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">সম্পর্কিত ভিডিওতে লুকান</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">সম্পর্কিত ভিডিওতে লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">সম্পর্কিত ভিডিওতে প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">ভাসমান মাইক্রোফোন বোতাম লুকান</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">মাইক্রোফোন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">মাইক্রোফোন বোতাম প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">পূর্ণ স্ক্রীনে অ্যাম্বিয়েন্ট মোড নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">অ্যাম্বিয়েন্ট মোড নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">অ্যাম্বিয়েন্ট মোড সক্রিয় করা হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">তথ্য কার্ড লুকান</string>
+ <string name="revanced_hide_info_cards_summary_on">তথ্য কার্ড লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_info_cards_summary_off">তথ্য কার্ড প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">রোলিং নাম্বার অ্যানিমেশন নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">রোলিং নাম্বার অ্যানিমেটেড নয়</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">রোলিং নাম্বার অ্যানিমেটেড</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">ভিডিও প্লেয়ারে সিকবার লুকান</string>
+ <string name="revanced_hide_seekbar_summary_on">ভিডিও প্লেয়ারে সিকবার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_seekbar_summary_off">ভিডিও প্লেয়ারে সিকবার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">ভিডিও থাম্বনেইলে সিকবার লুকান</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">থাম্বনেইলে সিকবার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">থাম্বনেইলে সিকবার প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">প্রধান ফিডে Shorts লুকান</string>
+ <string name="revanced_hide_shorts_home_summary_on">প্রধান ফিডে Shorts লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_home_summary_off">প্রধান ফিডে Shorts প্রদর্শিত হয়েছে</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">সদস্যতা ফিডে Shorts লুকান</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">সদস্যতা ফিডে Shorts লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">সদস্যতা ফিডে Shorts প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_search_title">অনুসন্ধান ফলাফলে Shorts লুকান</string>
+ <string name="revanced_hide_shorts_search_summary_on">অনুসন্ধান ফলাফলে Shorts লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_search_summary_off">অনুসন্ধান ফলাফলে Shorts প্রদর্শিত হয়েছে</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">জয়েন করুন বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">জয়েন করুন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">জয়েন করুন বোতাম প্রদর্শিত হয়েছে</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">সদস্যতা নিন বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">সদস্যতা নিন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">সদস্যতা নিন বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">থেমে থাকা ওভারলে বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">থেমে থাকা ওভারলে বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">থেমে থাকা ওভারলে বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_shop_button_title">কেনাকাটা বাটন লুকান</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">কেনাকাটা বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">কেনাকাটা বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">সুপার ধন্যবাদ বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">সুপার ধন্যবাদ বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">সুপার ধন্যবাদ বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_tagged_products_title">ট্যাগ করা প্রোডাক্টগুলি লুকান</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">ট্যাগ করা প্রোডাক্টগুলি লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">ট্যাগ করা প্রোডাক্টগুলি প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_location_label_title">অবস্থান লেবেল লুকান</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">অবস্থান লেবেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">অবস্থান লেবেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">প্লেলিস্টে সাউন্ড সংরক্ষণ করুন বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">প্লেলিস্টে সাউন্ড সংরক্ষণ করুন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">প্লেলিস্টে সাউন্ড সংরক্ষণ করুন বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">অনুসন্ধান পরামর্শগুলি লুকান</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">অনুসন্ধান পরামর্শগুলি লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">অনুসন্ধান পরামর্শগুলি প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_like_button_title">পছন্দ বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">পছন্দ বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">পছন্দ বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_dislike_button_title">অপছন্দ বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">অপছন্দ বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">অপছন্দ বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_comments_button_title">মন্তব্য বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">মন্তব্য বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">মন্তব্য বোতাম প্রদর্শিত হয়েছে</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">রিমিক্স করুন বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">রিমিক্স করুন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">রিমিক্স করুন বোতাম প্রদর্শিত হয়েছে</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">শেয়ার করুন বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">শেয়ার করুন বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">শেয়ার করুন বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_info_panel_title">তথ্য প্যানেল লুকান</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">তথ্য প্যানেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">তথ্য প্যানেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_channel_bar_title">চ্যানেল বার লুকান</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">চ্যানেল বার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">চ্যানেল বার প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_video_title_title">ভিডিওর শিরোনাম লুকান</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">শিরোনাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">শিরোনাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">সাউন্ড মেটাডাটা লেবেল লুকান</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">সাউন্ড মেটাডাটা লেবেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">সাউন্ড মেটাডাটা লেবেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">সম্পূর্ণ ভিডিও লিঙ্ক লেবেল লুকান</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">ভিডিও লিঙ্ক লেবেল লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">ভিডিও লিঙ্ক লেবেল প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_sound_button_title">সাউন্ড বোতাম লুকান</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">সাউন্ড বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">সাউন্ড বোতাম লুকান প্রদর্শিত হয়েছে</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">নেভিগেশন বার লুকান</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">নেভিগেশন বার লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">পনেভিগেশন বার প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">ভিডিওর শেষ স্ক্রিণে সাজেস্ট করা ভিডিও নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">সাজেস্ট করা ভিডিও নিস্ক্রিয় করা হবে</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">সাজেস্ট করা ভিডিও প্রদর্শিত হবে</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">ভিডিওর সময়স্ট্যাম্প লুকান</string>
+ <string name="revanced_hide_timestamp_summary_on">সময়স্ট্যাম্প লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_timestamp_summary_off">সময়স্ট্যাম্প প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">প্লেয়ার পপআপ প্যানেলগুলো লুকান</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">প্লেয়ার পপআপ প্যানেলগুলো লুকিয়ে রয়েছে</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">প্লেয়ার পপআপ প্যানেলগুলো প্রদর্শিত হয়েছে</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">প্লেয়ার ওভারলে অস্বচ্ছতা</string>
+ <string name="revanced_player_overlay_opacity_summary">অসচ্ছতা মান ০-১০০ এর মধ্যে, যেখানে ০ হল সম্পূর্ণ স্বচ্ছ</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">প্লেয়ার ওভারলে অস্বচ্ছতা অবশ্যই ০-১০০ এর মধ্যে হতে হবে</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">লুকিয়ে রয়েছে</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">অপছন্দ সাময়িকভাবে উপলভ্য নয় (API সময় শেষ হয়েছে)</string>
+ <string name="revanced_ryd_failure_connection_status_code">অপছন্দ উপলভ্য নয় (অবস্থা %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">অপছন্দ উপলভ্য নয় (ক্লায়েন্ট API সীমা পৌঁছেছে)</string>
+ <string name="revanced_ryd_failure_generic">অপছন্দ উপলভ্য নয় (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike দিয়ে ভোট দিতে ভিডিও আবার লোড করুন</string>
+ <string name="revanced_ryd_enable_summary_on">অপছন্দগুলো প্রদর্শিত হয়েছে</string>
+ <string name="revanced_ryd_enable_summary_off">অপছন্দগুলো প্রদর্শিত হয়নি</string>
+ <string name="revanced_ryd_shorts_title">Shorts এ অপছন্দ দেখান</string>
+ <string name="revanced_ryd_shorts_summary_on">Shorts এ অপছন্দ পদর্শিত হয়েছে</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Shorts এ অপছন্দ পদর্শিত হয়েছে\n\nসীমাবদ্ধতা: ছদ্মবেশী মোডে অপছন্দ নাও দেখাতে পারে</string>
+ <string name="revanced_ryd_shorts_summary_off">Shorts এ অপছন্দ লুকিয়ে রয়েছে</string>
+ <string name="revanced_ryd_dislike_percentage_title">অপছন্দগুলো শতাংশ অনুযায়ী</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">অপছন্দগুলো শতাংশ অনুযায়ী প্রদর্শিত হয়েছে</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">অপছন্দগুলো সংখ্যা অনুযায়ী প্রদর্শিত হয়েছে</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">সংক্ষিপ্ত পছন্দ বোতাম</string>
+ <string name="revanced_ryd_compact_layout_summary_on">পছন্দ বোতামটি ন্যূনতম প্রস্থের জন্য সাজানো হয়েছে</string>
+ <string name="revanced_ryd_compact_layout_summary_off">পছন্দ বোতামটি সেরা চেহারার জন্য সাজানো হয়েছে</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">API উপলভ্য না থাকলে একটি টোস্ট দেখান</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Return YouTube Dislike উপলভ্য না থাকলে টোস্ট দেখানো হবে</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Return YouTube Dislike উপলভ্য না থাকলে টোস্ট দেখানো হবে না</string>
+ <string name="revanced_ryd_about">সম্পর্কিত</string>
+ <string name="revanced_ryd_attribution_summary">তথ্য প্রদান করা হয় Return YouTube Dislike API দ্বারা। আরও জানতে এখানে ট্যাপ করুন</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">এই ডিভাইসের ReturnYouTubeDislike API পরিসংখ্যান</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API প্রতিক্রিয়া সময়, স্বাভাবিক</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API প্রতিক্রিয়া সময়, নূন্যতম</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API প্রতিক্রিয়া সময়, সর্বোচ্চ</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API প্রতিক্রিয়া সময়, পূর্বের ভিডিওর ন্যায়</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">অপছন্দগুলো সাময়িকভাবে উপলভ্য নয় - ক্লায়েন্ট API রেট লিমিট এর প্রভাব</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API ভোট, কল সংখ্যা</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">কোন নেটওয়ার্ক কল তৈরি করা হয়নি</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d নেটওয়ার্ক কল তৈরি হয়েছে</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">এপিআই ভোট, টাইমআউটের সংখ্যা</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">কোন নেটওয়ার্ক কল সময় শেষ হয়নি</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d নেটওয়ার্ক কল সময় শেষ হয়েছে</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API ক্লায়েন্ট রেট লিমিট</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">কোন ক্লায়েন্ট লিমিট এর সম্মুখীন হয়নি</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">%d বার ক্লায়েন্ট রেট লিমিট এর সম্মুখীন হয়েছে</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d মিলিসেকেন্ড</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">প্রশস্ত অনুসন্ধান বার সক্রিয় করুন</string>
+ <string name="revanced_wide_searchbar_summary_on">প্রশস্ত অনুসন্ধান বার সক্রিয় হয়েছে</string>
+ <string name="revanced_wide_searchbar_summary_off">প্রশস্ত অনুসন্ধান বার নিষ্ক্রিয় হয়েছে</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">পুরোনো সিকবার থাম্বনেইল পুনরুদ্ধার করুন</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">সিকবার এর উপরে সিকবার থাম্বনেইল দেখানো হবে</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">পূর্ণস্ক্রীণে সিকবার থাম্বনেইল দেখানো হবে</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock সক্রিয় করুন</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock হল ইউটিউব ভিডিওতে বিরক্তিকর অংশ গুলো এড়িয়ে যাওয়ার জন্য একটি ক্রাউড-সোর্স পদ্ধতি</string>
+ <string name="revanced_sb_appearance_category">রূপ</string>
+ <string name="revanced_sb_enable_voting">ভোটিং বাটন দেখান</string>
+ <string name="revanced_sb_enable_voting_sum_on">সেগমেন্ট ভোটিং বাটন প্রদর্শিত রয়েছে</string>
+ <string name="revanced_sb_enable_voting_sum_off">সেগমেন্ট ভোটিং বাটন প্রদর্শিত হয়নি</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">সংক্ষিপ্ত স্কিপ বাটন ব্যবহার করুন</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">স্কিপ বোতামটি ন্যূনতম প্রস্থের জন্য সাজানো হয়েছে</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">স্কিপ বোতামটি সেরা চেহারার জন্য সাজানো হয়েছে</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">স্কিপ বোতাম স্বয়ংক্রিয়ভাবে লুকান</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">কয়েক সেকেন্ড পরে স্কিপ বোতাম লুকিয়ে যায়</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">স্কিপ বোতাম পুরো সেগমেন্টে দৃশ্যমান থাকে</string>
+ <string name="revanced_sb_general_skiptoast">স্বয়ংক্রিয়ভাবে এড়িয়ে যাওয়ার সময় একটি টোস্ট দেখান</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">সেগমেন্ট স্বয়ংক্রিয়ভাবে এড়িয়ে যেতে একটি টোস্ট দেখানো হয়। উদাহরণ দেখতে এখানে ট্যাপ করুন</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">টোস্ট দেখানো হচ্ছে না। উদাহরণ দেখতে এখানে ট্যাপ করুন</string>
+ <string name="revanced_sb_general_time_without">সেগমেন্ট ছাড়া ভিডিওর দৈর্ঘ্য দেখান</string>
+ <string name="revanced_sb_general_time_without_sum_on">সমস্ত সেগমেন্ট ছাড়াই ভিডিওর দৈর্ঘ্য, পূর্ণ ভিডিওর দৈর্ঘ্যের পাশে বন্ধনীতে উল্লেখ করা হয়</string>
+ <string name="revanced_sb_general_time_without_sum_off">সম্পূর্ণ ভিডিও দৈর্ঘ্য প্রদর্শিত হয়েছে</string>
+ <string name="revanced_sb_create_segment_category">নতুন সেগমন্ট তৈরি হচ্ছে</string>
+ <string name="revanced_sb_enable_create_segment">নতুন সেগমেন্ট তৈরির বাটন দেখান</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">নতুন সেগমেন্ট তৈরির বাটন প্রদর্শিত হয়েছে</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">নতুন সেগমেন্ট তৈরির বাটন প্রদর্শিত হয়নি</string>
+ <string name="revanced_sb_general_adjusting">নতুন সেগমেন্টের পদক্ষেপ সামঞ্জস্য করুন</string>
+ <string name="revanced_sb_general_adjusting_sum">নতুন সেগমেন্ট তৈরি করার সময় সময় সমন্বয় বাটন কত মিলিসেকেন্ড পরিবর্তন করে</string>
+ <string name="revanced_sb_general_adjusting_invalid">মানটি অবশ্যই একটি ধনাত্মক সংখ্যা হতে হবে</string>
+ <string name="revanced_sb_guidelines_preference_title">নির্দেশিকা দেখুন</string>
+ <string name="revanced_sb_guidelines_preference_sum">নির্দেশিকাতে সেগমেন্ট জমা দেওয়ার বিষয়ে টিপস এবং নিয়ম রয়েছে</string>
+ <string name="revanced_sb_guidelines_popup_title">নির্দেশিকা অনুসরণ করুন</string>
+ <string name="revanced_sb_guidelines_popup_content">কোন সেগমেন্ট জমা দেয়ার আগে SponsorBlock নির্দেশিকা পড়ার পরামর্শ দেয়া হয়</string>
+ <string name="revanced_sb_guidelines_popup_already_read">ইতোমধ্যে পড়া হয়েছে</string>
+ <string name="revanced_sb_guidelines_popup_open">আমাকে দেখান</string>
+ <string name="revanced_sb_general">সাধারণ</string>
+ <string name="revanced_sb_toast_on_connection_error_title">API উপলভ্য না থাকলে একটি টোস্ট দেখান</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">SponsorBlock উপলভ্য না হলে টোস্ট দেখানো হয়</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">SponsorBlock উপলভ্য না হলে টোস্ট দেখানো হয় না</string>
+ <string name="revanced_sb_general_skipcount">স্কিপ কাউন্ট ট্র্যাকিং সক্রিয় করুন</string>
+ <string name="revanced_sb_general_skipcount_sum_on">SponsorBlock লিডারবোর্ডে জানান যে কত সময় সংরক্ষিত হয়েছে। সেগমেন্ট স্কিপ করা হলে লিডারবোর্ডে একটি বার্তা প্রেরণ করা হয়</string>
+ <string name="revanced_sb_general_skipcount_sum_off">স্কিপ কাউন্ট ট্র্যাকিং সক্রিয় হয়নি</string>
+ <string name="revanced_sb_general_min_duration">ন্যূনতম সেগমেন্ট সময়কাল</string>
+ <string name="revanced_sb_general_min_duration_sum">এই মান (সেকেন্ড) হতে কম দৈর্ঘ্যের সেগমেন্ট প্রদর্শিত বা স্কিপ করা হবে না</string>
+ <string name="revanced_sb_general_uuid">আপনার ব্যক্তিগত ব্যবহারকারী আইডি</string>
+ <string name="revanced_sb_general_uuid_sum">এটি গোপন রাখা উচিত। এটি একটি পাসওয়ার্ডের মতো এবং কারও সাথে শেয়ার করা উচিত নয়। যদি কারও কাছে এটি থাকে, তবে তারা আপনার ছদ্মবেশ ধারণ করতে পারে</string>
+ <string name="revanced_sb_general_uuid_invalid">ব্যক্তিগত ব্যবহাকারী আইডি অবশ্যই ৩০ অক্ষর লম্বা হতে হবে</string>
+ <string name="revanced_sb_general_api_url">API URL পরিবর্তন করুন</string>
+ <string name="revanced_sb_general_api_url_sum">এই ঠিকানা ব্যবহার করে SponsorBlock সার্ভারের সাথে যুক্ত হতে কল করে</string>
+ <string name="revanced_sb_api_url_reset">API URL আবার সেট করুন</string>
+ <string name="revanced_sb_api_url_invalid">API URL টি ভুল</string>
+ <string name="revanced_sb_api_url_changed">API URL পরিবর্তন হয়েছে</string>
+ <string name="revanced_sb_settings_ie">সেটিং আমদানি/রপ্তানি</string>
+ <string name="revanced_sb_settings_copy">অনুলিপি করুন</string>
+ <string name="revanced_sb_settings_ie_sum">আপনার SponsorBlock JSON কনফিগারেশন যা ReVanced বা অন্য কোন SponsorBlock প্ল্যাটফর্মে আমদানি/রপ্তানি করা যাবে</string>
+ <string name="revanced_sb_settings_ie_sum_warning">এটি আপনার একটি SponsorBlock JSON কনফিগারেশন যা ReVanced এবং অন্যান্য SponsorBlock প্ল্যাটফর্মে ইমপোর্ট / এক্সপোর্ট করা যেতে পারে। এটিতে আপনার ব্যক্তিগত ব্যবহারকারী আইডিও রয়েছে। এটি কোথাও শেয়ার করার সময় বিবেচনা করে করবেন</string>
+ <string name="revanced_sb_settings_import_successful">সেটিং সফলভাবে আমদানি করা হয়েছে</string>
+ <string name="revanced_sb_settings_import_failed">%s আমদানি করতে ব্যর্থ হয়েছে</string>
+ <string name="revanced_sb_settings_export_failed">%s রপ্তানি করতে ব্যর্থ হয়েছে</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">আপনার সেটিংএ একটি প্রাইভেট SponsorBlock ব্যবহারকারী আইডি রয়েছে।\n\nআপনার ব্যবহারকারী আইডি অনেকটা পাসওয়ার্ডের মতো তাই এটি কখনোই শেয়ার করা উচিত নয়।\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">আবার দেখাবেন না</string>
+ <string name="revanced_sb_diff_segments">সেগমেন্ট আচরণ পরিবর্তন করুন</string>
+ <string name="revanced_sb_segments_sponsor">স্পন্সর</string>
+ <string name="revanced_sb_segments_sponsor_sum">পেইড প্রমোশন, পেইড রেফারেল এবং সরাসরি বিজ্ঞাপন। নিজের পছন্দসই কারণ/স্রষ্টা/ওয়েবসাইট/পণ্যগুলিতে স্ব-প্রচার বা বিনামূল্যে প্রচারের জন্য নয়।</string>
+ <string name="revanced_sb_segments_selfpromo">বিনা অর্থপ্রাপ্ত/স্ব-প্রচার</string>
+ <string name="revanced_sb_segments_selfpromo_sum">\'স্পন্সর\' এর মতো কিন্তু বিনা বেতন বা স্ব-প্রচার ব্যতীত। এর মধ্যে পণ্যদ্রব্য, অনুদান, বা কার সাথে সহযোগিতা করেছে সে সম্পর্কে তথ্য অন্তর্ভুক্ত রয়েছে</string>
+ <string name="revanced_sb_segments_interaction">কথোপথন অনুস্মারক (সাবস্ক্রাইব)</string>
+ <string name="revanced_sb_segments_interaction_sum">যখন সামগ্রীর মাঝখানে তাদেরকে লাইক, সাবস্ক্রাইব বা ফলো করার জন্য একটি সংক্ষিপ্ত অনুস্মারক থাকে। যদি এটি দীর্ঘ বা নির্দিষ্ট কিছু সম্পর্কে হয় তবে পরিবর্তে এটি স্ব -প্রচারের অধীনে থাকা উচিত</string>
+ <string name="revanced_sb_segments_highlight">লক্ষণীয় করা</string>
+ <string name="revanced_sb_segments_highlight_sum">ভিডিওর অংশ যা বেশিরবাগ মানুষই দেখছে</string>
+ <string name="revanced_sb_segments_intro">অন্তর্বর্তীকরণ/পরিচয় বিভাগের অ্যানিমেশন</string>
+ <string name="revanced_sb_segments_intro_sum">প্রকৃত বিষয়বস্তু ছাড়াই একটি বিরতি। বিরতি, স্থির ফ্রেম, অ্যানিমেশন পুনরাবৃত্তি হতে পারে। এটি তথ্যযুক্ত ট্রানজিশনের জন্য ব্যবহার করা উচিত নয়</string>
+ <string name="revanced_sb_segments_outro">এন্ডকার্ডস/কৃতজ্ঞতা স্বীকার</string>
+ <string name="revanced_sb_segments_outro_sum">ক্রেডিট বা যখন ইউটিউব এন্ডকার্ডগুলি উপস্থিত হয়। তথ্য সহ সিদ্ধান্তের জন্য নয়</string>
+ <string name="revanced_sb_segments_preview">পূর্বরূপ/সংক্ষিপ্তবৃত্তি/হুক</string>
+ <string name="revanced_sb_segments_preview_sum">একটি সমষ্টি ক্লিপ সমূহ যা ভিডিওতে এসে যা হচ্ছে বা অন্য ভিডিও সিরিজে ঘটেছে সেগুলি দেখায় যেখানে সমস্ত তথ্য অন্যত্র পুনরাবৃত্তি করা হয়</string>
+ <string name="revanced_sb_segments_filler">স্পর্শক/কৌতুক ফিল্টার করুন</string>
+ <string name="revanced_sb_segments_filler_sum">স্পর্শকাতর দৃশ্যগুলি শুধুমাত্র ফিলার বা হাস্যরসের জন্য যোগ করা হয়েছে যা ভিডিওর মূল বিষয়বস্তু বোঝার প্রয়োজন নেই। প্রসঙ্গ বা পটভূমির বিশদ প্রদানকারী বিভাগগুলি এতে অন্তর্ভুক্ত করা উচিত নয়</string>
+ <string name="revanced_sb_segments_nomusic">সঙ্গীত: সঙ্গীতবিহীন অংশ</string>
+ <string name="revanced_sb_segments_nomusic_sum">শুধুমাত্র সঙ্গীত ভিডিওতে ব্যবহারের জন্য। এটি কেবলমাত্র সংগীত ভিডিওর সেসব বিভাগের জন্য ব্যবহার করা উচিত যা ইতিমধ্যে অন্য কোনও বিভাগ দ্বারা আচ্ছাদিত নয়।</string>
+ <string name="revanced_sb_skip_button_compact">এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_compact_highlight">লক্ষণীয় করা</string>
+ <string name="revanced_sb_skip_button_sponsor">স্পন্সর এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_selfpromo">প্রচারণা এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_interaction">ইন্টারঅ্যাক্ট এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_highlight">গুরুত্বপূর্ণ অংশে এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_intro_beginning">সূচনা এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_intro_middle">উপসংহার এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_intro_end">উপসংহার এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_outro">শেষ অংশ এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_preview_beginning">প্রিভিউ এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_preview_middle">প্রিভিউ এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_preview_end">সংক্ষিপ্তবৃত্তি এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_filler">ফিল্টার এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_nomusic">সঙ্গীত-বিহীন অংশ এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_button_unsubmitted">সেগমেন্ট এড়িয়ে যান</string>
+ <string name="revanced_sb_skipped_sponsor">স্পন্সর এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_selfpromo">স্ব-প্রচার এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_interaction">বিরক্তিকর অনুস্মারক এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_highlight">গুরুত্বপূর্ণ অংশে এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_intro_beginning">সূচনা এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_intro_middle">উপসংহার এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_intro_end">উপসংহার এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_outro">শেষ অংশ এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_preview_beginning">প্রাকদর্শন এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_preview_middle">প্রাকদর্শন এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_preview_end">সংক্ষিপ্তবৃত্তি এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_filler">ফিল্টার এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_nomusic">একটি সঙ্গীতবিহীন অংশ এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_unsubmitted">জমা না হওয়া সেগমেন্ট এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skipped_multiple_segments">একটানা একাধিক সেগমেন্ট এড়িয়ে গেছে</string>
+ <string name="revanced_sb_skip_automatically">স্বয়ংক্রিয়ভাবে এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_automatically_once">একবার স্বয়ংক্রিয়ভাবে এড়িয়ে যান</string>
+ <string name="revanced_sb_skip_showbutton">এড়িয়ে যান বোতামটি দেখান</string>
+ <string name="revanced_sb_skip_seekbaronly">সিকবারে দেখান</string>
+ <string name="revanced_sb_skip_ignore">নিষ্ক্রিয় করুন</string>
+ <string name="revanced_sb_submit_failed_invalid">%s সেগমেন্ট জমা দিতে সক্ষম হয়নি</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock সাময়িকভাবে বন্ধ আছে</string>
+ <string name="revanced_sb_submit_failed_unknown_error">সেগমেন্ট জমা দিতে সক্ষম হয়নি (অবস্থা: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">সেগমেন্ট জমা করা সম্ভব হয়নি।\nরেট লিমিট (একই ব্যবহারকারী বা IP থেকে অনেক বেশি)</string>
+ <string name="revanced_sb_submit_failed_forbidden">সেগমেন্ট জমা করা যাবে না: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">সেগমেন্ট জমা করা সম্ভব নয়।\nইতোমধ্যে রয়েছে</string>
+ <string name="revanced_sb_submit_succeeded">সেগমেন্ট সফলভাবে জমা হয়েছে</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock সাময়িকভাবে উপলভ্য নয় (API সময় শেষ হয়েছে)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock সাময়িকভাবে উপলভ্য নয় (অবস্থা %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock সাময়িকভাবে উপলভ্য নয়</string>
+ <string name="revanced_sb_vote_failed_timeout">সেগমেন্ট এর জন্য ভোট করা সম্ভব হয়নি (API সময় শেষ)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">সেগমেন্টের জন্য ভোট সম্ভব নয় (অবস্থা: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">সেগমেন্টের জন্য ভোট দেয়া সম্ভব নয়: %s</string>
+ <string name="revanced_sb_vote_upvote">আপ ভোট</string>
+ <string name="revanced_sb_vote_downvote">ডাউন ভোট</string>
+ <string name="revanced_sb_vote_category">বিভাগ পরিবর্তন করুন</string>
+ <string name="revanced_sb_vote_no_segments">ভোট দেয়ার জন্য আর কোন সেগমেন্ট নেই</string>
+ <string name="revanced_sb_new_segment_choose_category">সেগমেন্টের বিভাগ নির্বাচন করুন</string>
+ <string name="revanced_sb_new_segment_disabled_category">সেটিং থেকে বিভাগ নিস্ক্রিয় করা হয়েছে। জমা দিতে বিভাগ সক্রিয় করুন।</string>
+ <string name="revanced_sb_new_segment_title">নতুন স্পন্সরব্লক সেগমেন্ট</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">একটি নতুন সেগমেন্টের শুরু বা শেষ হিসাবে %1$02d:%2$02d:%3$03d সেট করবেন?</string>
+ <string name="revanced_sb_new_segment_mark_start">শুরু</string>
+ <string name="revanced_sb_new_segment_mark_end">শেষ</string>
+ <string name="revanced_sb_new_segment_now">এখন</string>
+ <string name="revanced_sb_new_segment_time_start">সেগমেন্টটি শুরু হওয়ার সময়</string>
+ <string name="revanced_sb_new_segment_time_end">সেগমেন্টটি শেষ হওয়ার সময়</string>
+ <string name="revanced_sb_new_segment_confirm_title">সময়কাল কি সঠিক?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">সেগমেন্ট সময়কাল\n\n%1$s\nথেকে\n%2$s\n\n(%3$s)\n\nজমা করার জন্য প্রস্তুত?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">শুরু অবশ্যই শেষের আগে হতে হবে</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">আগে সময় বারে দুটি অবস্থান চিহ্নিত করুন</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">সেগমেন্টটি পূর্বরূপ দেখুন এবং নিশ্চিত হোন যে এটি মসৃণভাবে এড়িয়ে যাচ্ছে</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">সেগমেন্টের সময় ম্যানুয়ালি সম্পাদনা করুন</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">আপনি কি সেগমেন্টের শুরু বা শেষের সময় সম্পাদনা করতে চান?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">ভুল সময় দেয়া হয়েছে</string>
+ <string name="revanced_sb_stats">পরিসংখ্যান</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">পরিসংখ্যান সাময়িকভাবে উপলভ্য নয় (API ডাউন)</string>
+ <string name="revanced_sb_stats_loading">লোড হচ্ছে...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock নিস্ক্রিয় হয়েছে</string>
+ <string name="revanced_sb_stats_username">আপনার ব্যবহারকারী নাম: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">আপনার ব্যবহারকারী নাম পরিবর্তন করতে ট্যাপ করুন</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">ব্যবহারকারীর নাম পরিবর্তন সফল হয়নি: অবস্থা: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">ব্যবহারকারীর নাম সফলভাবে পরিবর্তন হয়েছে</string>
+ <string name="revanced_sb_stats_reputation">আপনার রিপুটেশন হল <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">আপনি <b>%s</b> সেগমেন্ট তৈরি করেছেন</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock লিডারবোর্ড</string>
+ <string name="revanced_sb_stats_saved">আপনি মানুষকে <b>%s</b> সেগমেন্ট থেকে বাঁচিয়েছেন</string>
+ <string name="revanced_sb_stats_saved_sum_zero">বৈশ্বিক পরিসংখ্যান এবং শীর্ষ অবদানকারীদের দেখতে এখানে ট্যাপ করুন</string>
+ <string name="revanced_sb_stats_saved_sum">এটি তাদের জীবনের <b>%s</b> সময়।<br> লিডারবোর্ড দেখতে ট্যাপ করুন</string>
+ <string name="revanced_sb_stats_self_saved">আপনি <b>%s</b> সেগমেন্ট এড়িয়ে গেছেন</string>
+ <string name="revanced_sb_stats_self_saved_sum">তাহলো <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">এড়িয়ে যাওয়া করা সেগমেন্টের হিসাব রাখা আবার সেট করতে চান?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s ঘন্টা %2$s মিনিট</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s মিনিট %2$s সেকেন্ড</string>
+ <string name="revanced_sb_stats_saved_second_format">%s সেকেন্ড</string>
+ <string name="revanced_sb_color_dot_label">রং:</string>
+ <string name="revanced_sb_color_changed">রং পরিবর্তন করা হয়েছে</string>
+ <string name="revanced_sb_color_reset">রং আবার সেট করুন</string>
+ <string name="revanced_sb_color_invalid">রংয়ের ভুল কোড</string>
+ <string name="revanced_sb_reset_color">রং আবার সেট করুন</string>
+ <string name="revanced_sb_reset">পুনরায় সেট করুন</string>
+ <string name="revanced_sb_about">সম্পর্কিত</string>
+ <string name="revanced_sb_about_api_sum">ডেটা SponsorBlock API দ্বারা সরবরাহ করা হয়। আরও জানতে এবং অন্যান্য প্ল্যাটফর্মের ডাউনলোড দেখতে এখানে ট্যাপ করুন</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">অ্যাপ সংস্করণ স্পুফ করুন</string>
+ <string name="revanced_spoof_app_version_summary_on">সংস্করণ স্পুফ করা হয়েছে</string>
+ <string name="revanced_spoof_app_version_summary_off">সংস্করণ স্পুফ করা হয়নি</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">অ্যাপ সংস্করণ পুরোনো একটি সংস্করণে স্পুফ করা হবে।\n\nএটি অ্যাপের চেহারা এবং ফিচার পরিবর্তন করে, কিন্তু এতে অনাকাঙ্খিত পার্শ্বপ্রতিক্রিয়া দেখা দিতে পারে।\n\nপরবর্তীতে বন্ধ করা হলে, UI বাগ থেকে বাঁচতি অ্যাপের ডাটা ক্লিয়ার করার প্রস্তাবনা রইলো।</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">স্পুফ অ্যাপ সংস্করণ লক্ষ্য</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">১৮.৩৩.৪০ - ছদ্মবেশি মোডে RYD পুনরুদ্ধার করে</string>
+ <string name="revanced_spoof_app_version_target_entry_2">১৮.২০.৩৯ - প্রশ্বস্ত ভিডিও স্পিড এবং গুণমান মেনু পুনরুদ্ধার করে</string>
+ <string name="revanced_spoof_app_version_target_entry_3">১৮.০৯.৩৯ - লাইব্রেরি ট্যাপ পুনরুদ্ধার করে</string>
+ <string name="revanced_spoof_app_version_target_entry_4">১৭.৪১.৩৯ - পুরোনো প্লেলিস্ট শেলফ পুনরুদ্ধার করে</string>
+ <string name="revanced_spoof_app_version_target_entry_5">১৭.৩৩.৪২ - পুরোনো UI লেআউট পুনরুদ্ধার করে</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">শুরুর পৃষ্ঠা সেট করুন</string>
+ <string name="revanced_start_page_entry_0">পূর্ব-নির্ধারিত</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">হোম পেজ</string>
+ <string name="revanced_start_page_entry_2">অনুসন্ধান</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">সদস্যতা</string>
+ <string name="revanced_start_page_entry_4">ঘুরে দেখুন</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">আপনি ট্যাব</string>
+ <string name="revanced_start_page_entry_7">পছন্দ করা ভিডিওগুলি</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">ইতিহাস</string>
+ <string name="revanced_start_page_entry_9">এখন জনপ্রিয়</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Shorts প্লেয়ার আবার চালানো নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">অ্যাপের শুরুতে Shorts প্লেয়ার আবার চলবে না</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">অ্যাপের শুরুতে Shorts প্লেয়ার আবার চলবে</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">ট্যাবলেট লেআউট সক্রিয় করুন</string>
+ <string name="revanced_tablet_layout_summary_on">ট্যাবলেট লেআউট সক্রিয় হয়েছে</string>
+ <string name="revanced_tablet_layout_summary_off">ট্যাবলেট লেআউট নিষ্ক্রিয় হয়েছে</string>
+ <string name="revanced_tablet_layout_user_dialog_message">ট্যাবলেট লেআউটে কমিউনিটি পোস্ট দেখাবে না</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">মিনিপ্লেয়ার</string>
+ <string name="revanced_miniplayer_screen_summary">অ্যাপের মধ্যকার মিনিমাইজড প্লেয়ার এর ধরণ পরিবর্তন করুন</string>
+ <string name="revanced_miniplayer_type_title">মিনিপ্লেয়ার ধরণ</string>
+ <string name="revanced_miniplayer_type_entry_1">আসল</string>
+ <string name="revanced_miniplayer_type_entry_2">ফোন</string>
+ <string name="revanced_miniplayer_type_entry_3">ট্যাবলেট</string>
+ <string name="revanced_miniplayer_type_entry_4">মর্ডান ১</string>
+ <string name="revanced_miniplayer_type_entry_5">মর্ডান ২</string>
+ <string name="revanced_miniplayer_type_entry_6">মর্ডান ৩</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">বিস্তৃত ও বন্ধ করার বোতাম লুকান</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">বোতামগুলো লুকিয়ে রয়েছে\n(সোয়াইপ করে মিনিপ্লেয়ার বিস্তৃত বা বন্ধ করা)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">বিস্তৃত এবং বন্ধ করার বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_miniplayer_hide_subtext_title">উপপাঠ লুকান</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">উপপাঠ লুকিয়ে রয়েছে</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">উপপাঠ প্রদর্শিত হয়েছে</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">সামনে বা পেছনে এড়িয়ে যাওয়ার বোতাম লুকান</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">সামনে বা পেছনে এড়িয়ে যাওয়ার বোতাম লুকিয়ে রয়েছে</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">সামনে বা পেছনে এড়িয়ে যাওয়ার বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_miniplayer_opacity_title">ওভারলে অস্বচ্ছতা</string>
+ <string name="revanced_miniplayer_opacity_summary">অসচ্ছতা মান ০-১০০ এর মধ্যে, যেখানে ০ হল সম্পূর্ণ স্বচ্ছ</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">মিনিপ্লেয়ার ওভারলে অস্বচ্ছতা অবশ্যই ০-১০০ এর মধ্যে হতে হবে</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">গ্রেডিয়েন্ট লোডিং স্ক্রিণ সক্রিয় করুন</string>
+ <string name="revanced_gradient_loading_screen_summary_on">লোডিং স্ক্রিণে একটি গ্রেডিয়েন্ড ব্যাকগ্রাউন্ড থাকবে</string>
+ <string name="revanced_gradient_loading_screen_summary_off">লোডিং স্ক্রিণে একটি সলিড ব্যাকগ্রাউন্ড থাকবে</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">সিকবারে নিজস্ব রং সক্রিয় করুন</string>
+ <string name="revanced_seekbar_custom_color_summary_on">সিকবারে নিজস্ব রং প্রদর্শিত হয়েছে</string>
+ <string name="revanced_seekbar_custom_color_summary_off">সিকবারে মূল রং প্রদর্শিত হয়েছে</string>
+ <string name="revanced_seekbar_custom_color_value_title">নিজস্ব সিকবার রং</string>
+ <string name="revanced_seekbar_custom_color_value_summary">সিকবারের রং</string>
+ <string name="revanced_seekbar_custom_color_invalid">সিকবারে ভুল রং দেয়া হয়েছে। মূল রং ব্যবহার করছে।</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">হোম ট্যাব</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">সদস্যতা ট্যাব</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">আপনি ট্যাব</string>
+ <string name="revanced_alt_thumbnail_player_title">প্লেয়ার প্লেলিস্ট, প্রস্তাবনাগুলো</string>
+ <string name="revanced_alt_thumbnail_search_title">অনুসন্ধানের ফলাফল</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">মূল থাম্বনেইল</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow এবং মূল থাম্বনেইল</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow এবং স্থির ছবি</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">স্থির ছবি</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow YouTube ভিডিওগুলির জন্য ক্রাউড-সোর্সড থাম্বনেল সরবরাহ করে। এই থাম্বনেলগুলি প্রায়ই YouTube দ্বারা প্রদত্ত থাম্বনেলগুলির চেয়ে বেশি প্রাসঙ্গিক\n\nঅন করলে, ভিডিও URLগুলি API সার্ভারে পাঠানো হবে এবং অন্য কোনও ডেটা পাঠানো হবে না৷ যদি একটি ভিডিওতে DeArrow থাম্বনেইল না থাকে, তাহলে আসল বা স্থির চিত্র দেখানো হয়\n\nDeArrow সম্পর্কে আরও জানতে এখানে চাপুন</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">API উপলভ্য না থাকলে একটি টোস্ট দেখান</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">যদি DeArrow অনুপস্থিত থাকে তবে টোস্ট বার্তা প্রদর্শিত হয়</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">যদি DeArrow অনুপস্থিত থাকে তবে টোস্ট বার্তা প্রদর্শিত হয় না</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API এন্ডপয়েন্ট</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrow থাম্বনেইল ক্যাশ এন্ডপয়েন্টের URL</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">ভিডিওর স্থির ছবি</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">স্টিল ক্যাপচার প্রতিটি ভিডিওর শুরু/মাঝামাঝি/শেষ থেকে নেওয়া হয়। এই ছবিগুলি YouTube-এ তৈরি করা হয়েছে এবং কোনও বাহ্যিক API ব্যবহার করা হয় না</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">দ্রুততম স্থির চিত্র ব্যবহার করুন</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">মাঝামাঝি মানের স্থিরচিত্র ব্যবহার করা হচ্ছে। থাম্বনেইল তাড়াতাড়ি লোড হবে, কিন্তু লাইভ স্ট্রিম, অপ্রকাশিত বা অনেক পুরোনো ভিডিওর ক্ষেত্রে ফাঁকা থাম্বনেইল দেখাতে পারে</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">উচ্চ মানের স্থির চিত্র ব্যবহার করা হচ্ছে</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">ভিডিওর যে সময় থেকে স্থির চিত্র নেওয়া হবে</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">ভিডিওর শুরুর অংশ</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">ভিডিওর মধ্যাংশ</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">ভিডিওর শেষাংশ</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">সাময়িকভাবে DeArrow উপলভ্য নয় (স্টাটাস কোড: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow সাময়িকভাবে উপলভ্য নয়</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVanced ঘোষণা দেখান</string>
+ <string name="revanced_announcements_summary_on">শুরুতে ঘোষণা প্রদর্শিত হয়েছে</string>
+ <string name="revanced_announcements_summary_off">শুরুতে ঘোষণা প্রদর্শিত হয়নি</string>
+ <string name="revanced_announcements_enabled_summary">শুরুতে ঘোষণা দেখান</string>
+ <string name="revanced_announcements_connection_failed">ঘোষনাদাতার সাথে সম্পর্ক স্থাপন ব্যর্থ হয়েছে</string>
+ <string name="revanced_announcements_dialog_dismiss">বাতিল করুন</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">স্বয়ংক্রিয়ভাবে-আবার দেখানো সক্রিয় করুন</string>
+ <string name="revanced_auto_repeat_summary_on">স্বয়ংক্রিয়ভাবে-আবার দেখানো সক্রিয় হয়েছে</string>
+ <string name="revanced_auto_repeat_summary_off">স্বয়ংক্রিয়ভাবে-আবার দেখানো সক্রিয় নিষ্ক্রিয় হয়েছে</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">ডিভাইস ডাইমেনশন স্পুফ করুন</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">ডিভাইস ডাইমেনশন স্পুফ হয়েছে\n\nভিডিওর উন্নত গুণমান আনলক হয়েছে কিন্তু আপনি ভিডিও চলার ক্ষেত্রে আটকে চলা, খারাপ ব্যাটারি লাইফ এবং অজানা পার্শ্ব-প্রতিক্রিয়ার সম্মুখিন হতে পারেন</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">ডিভাইস ডাইমেনশন স্পুফ হয়নি\n\nএটি সক্রিয় করার ফলে উন্নত ভিডিও গুণমান আনলক হবে</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">এটি সক্রিয় করার ফলে আপনি ভিডিও চলার ক্ষেত্রে আটকে চলা, খারাপ ব্যাটারি লাইফ এবং অজানা পার্শ্ব-প্রতিক্রিয়ার সম্মুখিন হতে পারেন।</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore সেটিং</string>
+ <string name="microg_settings_summary">GmsCore এর জন্য সেটিং</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL পুনঃনির্দেশ বাইপাস করুন</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL পুনঃনির্দেশ বাইপাস করছে</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL পুনঃনির্দেশ বাইপাস করেনি</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">লিংক ব্রাউজারে খুলুন</string>
+ <string name="revanced_external_browser_summary_on">লিংক বাহিরে খুলুন</string>
+ <string name="revanced_external_browser_summary_off">অ্যাপের মধ্যে লিংক খুলছে</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">ব্যাকগ্রাউন্ড প্লেব্যাক</string>
+ <string name="revanced_background_playback_summary">এই সেটিংটি পাওয়া যাবে সেটিং -> ব্যাকগ্রাউন্ড -এ</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">ট্র্যাকিং করার প্যারামিটার মুছুন</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">লিংক থেকে ট্র্যাকিং করার প্যারামিটার মুছে ফেলা হয়েছে</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">লিংক থেকে ট্র্যাকিং করার প্যারামিটার মুছে ফেলা হয়নি</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">জুম করার কম্পন নিষ্ক্রিয় করুন</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">কম্পন নিষ্ক্রিয় করা হয়েছে</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">কম্পন সক্রিয় করা হয়েছে</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">স্বয়ংক্রিয় গুণমান</string>
+ <string name="revanced_remember_video_quality_last_selected_title">ভিডিও গুণমান পরিবর্তন মনে রাখুন</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">গুণমান পরিবর্তন সব ভিডিওতে প্রয়োগ করা হয়েছে</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">গুণমান পরিবর্তন বর্তমান ভিডিওতে প্রয়োগ করা হয়েছে</string>
+ <string name="revanced_video_quality_default_wifi_title">ওয়াই-ফাই নেটওয়ার্কে ডিফল্ট ভিডিও গুণমান</string>
+ <string name="revanced_video_quality_default_mobile_title">মোবাইল নেটওয়ার্কে ডিফল্ট ভিডিও গুণমান</string>
+ <string name="revanced_remember_video_quality_mobile">মোবাইল</string>
+ <string name="revanced_remember_video_quality_wifi">ওয়াই-ফাই</string>
+ <string name="revanced_remember_video_quality_toast">ডিফল্ট %1$s গুণমান পরিবর্তন হচ্ছে: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">স্পিড ডায়ালগ বোতাম দেখান</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">বোতাম প্রদর্শিত হয়েছে</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">বোতাম প্রদর্শিত হয়নি</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">নিজস্ব প্লেব্যাক স্পিড</string>
+ <string name="revanced_custom_playback_speeds_summary">পাওয়া যাচ্ছে এমন প্লেব্যাক স্পিড যুক্ত বা পরিবর্তন করুন</string>
+ <string name="revanced_custom_playback_speeds_invalid">নিজস্ব স্পিড অবশ্যই %sগুণ থেকে কম হতে হবে। মূল ভ্যালু ব্যবহৃত হচ্ছে।</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">ভুল নিজস্ব প্লেব্যাক স্পিড। মূল ভ্যালু ব্যবহৃত হচ্ছে।</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">প্লেব্যাকের স্পিড পরিবর্তন মনে রাখুন</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">প্লেব্যাকের স্পিড পরিবর্তন সকল ভিডিওতে প্রয়োগ হবে</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">প্লেব্যাকের স্পিড পরিবর্তন এই ভিডিওতে প্রয়োগ হবে</string>
+ <string name="revanced_playback_speed_default_title">প্লেব্যাকের মূল স্পিড</string>
+ <string name="revanced_remember_playback_speed_toast">মূল স্পিড পরিবর্তন হচ্ছে: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">পুরোনো ভিডিও গুণমান উদ্ধার করুন</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">পুরোনো ভিডিও গুণমান মেনু প্রদর্শিত হয়েছে</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">পুরোনো ভিডিও গুণমান মেনু প্রদর্শিত হয়নি</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">ভিডিওর নির্দিষ্ট অংশে যেতে টানুন সক্রিয় করুন</string>
+ <string name="revanced_slide_to_seek_summary_on">ভিডিওর নির্দিষ্ট অংশে যেতে টানুন সক্রিয় করা হয়েছে</string>
+ <string name="revanced_slide_to_seek_summary_off">ভিডিওর নির্দিষ্ট অংশে যেতে টানুন সক্রিয় করা হয়নি</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">ক্লায়েন্ট স্পুফ করুন</string>
+ <string name="revanced_spoof_client_screen_summary">প্লেব্যাক সমস্যা প্রতিরোধ করতে ক্লায়েন্ট স্পুফ করুন</string>
+ <string name="revanced_spoof_client_title">ক্লায়েন্ট স্পুফ করুন</string>
+ <string name="revanced_spoof_client_summary_on">ক্লায়েন্ট স্পুফ করা হয়েছে</string>
+ <string name="revanced_spoof_client_summary_off">ক্লায়েন্ট স্পুফ করা হয়নি\n\nভিডিও প্লেব্যাক ঠিকমতো কাজ নাও করতে পারে</string>
+ <string name="revanced_spoof_client_user_dialog_message">এই সেটিংটি বন্ধ করার ফলে ভিডিও প্লেব্যাক ত্রুটি হতে পারে।</string>
+ <string name="revanced_spoof_client_use_ios_title">ক্লায়েন্ট iOS এ স্পুফ করুন</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">ক্লায়েন্ট এখন iOS এ স্পুফ করা হয়েছে\n\nপার্শ্বপ্রতিক্রিয়া রয়েছে:\n• কোন এইচিডিআর ভিডিও নেই\n• ভিডিও ইতিহাস কাজ নাও করতে পারে\n• উচ্চ ভিডিও গুণমান অনুপস্থিত থাকতে পারে\n•শুধুমাত্র অডিওতে লাইভ স্ট্রিম চলবে না\n• অ্যান্ড্রয়েট ৮ সংস্করণে লাইভ স্ট্রিম উপলভ্য নয়</string>
+ <string name="revanced_spoof_client_storyboard_timeout">ক্লায়েন্ট স্পুফ থাম্বনেইল সাময়িকভাবে উপলভ্য নয় (API সময় শেষ হয়েছে)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">স্পুফ ক্লায়েন্ট থাম্বনেইল সাময়িকভাবে উপলভ্য নয়: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">অডিও বিজ্ঞাপন আটকান</string>
+ <string name="revanced_block_audio_ads_summary_on">অডিও বিজ্ঞাপন আটকানো হয়েছে</string>
+ <string name="revanced_block_audio_ads_summary_off">অডিও বিজ্ঞাপন আনবব্লক করা হয়েছে</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s উপলভ্য নয়। বিজ্ঞাপন দেখাতে পারে। সেটিং থেকে অন্য কোন বিজ্ঞাপন আটকানো সেবায় সুইচ করুন।</string>
+ <string name="revanced_embedded_ads_service_failed">%s সার্ভার একটি ত্রুটি দেখাচ্ছে। বিজ্ঞাপন দেখাতে পারে। সেটিং থেকে অন্য কোন বিজ্ঞাপন আটকানো সেবায় সুইচ করুন।</string>
+ <string name="revanced_block_embedded_ads_title">এমবেড করা ভিডিও বিজ্ঞাপন আটকান</string>
+ <string name="revanced_block_embedded_ads_entry_1">নিষ্ক্রিয় হয়েছে</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous প্রক্সি</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock প্রক্সি</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">ভিডিও বিজ্ঞাপন আটকান</string>
+ <string name="revanced_block_video_ads_summary_on">ভিডিও বিজ্ঞাপন আটকানো হয়েছে</string>
+ <string name="revanced_block_video_ads_summary_off">ভিডিও বিজ্ঞাপন আটকানো হয়নি</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">মুছে ফেলা বার্তা</string>
+ <string name="revanced_show_deleted_messages_title">মুছে ফেলা বার্তা দেখান</string>
+ <string name="revanced_show_deleted_messages_entry_1">মুছে ফেলা বার্তা দেখাবেন না</string>
+ <string name="revanced_show_deleted_messages_entry_2">স্পয়লার এর পেছনে থাকা মুছে ফেলা বার্তা লুকান</string>
+ <string name="revanced_show_deleted_messages_entry_3">মুছে ফেলা বার্তাগুলো ক্রসড-আউট পাঠ্য হিসেবে দেখান</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">স্বয়ংক্রিয়ভাবে চ্যানেল পয়েন্ট নিয়ে নিন</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">চ্যানেল পয়েন্ট স্বয়ংক্রিয়ভাবে নেওয়া হয়েছে</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">চ্যানেল পয়েন্ট স্বয়ংক্রিয়ভাবে নেওয়া হয়নি</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch ডিবাগ মোড সক্রিয় করুন</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch ডিবাগ মোড সক্রিয় করুন (প্রস্তাবিত নয়)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch ডিবাগ মোড নিষ্ক্রিয় করা হয়েছে</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced সেটিং</string>
+ <string name="revanced_ads_screen_title">বিজ্ঞাপন</string>
+ <string name="revanced_ads_screen_summary">বিজ্ঞাপন বন্ধ করার সেটিং</string>
+ <string name="revanced_chat_screen_title">আলাপচারি</string>
+ <string name="revanced_chat_screen_summary">চ্যাট সেটিং</string>
+ <string name="revanced_misc_screen_title">বিবিধ</string>
+ <string name="revanced_misc_screen_summary">বিবিধ সেটিং</string>
+ <string name="revanced_general_category_title">সাধারণ সেটিংস</string>
+ <string name="revanced_other_category_title">অন্যান্য সেটিংস</string>
+ <string name="revanced_client_ads_category_title">ক্লায়েন্ট-সাইড বিজ্ঞাপন</string>
+ <string name="revanced_surestream_ads_category_title">সার্ভার-সাইড নিশ্চিত স্ট্রিম বিজ্ঞাপন</string>
+ <string name="revanced_twitch_debug_title">ডিবাগ লগিং</string>
+ <string name="revanced_twitch_debug_summary_on">ডিবাগ লগ সক্রিয় হয়েছে</string>
+ <string name="revanced_twitch_debug_summary_off">ডিবাগ লগ নিষ্ক্রিয় হয়েছে</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-bs-rBA/strings.xml b/src/main/resources/addresources/values-bs-rBA/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-bs-rBA/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ca-rES/strings.xml b/src/main/resources/addresources/values-ca-rES/strings.xml
new file mode 100644
index 0000000000..9130652f0d
--- /dev/null
+++ b/src/main/resources/addresources/values-ca-rES/strings.xml
@@ -0,0 +1,266 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Restablir</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Quant a</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Quant a</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Aparença</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">S\'està carregant...</string>
+ <string name="revanced_sb_reset">Restablir</string>
+ <string name="revanced_sb_about">Quant a</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Per defecte</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Desactivat</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-cs-rCZ/strings.xml b/src/main/resources/addresources/values-cs-rCZ/strings.xml
new file mode 100644
index 0000000000..f7c88976f4
--- /dev/null
+++ b/src/main/resources/addresources/values-cs-rCZ/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Přejete si pokračovat?</string>
+ <string name="revanced_settings_reset">Resetovat</string>
+ <string name="revanced_settings_restart_title">Obnovit a restartovat</string>
+ <string name="revanced_settings_restart">Restartovat</string>
+ <string name="revanced_settings_import">Importovat</string>
+ <string name="revanced_settings_import_copy">Kopírovat</string>
+ <string name="revanced_settings_import_reset">Nastavení Revanced resetováno do výchozího stavu</string>
+ <string name="revanced_settings_import_success">Importováno %d nastavení</string>
+ <string name="revanced_settings_import_failure_parse">Importováni selhalo: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore není nainstalován. Nainstalujte jej.</string>
+ <string name="gms_core_dialog_title">Potřebná akce</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore nemá oprávnění běžet na pozadí.\n\nPostupujte podle průvodce \"Neukončete svou aplikaci\" pro váš telefon a použijte pokyny pro vaši instalaci MicroG.\n\nJe vyžadováno aby aplikace pracovala.</string>
+ <string name="gms_core_dialog_open_website_text">Otevřít web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Optimalizace baterie MicroG GmsCore musí být vypnuta, aby se předešlo problémům.\n\nKlepněte na tlačítko pokračovat a vypněte optimalizaci baterie.</string>
+ <string name="gms_core_dialog_continue_text">Pokračovat</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Používáte ReVanced Patches verze <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Poznámka</string>
+ <string name="revanced_settings_about_links_dev_body">Tato verze je předběžná verze a můžete zaznamenat neočekávané problémy</string>
+ <string name="revanced_settings_about_links_header">Oficiální odkazy</string>
+ <string name="revanced_pref_import_export_title">Import / Export</string>
+ <string name="revanced_pref_import_export_summary">Importovat/ exportovat nastavení ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">O aplikaci</string>
+ <string name="revanced_settings_screen_01_ads_title">Reklamy</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternativní náhledy</string>
+ <string name="revanced_settings_screen_03_feed_title">Přísun</string>
+ <string name="revanced_settings_screen_04_player_title">Přehrávač</string>
+ <string name="revanced_settings_screen_05_general_title">Celkové rozložení</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Lišta</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Ovládání gesty</string>
+ <string name="revanced_settings_screen_11_misc_title">Ostatní</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Debugování</string>
+ <string name="revanced_debug_screen_summary">Povolit nebo zakázat debugovací možnosti</string>
+ <string name="revanced_debug_title">Debugovací záznamy</string>
+ <string name="revanced_debug_summary_on">Debugovací záznamy jsou zapnuty</string>
+ <string name="revanced_debug_summary_off">Debugovací záznamy jsou vypnuty</string>
+ <string name="revanced_debug_protobuffer_title">Záznam bufferu protokolu</string>
+ <string name="revanced_debug_protobuffer_summary_on">Debugovací záznamy obsahují proto buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Debugovací záznamy neobsahují proto buffer</string>
+ <string name="revanced_debug_stacktrace_title">Zaznamenávat skladby</string>
+ <string name="revanced_debug_stacktrace_summary_on">Ladící protokoly zahrnují stopu zásobníku</string>
+ <string name="revanced_debug_stacktrace_summary_off">Ladící protokoly nezahrnují skladbu</string>
+ <string name="revanced_debug_toast_on_error_title">Zobrazit toast při ReVanced error</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast zobrazen, pokud dojde k chybě</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast není zobrazena, pokud dojde k chybě</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Vypnutí toastů při chybě skryje všechna ReVanced chybová oznámení.\n\nNebudete upozorněni na neočekávané události.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Zakázat záři tlačítka jako / odebírat</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Tlačítko se mi líbí a odebírá, pokud je zmíněno</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Tlačítko se mi líbí a odebírá, když je zmíněno</string>
+ <string name="revanced_hide_gray_separator_title">Skrýt šedý oddělovač</string>
+ <string name="revanced_hide_gray_separator_summary_on">Šedé oddělovače jsou skryty</string>
+ <string name="revanced_hide_gray_separator_summary_off">Šedé oddělovače jsou viditelné</string>
+ <string name="revanced_hide_channel_watermark_title">Skrýt vodoznak kanálu</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Vodoznak je skryt</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vodoznak je zobrazen</string>
+ <string name="revanced_hide_horizontal_shelves_title">Skrýt horizontální polštáře</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Jsou skryté police jako například:\n• Novinky\n• Pokračovat ve sledování\n• Prozkoumat další kanály\n• Nakupování\n• Zhlédnout znovu</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Zobrazují se šelmy</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Skrýt tlačítko \'Připojit\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Tlačítko je skryté</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Tlačítko je zobrazeno</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Skrýt \'pro tebe\' skladbu na stránce kanálu</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Shelf je skrytý</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Štítek je zobrazen</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Skrýt tlačítko \"Upozornit\"</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Tlačítko je skryté</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Tlačítko je zobrazeno</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Skrýt doporučení \'Lidé\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Doporučení jsou skrytá</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Zobrazí se doporučení</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Skrýt tlačítko \'Zobrazit více\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Tlačítko je skryté</string>
+ <string name="revanced_hide_show_more_button_summary_off">Tlačítko je zobrazeno</string>
+ <string name="revanced_hide_timed_reactions_title">Skrýt načasované reakce</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Časované reakce jsou skryty</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Časované reakce jsou zobrazeny</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Skrýt šelf výsledků vyhledávání</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Hlavička Shelf je skrytá</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Je zobrazena hlavička Shelf</string>
+ <string name="revanced_hide_channel_guidelines_title">Skrýt pokyny pro kanály</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Pokyny kanálu jsou skryty</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Jsou zobrazeny pokyny kanálu</string>
+ <string name="revanced_hide_expandable_chip_title">Skrýt rozšiřitelný čip pod videem</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Rozšiřitelné čipy jsou skryty</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Jsou zobrazeny rozšiřitelné čipy</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Skrýt zápatí menu kvality videa</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Zápatí nabídky video kvality je skryté</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Zápatí nabídky video kvality je zobrazeno</string>
+ <string name="revanced_hide_community_posts_title">Skrýt příspěvky komunity</string>
+ <string name="revanced_hide_community_posts_summary_on">Komunitní příspěvky jsou skryty</string>
+ <string name="revanced_hide_community_posts_summary_off">Komunitní příspěvky jsou zobrazeny</string>
+ <string name="revanced_hide_compact_banner_title">Skrýt kompaktní bannery</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompaktní bannery jsou skryty</string>
+ <string name="revanced_hide_compact_banner_summary_off">Zobrazí se kompaktní bannery</string>
+ <string name="revanced_hide_movies_section_title">Skrýt sekci filmů</string>
+ <string name="revanced_hide_movies_section_summary_on">Sekce filmy je skrytá</string>
+ <string name="revanced_hide_movies_section_summary_off">Filmy jsou zobrazeny</string>
+ <string name="revanced_hide_feed_survey_title">Skrýt dotazníky kanálů</string>
+ <string name="revanced_hide_feed_survey_summary_on">Průzkumy kanálů jsou skryty</string>
+ <string name="revanced_hide_feed_survey_summary_off">Zobrazují se průzkumy krmiv</string>
+ <string name="revanced_hide_community_guidelines_title">Skrýt pokyny komunity</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Pokyny komunity jsou skryty</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Pokyny Společenství jsou uvedeny</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Skrýt pokyny komunity odběratelů</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Pravidla komunity předplatitelů jsou skryta</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Jsou zobrazeny pokyny komunity odběratelů</string>
+ <string name="revanced_hide_channel_member_shelf_title">Skrýt šelf člena kanálu</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Poloměr člena kanálu je skrytý</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Je zobrazena polička člena kanálu</string>
+ <string name="revanced_hide_emergency_box_title">Skrýt nouzová okna</string>
+ <string name="revanced_hide_emergency_box_summary_on">Nouzové boxy jsou skryty</string>
+ <string name="revanced_hide_emergency_box_summary_off">Nouzové boxy jsou zobrazeny</string>
+ <string name="revanced_hide_info_panels_title">Skrýt informační panely</string>
+ <string name="revanced_hide_info_panels_summary_on">Info panely jsou skryty</string>
+ <string name="revanced_hide_info_panels_summary_off">Informační panely jsou zobrazeny</string>
+ <string name="revanced_hide_medical_panels_title">Skrýt lékařské panely</string>
+ <string name="revanced_hide_medical_panels_summary_on">Zdravotnické panely jsou skryty</string>
+ <string name="revanced_hide_medical_panels_summary_off">Lékařské panely jsou zobrazeny</string>
+ <string name="revanced_hide_channel_bar_title">Skrýt kanálovou lištu</string>
+ <string name="revanced_hide_channel_bar_summary_on">Panel kanálů je skrytý</string>
+ <string name="revanced_hide_channel_bar_summary_off">Ukazatel kanálů je zobrazen</string>
+ <string name="revanced_hide_playables_title">Skrýt přehrávače</string>
+ <string name="revanced_hide_playables_summary_on">Hráče jsou skryté</string>
+ <string name="revanced_hide_playables_summary_off">Hráče jsou zobrazeny</string>
+ <string name="revanced_hide_quick_actions_title">Skrýt rychlé akce v režimu celé obrazovky</string>
+ <string name="revanced_hide_quick_actions_summary_on">Rychlé akce jsou skryty</string>
+ <string name="revanced_hide_quick_actions_summary_off">Rychlé akce jsou zobrazeny</string>
+ <string name="revanced_hide_related_videos_title">Skrýt související videa v rychlých akcích</string>
+ <string name="revanced_hide_related_videos_summary_on">Související videa jsou skrytá</string>
+ <string name="revanced_hide_related_videos_summary_off">Související videa jsou zobrazena</string>
+ <string name="revanced_hide_image_shelf_title">Skrýt šelf obrázku ve výsledcích hledání</string>
+ <string name="revanced_hide_image_shelf_summary_on">Polovina obrázků je skrytá</string>
+ <string name="revanced_hide_image_shelf_summary_off">Je zobrazena šelf obrázku</string>
+ <string name="revanced_hide_latest_posts_ads_title">Skrýt poslední příspěvky</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Nejnovější příspěvky jsou skryty</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Poslední příspěvky jsou zobrazeny</string>
+ <string name="revanced_hide_mix_playlists_title">Skrýt smíšené seznamy skladeb</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Smíšené seznamy skladeb jsou skryté</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Jsou zobrazeny smíšené seznamy skladeb</string>
+ <string name="revanced_hide_artist_cards_title">Skrýt karty umělce</string>
+ <string name="revanced_hide_artist_cards_summary_on">Karty umělců jsou skryty</string>
+ <string name="revanced_hide_artist_cards_summary_off">Karty umělců jsou zobrazeny</string>
+ <string name="revanced_hide_chips_shelf_title">Skrýt čipy</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Šipka je skrytá</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Šipky jsou zobrazeny</string>
+ <string name="revanced_hide_attributes_section_title">Skrýt část atributů</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Doporučená místa\', sekce Hry a hudba jsou skryté</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Doporučená místa\', jsou zobrazeny sekce Hry a hudba</string>
+ <string name="revanced_hide_chapters_section_title">Skrýt kapitolu</string>
+ <string name="revanced_hide_chapters_section_summary_on">Sekce kapitol je skrytá</string>
+ <string name="revanced_hide_chapters_section_summary_off">Zobrazí se sekce kapitol</string>
+ <string name="revanced_hide_podcast_section_title">Skrýt sekci \'Prozkoumat podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Prozkoumat podcast\' je skrytý</string>
+ <string name="revanced_hide_podcast_section_summary_off">Zobrazí se sekce \'Prozkoumat podcast\'</string>
+ <string name="revanced_hide_info_cards_section_title">Skrýt sekci informačních karet</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Sekce Info karty je skrytá</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Je zobrazena sekce Info karty</string>
+ <string name="revanced_hide_transcript_section_title">Skrýt sekci přepisu</string>
+ <string name="revanced_hide_transcript_section_summary_on">Přepsat oddíl je skrytý</string>
+ <string name="revanced_hide_transcript_section_summary_off">Je zobrazena sekce přepisu</string>
+ <string name="revanced_hide_description_components_screen_title">Popis videa</string>
+ <string name="revanced_hide_description_components_screen_summary">Skrýt nebo zobrazit komponenty popisu videa</string>
+ <string name="revanced_custom_filter_screen_title">Vlastní filtr</string>
+ <string name="revanced_custom_filter_screen_summary">Skrýt komponenty pomocí vlastních filtrů</string>
+ <string name="revanced_custom_filter_title">Povolit vlastní filtr</string>
+ <string name="revanced_custom_filter_summary_on">Vlastní filtr je povolen</string>
+ <string name="revanced_custom_filter_summary_off">Vlastní filtr je zakázán</string>
+ <string name="revanced_custom_filter_strings_title">Vlastní filtr</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Seznam komponentních řetězců k filtrování oddělených novým řádkem</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Neplatný vlastní filtr: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Skrýt obsah klíčových slov</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Skrýt vyhledávání a vkládání videí pomocí filtrů klíčových slov</string>
+ <string name="revanced_hide_keyword_content_home_title">Skrýt domácí videa podle klíčových slov</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videa na domovské kartě jsou filtrována podle klíčových slov</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videa na domovské kartě nejsou filtrována klíčovými slovy</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Skrýt předplatné videa podle klíčových slov</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videa v záložce předplatné jsou filtrována klíčovými slovy</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videa v záložce předplatné nejsou filtrována klíčovými slovy</string>
+ <string name="revanced_hide_keyword_content_search_title">Skrýt výsledky hledání podle klíčových slov</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Výsledky hledání jsou filtrovány klíčovými slovy</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Výsledky hledání nejsou filtrovány klíčovými slovy</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Klíčová slova ke skrytí</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">klíčová slova a fráze ke skrytí, odděleno novými řádky\n\nSlova s velkými písmeny uprostřed musí být zadána s pláštěm (ie: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">O filtrování klíčových slov</string>
+ <string name="revanced_hide_keyword_content_about_summary">Výsledky domovského/předplatného/vyhledávání jsou filtrovány pro skrytí obsahu, který odpovídá výrazům klíčových slov\n\nOmezení\n• Některé krátkosti nemusí být skryty\n• Některé komponenty uživatelského rozhraní nemusí být skryté\n• Hledání klíčových slov nemusí zobrazovat žádné výsledky</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Neplatné klíčové slovo. Nelze použít: \'%s\' jako filtr</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Neplatné klíčové slovo. \'%1$s\' je menší než %2$d znaků</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Klíčové slovo \'$s\' skryje všechna videa</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Skrýt obecné reklamy</string>
+ <string name="revanced_hide_general_ads_summary_on">Obecné reklamy jsou skryty</string>
+ <string name="revanced_hide_general_ads_summary_off">Všeobecné reklamy jsou zobrazeny</string>
+ <string name="revanced_hide_fullscreen_ads_title">Skrýt reklamy na celou obrazovku</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Reklamy na celou obrazovku jsou skryty\n\nTato funkce je dostupná pouze pro starší zařízení</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Zobrazení reklam na celou obrazovku</string>
+ <string name="revanced_hide_buttoned_ads_title">Skrýt reklamy s tlačítky</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Tlačítko reklam je skryté</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Tlačítko reklam je zobrazeno</string>
+ <string name="revanced_hide_paid_promotion_label_title">Skrýt štítek placené akce</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Štítek placené propagace je skrytý</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Zobrazí se štítek pro placenou propagaci</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Skrýt samosponzorované karty</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Samostatně sponzorované karty jsou skryté</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Jsou zobrazeny vlastní sponzorované karty</string>
+ <string name="revanced_hide_products_banner_title">Skrýt banner pro zobrazení produktů</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner je skrytý</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner je zobrazen</string>
+ <string name="revanced_hide_shopping_links_title">Skrýt nákupní odkazy v popisu videa</string>
+ <string name="revanced_hide_shopping_links_summary_on">Nákupní odkazy jsou skryté</string>
+ <string name="revanced_hide_shopping_links_summary_off">Nákupní odkazy jsou zobrazeny</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Skrýt tlačítko \'Navštívit obchod\' na stránkách kanálu</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Tlačítko je skryté</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Tlačítko je zobrazeno</string>
+ <string name="revanced_hide_web_search_results_title">Skrýt výsledky vyhledávání</string>
+ <string name="revanced_hide_web_search_results_summary_on">Výsledky vyhledávání na webu jsou skryty</string>
+ <string name="revanced_hide_web_search_results_summary_off">Jsou zobrazeny výsledky vyhledávání na webu</string>
+ <string name="revanced_hide_merchandise_banners_title">Skrýt bannery zboží</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Bannery zboží jsou skryty</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Bannery zboží jsou zobrazeny</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Skrýt reklamy na celou obrazovku fungují pouze se staršími zařízeními</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Skrýt YouTube Premium akce</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium akce pod přehrávačem videa jsou skryté</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium akce pod přehrávačem videa jsou zobrazeny</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Skrýt video reklamy</string>
+ <string name="revanced_hide_video_ads_summary_on">Video reklamy jsou skryty</string>
+ <string name="revanced_hide_video_ads_summary_off">Zobrazují se video reklamy</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL zkopírováno do schránky</string>
+ <string name="revanced_share_copy_url_timestamp_success">Adresa URL s časovým razítkem zkopírována</string>
+ <string name="revanced_copy_video_url_title">Zobrazit tlačítko URL pro kopírování videa</string>
+ <string name="revanced_copy_video_url_summary_on">Tlačítko je zobrazeno. Klepnutím zkopírujete URL videa. Klepnutím a podržením kopírujete URL videa s časovým razítkem</string>
+ <string name="revanced_copy_video_url_summary_off">Tlačítko není zobrazeno</string>
+ <string name="revanced_copy_video_url_timestamp_title">Zobrazit tlačítko URL pro kopírování času</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Tlačítko je zobrazeno. Klepnutím zkopírujete URL videa s časovým razítkem. Klepnutím a podržením zkopírujete video bez časové značky</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Tlačítko není zobrazeno</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Odstranit dialog uvážení prohlížeče</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialog bude odstraněn</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialog bude zobrazen</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Toto neobchází věkové omezení, ale přijímá ho automaticky.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Externí stahování</string>
+ <string name="revanced_external_downloader_screen_summary">Nastavení pro použití externího stahování</string>
+ <string name="revanced_external_downloader_title">Zobrazit externí tlačítko ke stažení</string>
+ <string name="revanced_external_downloader_summary_on">Tlačítko ke stažení zobrazené v přehrávači</string>
+ <string name="revanced_external_downloader_summary_off">Tlačítko ke stažení není zobrazeno v přehrávači</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Přepsat tlačítko akce stahování</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Tlačítko ke stažení otevře externí stahování</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Tlačítko Stáhnout otevře nativní stahování v aplikaci</string>
+ <string name="revanced_external_downloader_name_title">Název balíčku ke stažení</string>
+ <string name="revanced_external_downloader_name_summary">Název balíčku nainstalované externí stahovací aplikace, jako je NewPipe nebo pečeť</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s není nainstalován. Prosím, nainstalujte jej.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Zakázat přesné hledání gesta</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gesto je zakázáno</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto je povoleno</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Povolit klepnutí na vyhledávací lištu</string>
+ <string name="revanced_seekbar_tapping_summary_on">Klepnutí na posuvník je povoleno</string>
+ <string name="revanced_seekbar_tapping_summary_off">Klepnutí na posuvník je zakázáno</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Povolit gesto jasu</string>
+ <string name="revanced_swipe_brightness_summary_on">Přejeďte jasem je povoleno</string>
+ <string name="revanced_swipe_brightness_summary_off">Posunutí jasu je zakázáno</string>
+ <string name="revanced_swipe_volume_title">Povolit gesto hlasitosti</string>
+ <string name="revanced_swipe_volume_summary_on">Tažení hlasitostí je povoleno</string>
+ <string name="revanced_swipe_volume_summary_off">Přejetí hlasitosti je zakázáno</string>
+ <string name="revanced_swipe_press_to_engage_title">Povolit gesto přetažením</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Tlačítko přetažení je povoleno</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Tlačítko přetažení je zakázáno</string>
+ <string name="revanced_swipe_haptic_feedback_title">Povolit hmatovou zpětnou vazbu</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Hmatová odezva je povolena</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Hmatová odezva je zakázána</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Uložit a obnovit jas</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Uložit a obnovit jas při ukončení nebo vstupu na celou obrazovku</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Neukládat a obnovovat jas při ukončení nebo vstupu na celou obrazovku</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Povolit gesto automatického jasu</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Přejetím dolů k nejnižší hodnotě gesta jasu povolíte automatické jas</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Přejetím dolů k nejnižší hodnotě není povolen automatický jas</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automaticky</string>
+ <string name="revanced_swipe_overlay_timeout_title">Časový limit překrytí tahem</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Množství milisekund, které je viditelné</string>
+ <string name="revanced_swipe_text_overlay_size_title">Velikost textu překrytí přejetím</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Velikost textu pro překrytí tahem</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Viditelnost pozadí přejetím</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Viditelnost pozadí překrytí tahem</string>
+ <string name="revanced_swipe_threshold_title">Práh velikosti přetažení</string>
+ <string name="revanced_swipe_threshold_summary">Výše prahové hodnoty pro spuštění přejetím</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Zakázat automatické titulky</string>
+ <string name="revanced_auto_captions_summary_on">Automatické titulky jsou zakázány</string>
+ <string name="revanced_auto_captions_summary_off">Automatické titulky jsou povoleny</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Tlačítka akce</string>
+ <string name="revanced_hide_buttons_screen_summary">Skrýt nebo zobrazit tlačítka pod videem</string>
+ <string name="revanced_hide_like_dislike_button_title">Skrýt oblíbené a neoblíbené</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Tlačítka se mi líbí a nelíbí se mi</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Tlačítka se mi líbí a nelíbí se mi</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Skrýt sdílení</string>
+ <string name="revanced_hide_share_button_summary_on">Tlačítko sdílení je skryté</string>
+ <string name="revanced_hide_share_button_summary_off">Tlačítko sdílení je zobrazeno</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Skrýt report</string>
+ <string name="revanced_hide_report_button_summary_on">Tlačítko reportu je skryté</string>
+ <string name="revanced_hide_report_button_summary_off">Tlačítko reportu je zobrazeno</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Skrýt Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Tlačítko Remix je skryté</string>
+ <string name="revanced_hide_remix_button_summary_off">Zobrazí se tlačítko Remix</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Skrýt stahování</string>
+ <string name="revanced_hide_download_button_summary_on">Tlačítko pro stažení je skryté</string>
+ <string name="revanced_hide_download_button_summary_off">Tlačítko ke stažení je zobrazeno</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Skrýt díky</string>
+ <string name="revanced_hide_thanks_button_summary_on">Tlačítko poděkování je skryté</string>
+ <string name="revanced_hide_thanks_button_summary_off">Tlačítko poděkování je zobrazeno</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Tlačítko kliknutí je skryté</string>
+ <string name="revanced_hide_clip_button_summary_off">Tlačítko kliknutí je zobrazeno</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Skrýt Uložit do seznamu skladeb</string>
+ <string name="revanced_hide_playlist_button_summary_on">Tlačítko Uložit do playlistu je skryté</string>
+ <string name="revanced_hide_playlist_button_summary_off">Je zobrazeno tlačítko Uložit do playlistu</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Skrýt tlačítko automatického přehrávání</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Tlačítko automatického přehrávání je skryté</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Tlačítko automatického přehrávání je zobrazeno</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Skrýt tlačítko titulků</string>
+ <string name="revanced_hide_captions_button_summary_on">Tlačítko titulek je skryté</string>
+ <string name="revanced_hide_captions_button_summary_off">Tlačítko s titulky je zobrazeno</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Skrýt tlačítko pro přehrávání</string>
+ <string name="revanced_hide_cast_button_summary_on">Tlačítko vysílání je skryté</string>
+ <string name="revanced_hide_cast_button_summary_off">Tlačítko vysílání je viditelné</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Skrýt nebo změnit tlačítka v navigačním panelu</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Skrýt domov</string>
+ <string name="revanced_hide_home_button_summary_on">Tlačítko Domů je skryté</string>
+ <string name="revanced_hide_home_button_summary_off">Tlačítko Domů je zobrazeno</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Skrýt krátké</string>
+ <string name="revanced_hide_shorts_button_summary_on">Tlačítko \"Shorts\" je skryté</string>
+ <string name="revanced_hide_shorts_button_summary_off">Tlačítko \"Shorts\" je viditelné</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Skrýt Vytvořit</string>
+ <string name="revanced_hide_create_button_summary_on">Tlačítko vytvořit je skryté</string>
+ <string name="revanced_hide_create_button_summary_off">Tlačítko vytvořit je zobrazeno</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Skrýt odběry</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Tlačítko odebírání je skryté</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Tlačítko odebírání je zobrazeno</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Přepnout vytvoření pomocí oznámení</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Tlačítko Vytvořit je vyměněno s tlačítkem Oznámení\n\nPoznámka: Povolení této funkce také nuceně skryje video reklamy</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Tlačítko vytvořit není přepínáno s tlačítkem oznámení</string>
+ <string name="revanced_hide_navigation_button_labels_title">Skrýt popisky navigačních tlačítek</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Štítky jsou skryty</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Štítky jsou zobrazeny</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Skrýt nebo zobrazit položky nabídky flyoutu</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Skrýt titulky</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Nabídka titulků je skryta</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Zobrazí se titulek</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Skrýt další nastavení</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Další menu nastavení je skryto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Zobrazí se další menu nastavení</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Skrýt video smyčky</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Smyčka menu videa je skrytá</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Zobrazí se smyčka menu videa</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Skrýt ambientní režim</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Nabídka ambientního režimu je skrytá</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Zobrazení nabídky v režimu ambientního nastavení</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Skrýt nápovědu & zpětnou vazbu</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Nápověda & Nabídka zpětné vazby je skryta</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Nápověda & je zobrazena nabídka zpětné vazby</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Skrýt rychlost přehrávání</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menu rychlosti přehrávání je skryté</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Menu rychlosti přehrávání je zobrazeno</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Skrýt další informace</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Další info menu je skryté</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Zobrazí se další info menu</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Skrýt zamykací obrazovku</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Menu zámku obrazovky je skryté</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Zobrazení menu na zamykací obrazovce</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Skrýt zvukovou stopu</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Nabídka zvukové stopy je skrytá</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Menu zvukové stopy je zobrazeno</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Skrýt sledování ve VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Sledování v nabídce VR je skryté</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Zobrazeno sledování v nabídce VR</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Skrýt předchozí & další video tlačítka</string>
+ <string name="revanced_hide_player_buttons_summary_on">Tlačítka jsou skryta</string>
+ <string name="revanced_hide_player_buttons_summary_off">Tlačítka jsou zobrazena</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Skrýt alba</string>
+ <string name="revanced_hide_album_cards_summary_on">Album karty jsou skryty</string>
+ <string name="revanced_hide_album_cards_summary_off">Alba karty jsou zobrazeny</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Komentáře</string>
+ <string name="revanced_comments_screen_summary">Skrýt nebo zobrazit komponenty sekce komentářů</string>
+ <string name="revanced_hide_comments_by_members_header_title">Skrýt \'Komentáře podle záhlaví členů</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Komentáře členů jsou skryté</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Komentáře členů\' jsou zobrazeny</string>
+ <string name="revanced_hide_comments_section_title">Skrýt sekci komentáře</string>
+ <string name="revanced_hide_comments_section_summary_on">Sekce komentářů je skrytá</string>
+ <string name="revanced_hide_comments_section_summary_off">Část Komentáře je zobrazena</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Skrýt tlačítko \'Vytvořit krátký\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Tlačítko \"Vytvořit krátký\" je skryté</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Zobrazí se tlačítko \'Vytvořit krátké\'</string>
+ <string name="revanced_hide_comments_preview_comment_title">Skrýt náhled komentáře</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Náhled komentáře je skrytý</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Náhled komentáře je zobrazen</string>
+ <string name="revanced_hide_comments_thanks_button_title">Skrýt poděkování</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Tlačítko poděkování je skryté</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Tlačítko poděkování je zobrazeno</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Skrýt časové razítko a tlačítka emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Časové razítko a tlačítka emoji jsou skrytá</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Časové razítko a tlačítka emoji jsou zobrazena</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Skrýt box crowdfunding</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding box je skrytý</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Zobrazí se Crowdfunding box</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Skrýt karty na konci obrazovky</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Karty na konci obrazovky jsou skryty</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Karty na konci obrazovky jsou zobrazeny</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filtrovat lištu</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Skrýt nebo zobrazit filtrovací lištu ve kanálu, vyhledávání a souvisejících videích</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Skrýt v kanálu</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Skryté v krmivu</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Zobrazeno v kanálu</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Skrýt ve vyhledávání</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Skryté ve vyhledávání</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Zobrazeno ve vyhledávání</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Skrýt v souvisejících videích</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Skrytá v souvisejících videích</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Zobrazeno v souvisejících videích</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Skrýt plovoucí tlačítko mikrofonu</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Tlačítko mikrofonu skryté</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Zobrazené tlačítko mikrofonu</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Zakázat ambientní režim v režimu celé obrazovky</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Ambientní režim zakázán</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Ambientní režim povolen</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Skrýt informační karty</string>
+ <string name="revanced_hide_info_cards_summary_on">Informační karty jsou skryty</string>
+ <string name="revanced_hide_info_cards_summary_off">Informační karty jsou zobrazeny</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Zakázat animace čísla</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Valící se čísla nejsou animována</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Valící se čísla jsou animována</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Skrýt vyhledávací lištu v přehrávači videa</string>
+ <string name="revanced_hide_seekbar_summary_on">Hledací panel video přehrávače je skrytý</string>
+ <string name="revanced_hide_seekbar_summary_off">Zobrazí se vyhledávací lišta videa</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Skrýt vyhledávací lištu v náhledech videa</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Panel hledání náhledů je skrytý</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Zobrazí se panel hledání náhledů</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Skrýt zkratky v domovském kanálu</string>
+ <string name="revanced_hide_shorts_home_summary_on">Krátky v domovském kanálu jsou skryté</string>
+ <string name="revanced_hide_shorts_home_summary_off">Zobrazí se zkratky v domovském kanálu</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Skrýt zkratky v odběru kanálu</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Krátky v předplatném kanálu jsou skryté</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Zobrazí se zkratky v předplatném kanálu</string>
+ <string name="revanced_hide_shorts_search_title">Skrýt zkratky ve výsledcích vyhledávání</string>
+ <string name="revanced_hide_shorts_search_summary_on">Krátky ve výsledcích vyhledávání jsou skryty</string>
+ <string name="revanced_hide_shorts_search_summary_off">Zobrazí se zkratky ve výsledcích vyhledávání</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Skrýt tlačítko pro připojení</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Tlačítko spojení je skryté</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Zobrazí se tlačítko pro připojení</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Skrýt tlačítko odebírat</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Tlačítko odebírání je skryté</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Tlačítko odběru je zobrazeno</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Skrýt pozastavená tlačítka potahů</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Pozastavená tlačítka potahů jsou skryta</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Zobrazí se pozastavená tlačítka potahů</string>
+ <string name="revanced_hide_shorts_shop_button_title">Skrýt tlačítko obchodu</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Tlačítko obchodu je skryté</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Tlačítko obchodu je zobrazeno</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Skrýt tlačítko super díky</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Tlačítko Super poděkování je skryté</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Tlačítko Super poděkování je zobrazeno</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Skrýt označené produkty</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Označené produkty jsou skryté</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Zobrazí se označené produkty</string>
+ <string name="revanced_hide_shorts_location_label_title">Skrýt štítek polohy</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Štítek polohy je skrytý</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Popisek umístění je zobrazen</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Skrýt zvuk do playlistu</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Uložit zvuk do playlistu je skrytý</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Ukládat zvuk do seznamu skladeb je zobrazen</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Skrýt návrhy hledání</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Návrhy hledání jsou skryty</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Návrhy hledání jsou zobrazeny</string>
+ <string name="revanced_hide_shorts_like_button_title">Skrýt tlačítko „To se mi líbí“</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Tlačítko se mi líbí je skryté</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Tlačítko se mi líbí</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Skrýt tlačítko se mi nelíbí</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Tlačítko „To se mi nelíbí“ je skryté</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Tlačítko se mi nelíbí</string>
+ <string name="revanced_hide_shorts_comments_button_title">Skrýt tlačítko komentáře</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Tlačítko Komentáře je skryté</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Tlačítko Komentáře je zobrazeno</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Skrýt tlačítko remixování</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Tlačítko Remix je skryté</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Zobrazí se tlačítko Remix</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Skrýt tlačítko sdílení</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Tlačítko sdílení je skryté</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Tlačítko sdílení je zobrazeno</string>
+ <string name="revanced_hide_shorts_info_panel_title">Skrýt informační panel</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Info panel je skrytý</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Informační panel je zobrazen</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Skrýt kanálovou lištu</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Panel kanálů je skrytý</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Ukazatel kanálů je zobrazen</string>
+ <string name="revanced_hide_shorts_video_title_title">Skrýt název videa</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titulek je skrytý</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titulek je zobrazen</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Skrýt popisek zvukových metadat</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Štítek metadat je skrytý</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Popisek metadat je zobrazen</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Skrýt popisek celého odkazu videa</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Štítek s odkazem na video je skrytý</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Zobrazí se popisek video odkazů</string>
+ <string name="revanced_hide_shorts_sound_button_title">Skrýt zvukové tlačítko</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Zvukové tlačítko je skryté</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Zvukové tlačítko je zobrazeno</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Skrýt navigační panel</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigační panel je skrytý</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigační panel je zobrazen</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Zakázat koncovku videa</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Navrhovaná videa budou zakázána</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Budou zobrazena navrhovaná videa</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Skrýt časové razítko videa</string>
+ <string name="revanced_hide_timestamp_summary_on">Časové razítko je skryté</string>
+ <string name="revanced_hide_timestamp_summary_off">Časové razítko je zobrazeno</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Skrýt vyskakovací panely přehrávače</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Vyskakovací panely přehrávače jsou skryty</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Zobrazí se vyskakovací panely přehrávače</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Neprůhlednost překrytí přehrávače</string>
+ <string name="revanced_player_overlay_opacity_summary">Neprůhlednost mezi 0-100, kde 0 je průhledná</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Průhlednost překrytí přehrávače musí být od 0 do 100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Líbí se mi dočasně nedostupné (vypršel časový limit API)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Nelíbí se mi nedostupné (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Nelíbí se mi nedostupné (dosažen limit API klienta)</string>
+ <string name="revanced_ryd_failure_generic">Nelíbí se mi nedostupné (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Znovu načíst video pro hlasování pomocí Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Jsou zobrazeny neoblíbené</string>
+ <string name="revanced_ryd_enable_summary_off">Nelíbí se mi se nezobrazovat</string>
+ <string name="revanced_ryd_shorts_title">Zobrazit na krátkých zkratkách neoblíbené</string>
+ <string name="revanced_ryd_shorts_summary_on">Nelíbí se vám krátce</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Nelíbí se vám krátký\n\nOmezení: V anonymním režimu se nemusí objevit nelíbí</string>
+ <string name="revanced_ryd_shorts_summary_off">Nelíbí se mi skryté na krátkých</string>
+ <string name="revanced_ryd_dislike_percentage_title">Nelíbí se jako procento</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Nelíbí se zobrazeno v procentech</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Nelíbí se mi číslo</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompaktní tlačítko jako</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Tlačítko se mi líbí pro minimální šířku</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Tlačítko se mi líbí pro nejlepší vzhled</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Zobrazit toast pokud API není k dispozici</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast se zobrazí, pokud návratový YouTube Dislike není k dispozici</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast se nezobrazí, pokud Vrátit YouTube Dislike není k dispozici</string>
+ <string name="revanced_ryd_about">O aplikaci</string>
+ <string name="revanced_ryd_attribution_summary">Data jsou poskytována společností Return YouTube Dislike API. Klepnutím sem se dozvíte více</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Vrátit YouTubeDislike API statistiky tohoto zařízení</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API doba odezvy, průměr</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Doba odezvy API, minimální</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API doba odpovědi, maximální</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API čas odpovědi, poslední video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Líbí se mi dočasně nedostupné – limit sazby klienta API ve skutečnosti</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API načítá hlasy, počet hovorů</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Žádné síťové hovory</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d uskutečněné síťové hovory</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API načtení hlasů, počet časových lhůt</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Vypršel časový limit síťových hovorů</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Vypršel časový limit volání přes %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limity sazby API klienta</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nebyly nalezeny žádné limity sazby klienta</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Limit rychlosti klienta byl zjištěn %d krát</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisekund</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Povolit široký vyhledávací panel</string>
+ <string name="revanced_wide_searchbar_summary_on">Široký vyhledávací panel je povolen</string>
+ <string name="revanced_wide_searchbar_summary_off">Široký vyhledávací panel je zakázán</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Obnovit staré náhledové lišty</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Náhledy se zobrazí nad vyhledávací lištou</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Náhledy se zobrazí v režimu celé obrazovky</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Povolit SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock je crowd-sourcový systém pro přeskočení otravných částí YouTube videa</string>
+ <string name="revanced_sb_appearance_category">Vzhled</string>
+ <string name="revanced_sb_enable_voting">Zobrazit tlačítko hlasování</string>
+ <string name="revanced_sb_enable_voting_sum_on">Zobrazí se hlasovací tlačítko segmentu</string>
+ <string name="revanced_sb_enable_voting_sum_off">Hlasovací tlačítko segmentu není zobrazeno</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Použít kompaktní tlačítko přeskočení</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Přeskočit styl tlačítka pro minimální šířku</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Přeskočit tlačítko stylizované pro nejlepší vzhled</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Automaticky skrýt tlačítko přeskočení</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Přeskočit tlačítko za pár sekund</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Přeskočit tlačítko zobrazené pro celý segment</string>
+ <string name="revanced_sb_general_skiptoast">Zobrazit toast při automatickém přeskočení</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast se zobrazí při automatickém přeskočení segmentu. Klepnutím sem zobrazíte příklad</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast není zobrazen. Klepnutím sem zobrazíte příklad</string>
+ <string name="revanced_sb_general_time_without">Zobrazit délku videa bez segmentů</string>
+ <string name="revanced_sb_general_time_without_sum_on">Délka videa minus všechny segmenty, zobrazené v závorkách vedle celé délky videa</string>
+ <string name="revanced_sb_general_time_without_sum_off">Zobrazena celá délka videa</string>
+ <string name="revanced_sb_create_segment_category">Vytváření nových segmentů</string>
+ <string name="revanced_sb_enable_create_segment">Zobrazit tlačítko vytvořit nový segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Zobrazí se nové tlačítko segmentu</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Vytvořit nové tlačítko segmentu není zobrazeno</string>
+ <string name="revanced_sb_general_adjusting">Upravit krok nového segmentu</string>
+ <string name="revanced_sb_general_adjusting_sum">Počet milisekund se při vytváření nových segmentů pohybují tlačítky pro úpravu času</string>
+ <string name="revanced_sb_general_adjusting_invalid">Hodnota musí být kladné číslo</string>
+ <string name="revanced_sb_guidelines_preference_title">Zobrazit pokyny</string>
+ <string name="revanced_sb_guidelines_preference_sum">Pokyny obsahují pravidla a tipy pro vytváření nových segmentů</string>
+ <string name="revanced_sb_guidelines_popup_title">Dodržujte pokyny</string>
+ <string name="revanced_sb_guidelines_popup_content">Přečtěte si pokyny SponsorBlock před vytvořením nových segmentů</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Již přečteno</string>
+ <string name="revanced_sb_guidelines_popup_open">Ukaž mi</string>
+ <string name="revanced_sb_general">Obecná ustanovení</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Zobrazit toast pokud API není k dispozici</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast se zobrazí, pokud SponsorBlock není k dispozici</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast není zobrazena, pokud SponsorBlock není k dispozici</string>
+ <string name="revanced_sb_general_skipcount">Povolit přeskočit počet sledování</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Umožňuje žebříčku SponsorBlock vědět, kolik času je uloženo. Zpráva je odeslána do žebříčku pokaždé, když je segment přeskočen.</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Přeskočit počet sledování není povoleno</string>
+ <string name="revanced_sb_general_min_duration">Minimální doba trvání segmentu</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmenty kratší než tato hodnota (v sekundách) nebudou zobrazeny nebo přeskočeny</string>
+ <string name="revanced_sb_general_uuid">Vaše soukromé ID uživatele</string>
+ <string name="revanced_sb_general_uuid_sum">Toto by mělo být ponecháno v soukromí. To je jako heslo a nemělo by být s nikým sdíleno. Pokud to někdo má, mohou vás zosobnit</string>
+ <string name="revanced_sb_general_uuid_invalid">Soukromé ID uživatele musí mít alespoň 30 znaků</string>
+ <string name="revanced_sb_general_api_url">Změnit URL API</string>
+ <string name="revanced_sb_general_api_url_sum">Adresa, kterou SponsorBlock používá k volání na server</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">API URL je neplatné</string>
+ <string name="revanced_sb_api_url_changed">URL adresa API změněna</string>
+ <string name="revanced_sb_settings_ie">Nastavení importu/exportu</string>
+ <string name="revanced_sb_settings_copy">Kopírovat</string>
+ <string name="revanced_sb_settings_ie_sum">Vaše konfigurace JSON SponsorBlock, která může být importována/exportována do ReVanced a dalších platforem SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Vaše konfigurace JSON SponsorBlock, která může být importována/exportována do ReVanced a dalších platforem SponsorBlock. Zahrnuje vaše soukromé uživatelské ID. Nezapomeňte tuto moudře sdílet</string>
+ <string name="revanced_sb_settings_import_successful">Nastavení úspěšně importováno</string>
+ <string name="revanced_sb_settings_import_failed">Import se nezdařil: %s</string>
+ <string name="revanced_sb_settings_export_failed">Export se nezdařil: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Vaše nastavení obsahují soukromého uživatele SponsorBlock.\n\nVaše uživatelské ID je jako heslo a nikdy by nemělo být sdíleno.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Znovu nezobrazovat</string>
+ <string name="revanced_sb_diff_segments">Změnit chování segmentu</string>
+ <string name="revanced_sb_segments_sponsor">Sponzor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Placená propagace, placená doporučení a přímé reklamy. Ne pro sebepropagaci nebo bezplatné vzkazy k příčinám/tvůrcům/webům/produktům, které se jim líbí</string>
+ <string name="revanced_sb_segments_selfpromo">Nezaplacené/vlastní akce</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Podobně jako \'Sponsor\' s výjimkou neplacené nebo samopropagace. Zahrnuje sekce o zboží, dary nebo informace o tom, s kým spolupracují.</string>
+ <string name="revanced_sb_segments_interaction">Připomenutí interakce (Subscribe)</string>
+ <string name="revanced_sb_segments_interaction_sum">Krátká připomínka k podobě, přihlásit nebo sledovat je uprostřed obsahu. Pokud je dlouhá nebo něco specifického, měla by být spíše pod vlastní propagací</string>
+ <string name="revanced_sb_segments_highlight">Zvýraznit</string>
+ <string name="revanced_sb_segments_highlight_sum">Část videa, kterou hledá většina lidí</string>
+ <string name="revanced_sb_segments_intro">Intermission/Úvod animace</string>
+ <string name="revanced_sb_segments_intro_sum">Interval bez skutečného obsahu. Může být pozastavený, statický rámec nebo opakující se animace. Nezahrnuje přechody, které obsahují informace</string>
+ <string name="revanced_sb_segments_outro">Koncové karty/kredity</string>
+ <string name="revanced_sb_segments_outro_sum">Kredity nebo když se objeví YouTube. Ne pro závěry s informacemi</string>
+ <string name="revanced_sb_segments_preview">Náhled / Recap/háček</string>
+ <string name="revanced_sb_segments_preview_sum">sbírka klipů, která zobrazuje, co se blíží nebo co se stalo ve videu nebo v jiných videích série, kde se všechny informace opakují jinde</string>
+ <string name="revanced_sb_segments_filler">Výplň / vtipy</string>
+ <string name="revanced_sb_segments_filler_sum">Tangenciální scény přidány pouze pro plovoucí nebo humor, které nejsou nutné k pochopení hlavního obsahu videa. Nezahrnuje segmenty poskytující podrobnosti o kontextu nebo pozadí</string>
+ <string name="revanced_sb_segments_nomusic">Hudba: nehudební sekce</string>
+ <string name="revanced_sb_segments_nomusic_sum">Pouze pro použití v hudebních videích. Sekce hudebních videí bez hudby, které již nejsou pokryty jinou kategorií</string>
+ <string name="revanced_sb_skip_button_compact">Přeskočit</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Zvýraznit</string>
+ <string name="revanced_sb_skip_button_sponsor">Přeskočit sponzor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Přeskočit promo</string>
+ <string name="revanced_sb_skip_button_interaction">Přeskočit interakci</string>
+ <string name="revanced_sb_skip_button_highlight">Přeskočit zvýraznění</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Přeskočit úvod</string>
+ <string name="revanced_sb_skip_button_intro_middle">Přeskočit interakci</string>
+ <string name="revanced_sb_skip_button_intro_end">Přeskočit interakci</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Přeskočit náhled</string>
+ <string name="revanced_sb_skip_button_preview_middle">Přeskočit náhled</string>
+ <string name="revanced_sb_skip_button_preview_end">Přeskočit znovu</string>
+ <string name="revanced_sb_skip_button_filler">Přeskočit plnivo</string>
+ <string name="revanced_sb_skip_button_nomusic">Přeskočit nehudbu</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Přeskočit segment</string>
+ <string name="revanced_sb_skipped_sponsor">Sponzor přeskočen</string>
+ <string name="revanced_sb_skipped_selfpromo">Přeskočená vlastní propagace</string>
+ <string name="revanced_sb_skipped_interaction">Přeskočeno obtěžující připomenutí</string>
+ <string name="revanced_sb_skipped_highlight">Přeskočeno pro zvýraznění</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro přeskočeno</string>
+ <string name="revanced_sb_skipped_intro_middle">Vynecháno</string>
+ <string name="revanced_sb_skipped_intro_end">Vynecháno</string>
+ <string name="revanced_sb_skipped_outro">Outro přeskočeno</string>
+ <string name="revanced_sb_skipped_preview_beginning">Přeskočena ukázka/rekapitulace</string>
+ <string name="revanced_sb_skipped_preview_middle">Přeskočena ukázka/rekapitulace</string>
+ <string name="revanced_sb_skipped_preview_end">Přeskočit znovu</string>
+ <string name="revanced_sb_skipped_filler">Přeskočená nepodstatná výplň videa</string>
+ <string name="revanced_sb_skipped_nomusic">Přeskočena nehudební sekce</string>
+ <string name="revanced_sb_skipped_unsubmitted">Přeskočeno neodeslaný segment</string>
+ <string name="revanced_sb_skipped_multiple_segments">Přeskočeno více segmentů</string>
+ <string name="revanced_sb_skip_automatically">Automaticky přeskočit</string>
+ <string name="revanced_sb_skip_automatically_once">Automaticky přeskočit jednou</string>
+ <string name="revanced_sb_skip_showbutton">Zobrazit tlačítko \"Přeskočit\"</string>
+ <string name="revanced_sb_skip_seekbaronly">Zobrazit v panelu hledání</string>
+ <string name="revanced_sb_skip_ignore">Zakázat</string>
+ <string name="revanced_sb_submit_failed_invalid">Nelze odeslat segment: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock je dočasně vypnutý</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Nelze odeslat segment (stav: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Nelze odeslat segment.\nOmezená sazba (příliš mnoho od stejného uživatele nebo IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Nelze odeslat segment: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Nelze odeslat segment.\nJiž existuje</string>
+ <string name="revanced_sb_submit_succeeded">Segment úspěšně odeslán</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock dočasně není k dispozici (vypršel časový limit API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock dočasně není k dispozici (stav %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock dočasně není k dispozici</string>
+ <string name="revanced_sb_vote_failed_timeout">Nelze hlasovat pro segment (vypršel časový limit API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Nelze hlasovat pro segment (stav: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Nelze hlasovat pro segment: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Hlasovat proti</string>
+ <string name="revanced_sb_vote_category">Změnit kategorii</string>
+ <string name="revanced_sb_vote_no_segments">Neexistují žádné segmenty k hlasování pro</string>
+ <string name="revanced_sb_new_segment_choose_category">Vyberte kategorii segmentu</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategorie je v nastavení zakázána. Povolte odeslat kategorii.</string>
+ <string name="revanced_sb_new_segment_title">Nový segment SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Nastavit %1$02d:%2$02d:%3$03d jako začátek nebo konec nového segmentu?</string>
+ <string name="revanced_sb_new_segment_mark_start">Začít</string>
+ <string name="revanced_sb_new_segment_mark_end">konec</string>
+ <string name="revanced_sb_new_segment_now">nyní</string>
+ <string name="revanced_sb_new_segment_time_start">Čas začátku segmentu</string>
+ <string name="revanced_sb_new_segment_time_end">Čas ukončení segmentu v</string>
+ <string name="revanced_sb_new_segment_confirm_title">Mají časy pravdu?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segment je od\n\n%1$s\ndo\n%2$s\n\n(%3$s)\n\nPřipraveno k odeslání?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Začátek musí být před koncem</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Nejdříve označte dvě místa v časové liště</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Náhled segmentu a zajištění jeho hladkého přeskočení</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Upravit načasování segmentu ručně</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Chcete upravit časování pro začátek nebo konec segmentu?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Uvedený neplatný čas</string>
+ <string name="revanced_sb_stats">Statistiky</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistiky dočasně nejsou k dispozici (API je vypnuto)</string>
+ <string name="revanced_sb_stats_loading">Načítání...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock je zakázán</string>
+ <string name="revanced_sb_stats_username">Vaše uživatelské jméno: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Klepnutím sem změníte své uživatelské jméno</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Nelze změnit uživatelské jméno: Stav: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Uživatelské jméno bylo úspěšně změněno</string>
+ <string name="revanced_sb_stats_reputation">Tvá reputace je <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Vytvořili jste <b>%s</b> segmenty</string>
+ <string name="revanced_sb_stats_saved_zero">Žebříček SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Uložili jste lidi z <b>%s</b> segmentů</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Klepnutím sem zobrazíte globální statistiky a nejlepší přispěvatelé</string>
+ <string name="revanced_sb_stats_saved_sum">To je <b>%s</b> jejich životů.<br>Klepněte zde pro zobrazení žebříčku</string>
+ <string name="revanced_sb_stats_self_saved">Přeskočili jste <b>%s</b> segmenty</string>
+ <string name="revanced_sb_stats_self_saved_sum">To je <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Obnovit čítač přeskočených segmentů?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s hodin %2$s minut</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minut %2$s sekund</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekund</string>
+ <string name="revanced_sb_color_dot_label">Barva:</string>
+ <string name="revanced_sb_color_changed">Barva změněna</string>
+ <string name="revanced_sb_color_reset">Obnovit barvu</string>
+ <string name="revanced_sb_color_invalid">Neplatný kód barvy</string>
+ <string name="revanced_sb_reset_color">Obnovit barvu</string>
+ <string name="revanced_sb_reset">Resetovat</string>
+ <string name="revanced_sb_about">O aplikaci</string>
+ <string name="revanced_sb_about_api_sum">Data jsou poskytována aplikací SponsorBlock. Klepnutím sem se dozvíte více a podívejte se na stahování pro ostatní platformy</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Verze aplikace Spoof</string>
+ <string name="revanced_spoof_app_version_summary_on">Verze zmařena</string>
+ <string name="revanced_spoof_app_version_summary_off">Verze není falešná</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Verze aplikace bude falešná ve starší verzi YouTube.\n\nToto změní vzhled a funkce aplikace, ale může dojít k neznámým vedlejším účinkům.\n\nPokud je později vypnuto, je doporučeno vymazat data aplikace, aby se zabránilo chybám uživatelského rozhraní.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Cíl pro spontánní verzi aplikace</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Obnovení RYD v krátkém anonymním režimu</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Obnovení široké rychlosti videa & kvalitní menu</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Obnovení záložky knihovny</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Obnovit starou skladbu</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Obnovit staré rozložení UI</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Nastavit úvodní stránku</string>
+ <string name="revanced_start_page_entry_0">Výchozí</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Domů</string>
+ <string name="revanced_start_page_entry_2">Hledat</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Předplatné</string>
+ <string name="revanced_start_page_entry_4">Prozkoumat</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Karta</string>
+ <string name="revanced_start_page_entry_7">Líbí se vám videa</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historie</string>
+ <string name="revanced_start_page_entry_9">Populární</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Zakázat obnovení krátkého přehrávače</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Krátký přehrávač nebude pokračovat při spuštění aplikace</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Krátký přehrávač bude pokračovat při spuštění aplikace</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Povolit rozložení tabletu</string>
+ <string name="revanced_tablet_layout_summary_on">Rozložení tabletu je povoleno</string>
+ <string name="revanced_tablet_layout_summary_off">Rozložení tabletu je zakázáno</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Komunitní příspěvky se nezobrazují ve vzhledu tabletu</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minipřehrávač</string>
+ <string name="revanced_miniplayer_screen_summary">Změnit styl přehrávače minimalizovaného nastavení</string>
+ <string name="revanced_miniplayer_type_title">Typ minipřehrávače</string>
+ <string name="revanced_miniplayer_type_entry_1">Původní</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderní 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderní 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderní 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Skrýt tlačítka rozbalit a zavřít</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Tlačítka jsou skrytá\n(potáhněte minipřehrávač pro rozšíření nebo zavření)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Tlačítka rozbalit a zavřít jsou zobrazena</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Skrýt podtexty</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Podtexty jsou skryty</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Podtexty jsou zobrazeny</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Skrýt přeskočit tlačítka vpřed a zpět</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Přeskočit vpřed a zpět jsou skryty</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Přeskočit vpřed a zpět jsou zobrazeny</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Neprůhlednost mezi 0-100, kde 0 je průhledná</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Neprůhlednost překrytí minipřehrávače musí být mezi 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Povolit načtení obrazovky gradient</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Načítání obrazovky bude mít přechod na pozadí</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Načítání obrazovky bude mít pevné pozadí</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Povolit vlastní barvu vyhledávacího panelu</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Vlastní barva vyhledávacího panelu je zobrazena</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Zobrazí se původní barva vyhledávacího panelu</string>
+ <string name="revanced_seekbar_custom_color_value_title">Vlastní barva vyhledávacího panelu</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Barva vyhledávacího panelu</string>
+ <string name="revanced_seekbar_custom_color_invalid">Neplatná hodnota barvy vyhledávacího panelu. Použít výchozí hodnotu.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Záložka Domů</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Záložka předplatného</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Karta</string>
+ <string name="revanced_alt_thumbnail_player_title">Doporučení hráčů playlistů,</string>
+ <string name="revanced_alt_thumbnail_search_title">Výsledky hledání</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Rozšířit & Původní náhledy</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Dešík & Stále zachycuje</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Stále snímky</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow poskytuje náhledy pro YouTube videa. Tyto náhledy jsou často relevantnější než ty, které poskytuje YouTube\n\nPokud je povoleno, URL videa budou odeslány na API server a žádná další data nebudou odeslána. Pokud video nemá náhledy pro DeArrow, pak jsou zobrazeny originální nebo stále zachycené\n\nKlepnutím sem se dozvíte více o DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Zobrazit toast pokud API není k dispozici</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast se zobrazí, pokud není k dispozici</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast není zobrazena, pokud není dostupný DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Adresa URL koncového bodu miniaplikace DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Stále snímání videa</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Stále jsou snímky odebírány od začátku/uprostřed/konce každého videa. Tyto obrázky jsou zabudovány do YouTube a externí API se nepoužívá</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Použít rychlé stále snímání</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Použití středně kvalitních pomůcek. Náhledy budou načteny rychleji, ale živé streamy, neuvolněné nebo velmi stará videa mohou zobrazit prázdné náhledy</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Používání statických snímků vysoké kvality</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Čas videa na pořízení ponoření</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Začátek videa</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Střed videa</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Konec videa</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Doručení dočasně není k dispozici (stavový kód: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Odšíp dočasně není k dispozici</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Zobrazit rozšířená oznámení</string>
+ <string name="revanced_announcements_summary_on">Oznámení jsou zobrazena při spuštění</string>
+ <string name="revanced_announcements_summary_off">Oznámení nejsou zobrazena při spuštění</string>
+ <string name="revanced_announcements_enabled_summary">Zobrazit oznámení při spuštění</string>
+ <string name="revanced_announcements_connection_failed">Připojení k poskytovateli oznámení se nezdařilo</string>
+ <string name="revanced_announcements_dialog_dismiss">Zrušit</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Povolit automatické opakování</string>
+ <string name="revanced_auto_repeat_summary_on">Automaticky opakovat je povoleno</string>
+ <string name="revanced_auto_repeat_summary_off">Automatické opakování je zakázáno</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Rozměry zařízení pro spouštění</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Rozměry zařízení jsou zfalšovány\n\nVyšší vlastnosti videa mohou být odemknuty, ale můžete zažít seříznutí videa, horší výdrž baterie a neznámé boční efekty</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Rozměry zařízení nejsou zfalšovány\n\nPovolením této funkce můžete odemknout vyšší vlastnosti videa</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Povolením této funkce může být způsobeno přehrávání videa, horší životnost baterie a neznámé vedlejší účinky.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Nastavení GmsCore</string>
+ <string name="microg_settings_summary">Nastavení pro GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Obejít přesměrování URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL přesměrování je obcházeno</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL přesměrování není obcházeno</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Otevřít odkazy v prohlížeči</string>
+ <string name="revanced_external_browser_summary_on">Otevírací odkazy vně</string>
+ <string name="revanced_external_browser_summary_off">Otevírání odkazů v aplikaci</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Přehrávání na pozadí</string>
+ <string name="revanced_background_playback_summary">Toto nastavení lze nalézt v Nastavení -> Pozadí</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Odstranit parametr dotaz pro sledování</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parametr dotaz na sledování je odstraněn z odkazů</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parametr dotaz na sledování není odstraněn z odkazů</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Zakázat hmatové přiblížení</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hmatové úlohy jsou zakázány</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Hmatové úlohy jsou povoleny</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatická kvalita</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Zapamatovat změny kvality videa</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Změny kvality platí pro všechna videa</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Změny kvality se vztahují pouze na aktuální video</string>
+ <string name="revanced_video_quality_default_wifi_title">Výchozí kvalita videa na Wi-Fi síti</string>
+ <string name="revanced_video_quality_default_mobile_title">Výchozí kvalita videa v mobilní síti</string>
+ <string name="revanced_remember_video_quality_mobile">mobilní</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Změněna výchozí kvalita %1$s na: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Zobrazit tlačítko dialogu rychlosti</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Tlačítko je zobrazeno</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Tlačítko není zobrazeno</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Vlastní rychlosti přehrávání</string>
+ <string name="revanced_custom_playback_speeds_summary">Přidat nebo změnit dostupné rychlosti přehrávání</string>
+ <string name="revanced_custom_playback_speeds_invalid">Vlastní rychlosti musí být menší než %s. Použití výchozích hodnot.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Neplatné vlastní rychlosti přehrávání. Použití výchozích hodnot.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Zapamatovat změny rychlosti přehrávání</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Změny rychlosti přehrávání platí pro všechna videa</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Změny rychlosti přehrávání platí pouze pro aktuální video</string>
+ <string name="revanced_playback_speed_default_title">Výchozí rychlost přehrávání</string>
+ <string name="revanced_remember_playback_speed_toast">Změněna výchozí rychlost na: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Obnovit staré menu kvality videa</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Zobrazí se staré menu kvality videa</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Staré menu kvality videa není zobrazeno</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Povolit posunutí pro vyhledání</string>
+ <string name="revanced_slide_to_seek_summary_on">Posunutí pro vyhledání je povoleno</string>
+ <string name="revanced_slide_to_seek_summary_off">Posunutí k vyhledání není povoleno</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Sponzor</string>
+ <string name="revanced_spoof_client_screen_summary">Spořič klienta, aby zabránil problémům s přehráváním</string>
+ <string name="revanced_spoof_client_title">Sponzor</string>
+ <string name="revanced_spoof_client_summary_on">Klient je falešný</string>
+ <string name="revanced_spoof_client_summary_off">Klient není spoofed\n\nPřehrávání videa nemusí fungovat</string>
+ <string name="revanced_spoof_client_user_dialog_message">Vypnutí tohoto nastavení může způsobit problémy při přehrávání videa.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spořič do iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Klient je v současné době spokojen s iOS\n\nBoční efekty zahrnují:\n• No HDR video\n• Historie sledování nemusí fungovat\n• Vyšší vlastnosti videa mohou chybět\n• Živé streamy nemohou přehrát pouze\n• Živé streamy nejsou k dispozici na Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Klient je v současné době spout s Androidem VR\n\nBoční efekty zahrnují:\n• No HDR video\n• Dětská videa nepřehrávají\n• Pozastavená videa mohou náhodně pokračovat\n• Nízká kvalita krátkých náhledů ve vyhledávacím panelu\n• Tlačítko stahování akce je vždy skryté\n• Karty s ukončenou obrazovkou jsou vždy skryté</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Náhledy klientů nejsou k dispozici (vypršel časový limit API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Spouštění náhledů klientů dočasně není k dispozici: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Podpis aplikace</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Podpis aplikace zabraňující problémům při přehrávání</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Podpis aplikace</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Podpis aplikace spoofed\n\nBoční efekty zahrnují:\n• Rozšířená bitrate není k dispozici\n• Videa nelze stáhnout\n• Žádné náhledy pro placená videa</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Podpis aplikace není falešný\n\nPřehrávání videa nemusí fungovat</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Vypnutí tohoto nastavení způsobí problémy při přehrávání videa.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Podpis aplikace do kanálu</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Podpis aplikace spoofed\n\nBoční efekty zahrnují:\n• Video kanálu chybí titulky\n• Automaticky přehrávaná videa se zobrazí ve vaší historii sledování</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Podpis aplikace není falešný pro videa s kanálem\n\nPřed zjištěním problémů s přehráváním se videa kanálu budou přehrávat méně než 1 minutu</string>
+ <string name="revanced_spoof_storyboard_title">Příběh</string>
+ <string name="revanced_spoof_storyboard_summary_on">Skládací krabice</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard není falešný\n\nBoční efekty zahrnují:\n• Žádný ambientní režim\n• Náhledy v panelu vyhledávání jsou skryté</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard dočasně není k dispozici (vypršel časový limit API)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Příběhová deska dočasně není k dispozici: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Povolit automatický jas HDR</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatický HDR jas je povolen</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automatický HDR jas je zakázán</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blokovat zvukové reklamy</string>
+ <string name="revanced_block_audio_ads_summary_on">Zvukové reklamy jsou blokovány</string>
+ <string name="revanced_block_audio_ads_summary_off">Zvukové reklamy jsou odblokovány</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s není dostupný. Reklamy se mohou zobrazit. Zkuste přepnout na jinou službu blokování reklam v nastavení.</string>
+ <string name="revanced_embedded_ads_service_failed">%s server vrátil chybu. Reklamy se mohou zobrazit. Zkuste přepnout na jinou službu blokování reklam v nastavení.</string>
+ <string name="revanced_block_embedded_ads_title">Blokovat vložené video reklamy</string>
+ <string name="revanced_block_embedded_ads_entry_1">Vypnuto</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy světelné ukazatele</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blokovat video reklamy</string>
+ <string name="revanced_block_video_ads_summary_on">Video reklamy jsou blokovány</string>
+ <string name="revanced_block_video_ads_summary_off">Video reklamy jsou odblokovány</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">zpráva byla smazána</string>
+ <string name="revanced_show_deleted_messages_title">Zobrazit smazané zprávy</string>
+ <string name="revanced_show_deleted_messages_entry_1">Nezobrazovat smazané zprávy</string>
+ <string name="revanced_show_deleted_messages_entry_2">Skrýt smazané zprávy za spoletem</string>
+ <string name="revanced_show_deleted_messages_entry_3">Zobrazit smazané zprávy jako skrytý text</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Automaticky nárokovat kanálové body</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Body kanálu jsou požadovány automaticky</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Standardní body nejsou požadovány automaticky</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Povolit režim ladění Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Režim ladění Twitch je povolen (není doporučeno)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Režim ladění Twitch je zakázán</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Rozšířené nastavení</string>
+ <string name="revanced_ads_screen_title">Reklamy</string>
+ <string name="revanced_ads_screen_summary">Nastavení blokování reklamy</string>
+ <string name="revanced_chat_screen_title">Chat</string>
+ <string name="revanced_chat_screen_summary">Nastavení chatu</string>
+ <string name="revanced_misc_screen_title">Ostatní</string>
+ <string name="revanced_misc_screen_summary">Různá nastavení</string>
+ <string name="revanced_general_category_title">Obecná nastavení</string>
+ <string name="revanced_other_category_title">Další nastavení</string>
+ <string name="revanced_client_ads_category_title">Reklamy na straně klienta</string>
+ <string name="revanced_surestream_ads_category_title">Obnovení reklam na straně serveru</string>
+ <string name="revanced_twitch_debug_title">Debugovací záznamy</string>
+ <string name="revanced_twitch_debug_summary_on">Debugovací záznamy jsou zapnuty</string>
+ <string name="revanced_twitch_debug_summary_off">Debugovací záznamy jsou vypnuty</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-da-rDK/strings.xml b/src/main/resources/addresources/values-da-rDK/strings.xml
new file mode 100644
index 0000000000..21b35f6220
--- /dev/null
+++ b/src/main/resources/addresources/values-da-rDK/strings.xml
@@ -0,0 +1,1198 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Ønsker du at fortsætte?</string>
+ <string name="revanced_settings_reset">Nulstil</string>
+ <string name="revanced_settings_restart_title">Opdater og genstart</string>
+ <string name="revanced_settings_restart">Genstart</string>
+ <string name="revanced_settings_import">Importér</string>
+ <string name="revanced_settings_import_copy">Kopiér</string>
+ <string name="revanced_settings_import_reset">ReVanced indstillinger nulstillet til standard</string>
+ <string name="revanced_settings_import_success">Importerede %d indstillinger</string>
+ <string name="revanced_settings_import_failure_parse">Import mislykkedes: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore er ikke installeret. Installér den.</string>
+ <string name="gms_core_dialog_title">Behov for handling</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore har ikke tilladelse til at køre i baggrunden.\n\nFølg vejledningen \"Må ikke dræbe min app\" til din telefon, og anvend vejledningen til din MicroG-installation.\n\nDette er nødvendigt for at appen kan fungere.</string>
+ <string name="gms_core_dialog_open_website_text">Åbn hjemmeside</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore batterioptimeringer skal være deaktiveret for at forhindre problemer.\n\nTryk på knappen fortsæt og deaktiver batterioptimeringer.</string>
+ <string name="gms_core_dialog_continue_text">Fortsæt</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Du bruger ReVanced Patches version <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Bemærkning</string>
+ <string name="revanced_settings_about_links_dev_body">Denne version er en pre-release og du kan opleve uventede problemer</string>
+ <string name="revanced_settings_about_links_header">Officielle links</string>
+ <string name="revanced_pref_import_export_title">Import / Eksport</string>
+ <string name="revanced_pref_import_export_summary">Importer / Eksport ReVanced indstillinger</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Om</string>
+ <string name="revanced_settings_screen_01_ads_title">Annoncer</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternative miniaturer</string>
+ <string name="revanced_settings_screen_03_feed_title">Feed</string>
+ <string name="revanced_settings_screen_04_player_title">Spiller</string>
+ <string name="revanced_settings_screen_05_general_title">Generelt layout</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Søgebjælke</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Stryg kontrolelementer</string>
+ <string name="revanced_settings_screen_11_misc_title">Diverse</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Fejlfinding</string>
+ <string name="revanced_debug_screen_summary">Aktiver eller deaktiver fejlfindingsindstillinger</string>
+ <string name="revanced_debug_title">Debug logning</string>
+ <string name="revanced_debug_summary_on">Debug logs er aktiveret</string>
+ <string name="revanced_debug_summary_off">Debug logs er deaktiveret</string>
+ <string name="revanced_debug_protobuffer_title">Log protokol buffer</string>
+ <string name="revanced_debug_protobuffer_summary_on">Debug logs indeholder proto buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Debug logs indeholder ikke proto buffer</string>
+ <string name="revanced_debug_stacktrace_title">Log stak spor</string>
+ <string name="revanced_debug_stacktrace_summary_on">Debug logs omfatter stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">Debug logs indeholder ikke stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Vis toast på ReVanced fejl</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast vist, hvis der opstår fejl</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast ikke vist, hvis der opstår fejl</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Slår fejl-toasts fra skjuler alle ReVanced fejlmeddelelser.\n\nDu vil ikke blive underrettet om nogen uventede begivenheder.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Deaktivér som / abonnér knap glow</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Ligesom og abonnér knap vil ikke gløde når nævnt</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Ligesom og abonnér knappen vil gløde, når nævnt</string>
+ <string name="revanced_hide_gray_separator_title">Skjul grå separator</string>
+ <string name="revanced_hide_gray_separator_summary_on">Grå separatorer er skjult</string>
+ <string name="revanced_hide_gray_separator_summary_off">Grå separatorer er vist</string>
+ <string name="revanced_hide_channel_watermark_title">Skjul kanalvandmærke</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Vandmærke er skjult</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vandmærke er vist</string>
+ <string name="revanced_hide_horizontal_shelves_title">Skjul vandrette hylder</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Hylder er skjult såsom:\n• Breaking news\n• Fortsæt med at se\n• Udforsk flere kanaler\n• Shopping\n• Se det igen</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Hylder er vist</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Skjul \'Tilmeld\' knap</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Knap er skjult</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Knap vises</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Skjul \'For dig\' hylde på kanalsiden</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Hylden er skjult</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Hylde er vist</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Skjul knappen \'Meddel mig\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Knap er skjult</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Knap vises</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Skjul \'Folk kiggede også på\' anbefalinger</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Anbefalinger er skjult</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Anbefalinger er vist</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Skjul \'Vis mere\'-knap</string>
+ <string name="revanced_hide_show_more_button_summary_on">Knap er skjult</string>
+ <string name="revanced_hide_show_more_button_summary_off">Knap vises</string>
+ <string name="revanced_hide_timed_reactions_title">Skjul tidsrelaterede reaktioner</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Tidsbegrænsede reaktioner er skjult</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Tidsbegrænsede reaktioner er vist</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Skjul søgeresultat hylde header</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Hylde header er skjult</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Hylde header er vist</string>
+ <string name="revanced_hide_channel_guidelines_title">Skjul kanalretningslinjer</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanalretningslinjer er skjult</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanalretningslinjer er vist</string>
+ <string name="revanced_hide_expandable_chip_title">Skjul udvidelig chip under videoer</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Kan udvides chips er skjult</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Udvidede jetoner vises</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Skjul sidefod til videokvalitet</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Videokvalitetsmenuens sidefod er skjult</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Videokvalitet menu footer er vist</string>
+ <string name="revanced_hide_community_posts_title">Skjul fællesskabs indlæg</string>
+ <string name="revanced_hide_community_posts_summary_on">Fællesskabs indlæg er skjult</string>
+ <string name="revanced_hide_community_posts_summary_off">Fællesskabs indlæg er vist</string>
+ <string name="revanced_hide_compact_banner_title">Skjul kompakte bannere</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakte bannere er skjult</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakte bannere vises</string>
+ <string name="revanced_hide_movies_section_title">Skjul filmsektion</string>
+ <string name="revanced_hide_movies_section_summary_on">Afsnittet Film er skjult</string>
+ <string name="revanced_hide_movies_section_summary_off">Afsnittet Film vises</string>
+ <string name="revanced_hide_feed_survey_title">Skjul feed-undersøgelser</string>
+ <string name="revanced_hide_feed_survey_summary_on">Foderundersøgelser er skjult</string>
+ <string name="revanced_hide_feed_survey_summary_off">Foderundersøgelser er vist</string>
+ <string name="revanced_hide_community_guidelines_title">Skjul fællesskabs retningslinjer</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Fællesskabets retningslinjer er skjult</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Der er opstillet EF-retningslinjer</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Skjul retningslinjer for abonnenter</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Abonnenter community retningslinjer er skjult</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Abonnenter community retningslinjer er vist</string>
+ <string name="revanced_hide_channel_member_shelf_title">Skjul kanalmedlems hylde</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanalmedlems hylde er skjult</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanal medlem hylde er vist</string>
+ <string name="revanced_hide_emergency_box_title">Skjul nødbokse</string>
+ <string name="revanced_hide_emergency_box_summary_on">Nødbokse er skjult</string>
+ <string name="revanced_hide_emergency_box_summary_off">Nødbokse vises</string>
+ <string name="revanced_hide_info_panels_title">Skjul infopaneler</string>
+ <string name="revanced_hide_info_panels_summary_on">Infopaneler er skjult</string>
+ <string name="revanced_hide_info_panels_summary_off">Infopaneler vises</string>
+ <string name="revanced_hide_medical_panels_title">Skjul medicinske paneler</string>
+ <string name="revanced_hide_medical_panels_summary_on">Medicinske paneler er skjult</string>
+ <string name="revanced_hide_medical_panels_summary_off">Medicinske paneler er vist</string>
+ <string name="revanced_hide_channel_bar_title">Skjul kanallinje</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanalbjælken er skjult</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanalbjælken vises</string>
+ <string name="revanced_hide_playables_title">Skjul Spilleobjekter</string>
+ <string name="revanced_hide_playables_summary_on">Spilleobjekter er skjult</string>
+ <string name="revanced_hide_playables_summary_off">Afspilningstabeller vises</string>
+ <string name="revanced_hide_quick_actions_title">Skjul hurtige handlinger i fuldskærm</string>
+ <string name="revanced_hide_quick_actions_summary_on">Hurtige handlinger er skjult</string>
+ <string name="revanced_hide_quick_actions_summary_off">Hurtige handlinger vises</string>
+ <string name="revanced_hide_related_videos_title">Skjul relaterede videoer i hurtige handlinger</string>
+ <string name="revanced_hide_related_videos_summary_on">Relaterede videoer er skjult</string>
+ <string name="revanced_hide_related_videos_summary_off">Relaterede videoer vises</string>
+ <string name="revanced_hide_image_shelf_title">Skjul billedhylde i søgeresultater</string>
+ <string name="revanced_hide_image_shelf_summary_on">Billede hylde er skjult</string>
+ <string name="revanced_hide_image_shelf_summary_off">Billede hylde er vist</string>
+ <string name="revanced_hide_latest_posts_ads_title">Skjul seneste indlæg</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Seneste indlæg er skjult</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Seneste indlæg vises</string>
+ <string name="revanced_hide_mix_playlists_title">Skjul miks afspilningslister</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Mix afspilningslister er skjult</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mix afspilningslister vises</string>
+ <string name="revanced_hide_artist_cards_title">Skjul kunstnerkort</string>
+ <string name="revanced_hide_artist_cards_summary_on">Kunstnerkort er skjult</string>
+ <string name="revanced_hide_artist_cards_summary_off">Kunstnerkort vises</string>
+ <string name="revanced_hide_chips_shelf_title">Skjul chips hylde</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips hylde er skjult</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips hylde er vist</string>
+ <string name="revanced_hide_attributes_section_title">Skjul attributter sektion</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Udvalgte steder\', Spil og Musik sektioner er skjult</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Udvalgte steder\', Spil og Musik sektioner er vist</string>
+ <string name="revanced_hide_chapters_section_title">Skjul kapitler afsnit</string>
+ <string name="revanced_hide_chapters_section_summary_on">Kapitler sektion er skjult</string>
+ <string name="revanced_hide_chapters_section_summary_off">Kapitel afsnit er vist</string>
+ <string name="revanced_hide_podcast_section_title">Skjul \'Udforsk podcast\'-sektionen</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Udforsk podcast\' sektionen er skjult</string>
+ <string name="revanced_hide_podcast_section_summary_off">\'Udforsk podcast\' sektionen vises</string>
+ <string name="revanced_hide_info_cards_section_title">Skjul infokort sektion</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Info-kort sektion er skjult</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Info-kort sektion er vist</string>
+ <string name="revanced_hide_transcript_section_title">Skjul udskriftsafsnittet</string>
+ <string name="revanced_hide_transcript_section_summary_on">Afsnittet er skjult</string>
+ <string name="revanced_hide_transcript_section_summary_off">Afsnittet er vist</string>
+ <string name="revanced_hide_description_components_screen_title">Video beskrivelse</string>
+ <string name="revanced_hide_description_components_screen_summary">Skjul eller vis komponenter til videobeskrivelse</string>
+ <string name="revanced_custom_filter_screen_title">Tilpasset filter</string>
+ <string name="revanced_custom_filter_screen_summary">Skjul komponenter ved hjælp af brugerdefinerede filtre</string>
+ <string name="revanced_custom_filter_title">Aktiver brugerdefineret filter</string>
+ <string name="revanced_custom_filter_summary_on">Brugerdefineret filter er aktiveret</string>
+ <string name="revanced_custom_filter_summary_off">Brugerdefineret filter er deaktiveret</string>
+ <string name="revanced_custom_filter_strings_title">Tilpasset filter</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Liste over stigenereringsstrenge til filtrering adskilt af ny linje</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Ugyldigt brugerdefineret filter: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Skjul nøgleordsindhold</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Skjul søge- og feed videoer ved hjælp af søgeordsfiltre</string>
+ <string name="revanced_hide_keyword_content_home_title">Skjul hjemmevideoer med søgeord</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videoer i fanen hjemme filtreres af søgeord</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videoer i fanen Hjem er ikke filtreret af søgeord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Skjul abonnementsvideoer med søgeord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videoer i fanen Abonnementer filtreres af søgeord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videoer i fanen Abonnementer filtreres ikke af søgeord</string>
+ <string name="revanced_hide_keyword_content_search_title">Skjul søgeresultater efter søgeord</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Søgeresultater filtreres af søgeord</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Søgeresultater filtreres ikke af søgeord</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Nøgleord at skjule</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Nøgleord og sætninger at skjule, adskilt af nye linjer\n\nOrd med store bogstaver i midten skal indtastes med casing (dvs. iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Om søgeord filtrering</string>
+ <string name="revanced_hide_keyword_content_about_summary">Hjem/Abonnement/Søgeresultater filtreres for at skjule indhold, der matcher søgeordssætninger\n\nBegrænsninger\n• Nogle Shorts er muligvis ikke skjult\n• Nogle UI-komponenter er muligvis ikke skjult\n• Søger efter et søgeord, kan ikke vise nogen resultater</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ugyldigt søgeord. Kan ikke bruge: \'%s\' som et filter</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ugyldigt søgeord. \'%1$s\' er mindre end %2$d tegn</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Nøgleord \'$s\' vil skjule alle videoer</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Skjul generelle annoncer</string>
+ <string name="revanced_hide_general_ads_summary_on">Generelle annoncer er skjult</string>
+ <string name="revanced_hide_general_ads_summary_off">Generelle annoncer vises</string>
+ <string name="revanced_hide_fullscreen_ads_title">Skjul fuldskærmsannoncer</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Fuldskærmsannoncer er skjult\n\nDenne funktion er kun tilgængelig for ældre enheder</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Fuldskærms annoncer vises</string>
+ <string name="revanced_hide_buttoned_ads_title">Skjul knapfyldte annoncer</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Knappede annoncer er skjult</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Knappede annoncer vises</string>
+ <string name="revanced_hide_paid_promotion_label_title">Skjul betalt kampagneetiket</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Betalt reklamemærke er skjult</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Betalt salgsfremmende mærke er vist</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Skjul selvsponsorerede kort</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Selvsponsorerede kort er skjult</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Selvsponsorerede kort vises</string>
+ <string name="revanced_hide_products_banner_title">Skjul banner for at se produkter</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner er skjult</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner er vist</string>
+ <string name="revanced_hide_shopping_links_title">Skjul shopping links i video beskrivelse</string>
+ <string name="revanced_hide_shopping_links_summary_on">Shopping links er skjult</string>
+ <string name="revanced_hide_shopping_links_summary_off">Shopping links vises</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Skjul knappen \'Besøg butik\' på kanalsider</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Knap er skjult</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Knap vises</string>
+ <string name="revanced_hide_web_search_results_title">Skjul søgeresultater</string>
+ <string name="revanced_hide_web_search_results_summary_on">Websøgeresultater er skjult</string>
+ <string name="revanced_hide_web_search_results_summary_off">Websøgeresultater vises</string>
+ <string name="revanced_hide_merchandise_banners_title">Skjul merchandise bannere</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Varer bannere er skjult</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Varer bannere er vist</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Skjul reklamer på fuld skærm virker kun med ældre enheder</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Skjul YouTube Premium kampagner</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium kampagner under videoafspiller er skjult</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium kampagner under videoafspiller vises</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Skjul videoannoncer</string>
+ <string name="revanced_hide_video_ads_summary_on">Videoannoncer er skjult</string>
+ <string name="revanced_hide_video_ads_summary_off">Videoannoncer vises</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL kopieret til udklipsholder</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL med tidsstempel kopieret</string>
+ <string name="revanced_copy_video_url_title">Vis kopiér video URL knap</string>
+ <string name="revanced_copy_video_url_summary_on">Knap vises. Tryk for at kopiere video URL. Tryk og hold for at kopiere video URL med tidsstempel</string>
+ <string name="revanced_copy_video_url_summary_off">Knap vises ikke</string>
+ <string name="revanced_copy_video_url_timestamp_title">Vis kopi tidsstempel URL knap</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Knap vises. Tryk for at kopiere video URL med tidsstempel. Tryk og hold for at kopiere video uden tidsstempel</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Knap vises ikke</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Fjern visningsdialog</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialog vil blive fjernet</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialog vil blive vist</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Dette går ikke uden om aldersbegrænsningen. Det accepterer bare det automatisk.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Eksterne downloads</string>
+ <string name="revanced_external_downloader_screen_summary">Indstillinger for brug af en ekstern downloader</string>
+ <string name="revanced_external_downloader_title">Vis ekstern download-knap</string>
+ <string name="revanced_external_downloader_summary_on">Download-knap vist i afspilleren</string>
+ <string name="revanced_external_downloader_summary_off">Download-knappen vises ikke i afspilleren</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Tilsidesæt download-handlingsknap</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Download-knappen åbner din eksterne downloader</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Download-knappen åbner den indfødte in-app downloader</string>
+ <string name="revanced_external_downloader_name_title">Downloader pakkenavn</string>
+ <string name="revanced_external_downloader_name_summary">Pakkenavn på din installerede eksterne downloader-app, såsom NewPipe eller Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s er ikke installeret. Installér den.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Deaktivér præcis søgemåde</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Bevægelse er deaktiveret</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Bevægelse er aktiveret</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Aktivér søgelinjeflytning</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar aflytning er aktiveret</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar aflytning er deaktiveret</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Aktivér lysstyrke-bevægelse</string>
+ <string name="revanced_swipe_brightness_summary_on">Strøg med lysstyrke er aktiveret</string>
+ <string name="revanced_swipe_brightness_summary_off">Stryg for lysstyrke er deaktiveret</string>
+ <string name="revanced_swipe_volume_title">Aktiver lydstyrke-bevægelse</string>
+ <string name="revanced_swipe_volume_summary_on">Stryg på lydstyrke er aktiveret</string>
+ <string name="revanced_swipe_volume_summary_off">Stryg på lydstyrke er deaktiveret</string>
+ <string name="revanced_swipe_press_to_engage_title">Aktivér tryk-til-stryg bevægelse</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Press-to-swipe er aktiveret</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Press-to-swipe er deaktiveret</string>
+ <string name="revanced_swipe_haptic_feedback_title">Aktiver haptisk feedback</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptisk feedback er aktiveret</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptisk feedback er deaktiveret</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Gem og gendan lysstyrke</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Gem og gendan lysstyrke, når du afslutter eller indtaster fuld skærm</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Gem og gendan ikke lysstyrke, når du afslutter eller indtaster fuld skærm</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Aktivér auto-lysstyrke-bevægelse</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Stryg ned til den laveste værdi af lysstyrke-bevægelsen aktiverer auto-lysstyrke</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Stryg ned til den laveste værdi aktiverer ikke auto-lysstyrke</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatisk</string>
+ <string name="revanced_swipe_overlay_timeout_title">Stryg overlay timeout</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Mængden af millisekunder, overlayet er synlig</string>
+ <string name="revanced_swipe_text_overlay_size_title">Stryg overlay tekststørrelse</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Tekststørrelsen for strygeoverlay</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Stryg baggrundssynlighed</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Synligheden af swipe overlay baggrund</string>
+ <string name="revanced_swipe_threshold_title">Stryg størrelse tærskel</string>
+ <string name="revanced_swipe_threshold_summary">Beløbet for tærskelværdi for stryg der skal ske</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Deaktivér auto-billedtekster</string>
+ <string name="revanced_auto_captions_summary_on">Auto billedtekster er deaktiveret</string>
+ <string name="revanced_auto_captions_summary_off">Auto billedtekster er aktiveret</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Handlingsknapper</string>
+ <string name="revanced_hide_buttons_screen_summary">Skjul eller vis knapper under videoer</string>
+ <string name="revanced_hide_like_dislike_button_title">Skjul Like og Dislike</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Lige- og Dislike knapper er skjult</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Lige- og Dislike knapper vises</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Skjul Del</string>
+ <string name="revanced_hide_share_button_summary_on">Deleknappen er skjult</string>
+ <string name="revanced_hide_share_button_summary_off">Deleknappen vises</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Skjul Rapport</string>
+ <string name="revanced_hide_report_button_summary_on">Rapport-knappen er skjult</string>
+ <string name="revanced_hide_report_button_summary_off">Rapport-knappen er vist</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Skjul Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix knap er skjult</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix knap vises</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Skjul Download</string>
+ <string name="revanced_hide_download_button_summary_on">Download-knappen er skjult</string>
+ <string name="revanced_hide_download_button_summary_off">Download-knappen vises</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Skjul Tak</string>
+ <string name="revanced_hide_thanks_button_summary_on">Tak knappen er skjult</string>
+ <string name="revanced_hide_thanks_button_summary_off">Tak knappen er vist</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Klip knappen er skjult</string>
+ <string name="revanced_hide_clip_button_summary_off">Klip knappen er vist</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Skjul Gem til afspilningsliste</string>
+ <string name="revanced_hide_playlist_button_summary_on">Gem i afspilningslisteknappen er skjult</string>
+ <string name="revanced_hide_playlist_button_summary_off">Gem i afspilningslisteknappen vises</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Skjul autoplay knap</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Automatisk spil-knap er skjult</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Automatisk afspilningsknap vises</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Skjul billedtekst knap</string>
+ <string name="revanced_hide_captions_button_summary_on">Undertekster knappen er skjult</string>
+ <string name="revanced_hide_captions_button_summary_off">Underskriftsknappen vises</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Skjul cast-knap</string>
+ <string name="revanced_hide_cast_button_summary_on">Cast-knappen er skjult</string>
+ <string name="revanced_hide_cast_button_summary_off">Cast knap er vist</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Skjul eller skift knapper i navigationsbjælken</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Skjul Hjem</string>
+ <string name="revanced_hide_home_button_summary_on">Hjem-knap er skjult</string>
+ <string name="revanced_hide_home_button_summary_off">Hjem-knap vises</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Skjul Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shorts knap er skjult</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shorts knap vises</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Skjul Opret</string>
+ <string name="revanced_hide_create_button_summary_on">Opret knap er skjult</string>
+ <string name="revanced_hide_create_button_summary_off">Opret knap vises</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Skjul Abonnementer</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Abonnementer knappen er skjult</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Abonnementer knappen vises</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Skift Opret med notifikationer</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Opret knap er skiftet med Notifikationsknappen\n\nBemærk: Aktivering af dette skjuler også med magt videoannoncer</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Opret knappen er ikke skiftet med Notifikationer knappen</string>
+ <string name="revanced_hide_navigation_button_labels_title">Skjul navigationsknappens etiketter</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etiketter er skjult</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etiketter er vist</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Skjul eller vis spiller flyout menupunkter</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Skjul Billedtekster</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Undertekster menu er skjult</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Undertekster menu er vist</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Skjul yderligere indstillinger</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Yderligere indstillingsmenu er skjult</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Yderligere indstillingsmenu er vist</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Skjul Loop video</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Loop video menu er skjult</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Loop video menu er vist</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Skjul omgivende tilstand</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menuen Omgivende tilstand er skjult</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Menuen Omgivende tilstand vises</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Skjul Hjælp & feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Hjælp & feedback-menuen er skjult</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Hjælp & feedback-menuen vises</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Skjul afspilningshastighed</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Afspilningshastighedsmenu er skjult</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Afspilningshastighed menuen vises</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Skjul Mere info</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Mere info menu er skjult</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Mere info menu er vist</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Skjul låseskærm</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Menuen Låseskærm er skjult</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Låseskærmsmenuen vises</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Skjul lydspor</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Menuen for lydspor er skjult</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Menuen Lydspor vises</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Skjul vagt i VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Se i VR-menuen er skjult</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Se i VR-menuen vises</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Skjul forrige & næste video knapper</string>
+ <string name="revanced_hide_player_buttons_summary_on">Knapper er skjult</string>
+ <string name="revanced_hide_player_buttons_summary_off">Knapper vises</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Skjul albumkort</string>
+ <string name="revanced_hide_album_cards_summary_on">Albumkort er skjult</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumkort vises</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Kommentarer</string>
+ <string name="revanced_comments_screen_summary">Skjul eller vis kommentarer sektion komponenter</string>
+ <string name="revanced_hide_comments_by_members_header_title">Skjul \'Kommentarer fra medlemmer\' header</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Kommentarer fra medlemmer\' overskrift er skjult</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Kommentarer fra medlemmer\' overskrift vises</string>
+ <string name="revanced_hide_comments_section_title">Skjul kommentarsektion</string>
+ <string name="revanced_hide_comments_section_summary_on">Kommentarer sektion er skjult</string>
+ <string name="revanced_hide_comments_section_summary_off">Kommentarer sektion er vist</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Skjul knappen \'Opret en kort\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Opret en kort\'-knap er skjult</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">\'Opret en kort\'-knap vises</string>
+ <string name="revanced_hide_comments_preview_comment_title">Skjul forhåndsvisning kommentar</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Forhåndsvisning kommentar er skjult</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Forhåndsvis kommentar er vist</string>
+ <string name="revanced_hide_comments_thanks_button_title">Skjul tasteknap</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Tak knappen er skjult</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Tak knappen er vist</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Skjul tidsstempel og emoji knapper</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Tidsstempel og emoji knapper er skjult</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Tidsstempel og emoji knapper vises</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Skjul crowdfunding boks</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding boks er skjult</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Crowdfunding boks er vist</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Skjul slutskærmkort</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">End screen cards are hidden</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Kort til slutskærm vises</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filtrer bjælke</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Skjul eller vis filterbjælken i feedet, søg og relaterede videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Skjul i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Skjult i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Vist i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Skjul i søgning</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Skjult i søgning</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Vist i søgning</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Skjul i relaterede videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Skjult i relaterede videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Vist i relaterede videoer</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Skjul flydende mikrofon knap</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofon knap skjult</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofon knap vist</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Deaktivér omgivende tilstand i fuld skærm</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Omgivelsestilstand deaktiveret</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Omgivelsestilstand aktiveret</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Skjul informationskort</string>
+ <string name="revanced_hide_info_cards_summary_on">Info kort er skjult</string>
+ <string name="revanced_hide_info_cards_summary_off">Info kort er vist</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Deaktivér animationer med rullenummer</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Rullende numre er ikke animeret</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rullende numre er animeret</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Skjul søgelinje i videoafspiller</string>
+ <string name="revanced_hide_seekbar_summary_on">Videoafspillerens søgelinje er skjult</string>
+ <string name="revanced_hide_seekbar_summary_off">Videoafspillerens søgelinje vises</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Skjul søgelinje i videominiaturer</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Miniaturesøgelinjen er skjult</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Miniaturesøgelinjen vises</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Skjul Shorts i hjemmefeed</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts i hjemmet feed er skjult</string>
+ <string name="revanced_hide_shorts_home_summary_off">Korte i hjemmet feed er vist</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Skjul Shorts i abonnementsfeed</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Korte i abonnementsfeed er skjult</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Korte i abonnementsfeed vises</string>
+ <string name="revanced_hide_shorts_search_title">Skjul Shorts i søgeresultater</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts i søgeresultater er skjult</string>
+ <string name="revanced_hide_shorts_search_summary_off">Korte i søgeresultater vises</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Skjul tilmeldingsknap</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Deltag-knappen er skjult</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Tilmeldingsknappen vises</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Skjul abonnentknap</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Abonnement knappen er skjult</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Knappen Abonnér vises</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Skjul overlay knapper på pause</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Overlay-knapper på pause er skjult</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Overlay-knapper på pause vises</string>
+ <string name="revanced_hide_shorts_shop_button_title">Skjul butiksknap</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Butiksknap er skjult</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Butiksknappen er vist</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Skjul super tak knap</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super tak knappen er skjult</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super tak knappen er vist</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Skjul taggede varer</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Tagged produkter er skjult</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Tagged produkter er vist</string>
+ <string name="revanced_hide_shorts_location_label_title">Skjul placeringsetiket</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Placeringsetiket er skjult</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Placeringsetiket er vist</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Skjul gem lyd til afspilningslisteknappen</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Gem lyd til afspilningslisten er skjult</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Gem lyd til afspilningslisten vises</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Skjul søgeforslag</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Søgeforslag er skjult</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Søgeforslag er vist</string>
+ <string name="revanced_hide_shorts_like_button_title">Skjul lignende knap</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Ligesom knappen er skjult</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Lideknap vises</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Skjul dislike-knap</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Dislike knap er skjult</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Dislike knappen er vist</string>
+ <string name="revanced_hide_shorts_comments_button_title">Skjul kommentar-knap</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Knappen Kommentarer er skjult</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Knappen Kommentarer vises</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Skjul remix-knap</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remix knap er skjult</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remix knap vises</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Skjul delingsknap</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Deleknappen er skjult</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Deleknappen vises</string>
+ <string name="revanced_hide_shorts_info_panel_title">Skjul infopanel</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Infopanelet er skjult</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Info panel er vist</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Skjul kanallinje</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanalbjælken er skjult</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanalbjælken vises</string>
+ <string name="revanced_hide_shorts_video_title_title">Skjul videotitel</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titel er skjult</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titlen er vist</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Skjul lyd metadata etiket</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metadata etiket er skjult</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metadata etiket er vist</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Skjul fuld video link etiket</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Videolink etiket er skjult</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Videolink etiket er vist</string>
+ <string name="revanced_hide_shorts_sound_button_title">Skjul lydknap</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Lydknappen er skjult</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Lydknappen er vist</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Skjul navigationslinje</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigationsbjælken er skjult</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigationsbjælken vises</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Deaktivér foreslået videoslutskærm</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Foreslåede videoer vil blive deaktiveret</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Foreslåede videoer vil blive vist</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Skjul tidsstempel på video</string>
+ <string name="revanced_hide_timestamp_summary_on">Tidsstempel er skjult</string>
+ <string name="revanced_hide_timestamp_summary_off">Tidsstempel er vist</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Skjul pop op- paneler</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Spiller popup paneler er skjult</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Spiller popup paneler vises</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Spiller overlay gennemsigtighed</string>
+ <string name="revanced_player_overlay_opacity_summary">Gennemsigtighedsværdi mellem 0-100, hvor 0 er gennemsigtig</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Spiller overlay gennemsigtighed skal være mellem 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislikerer midlertidigt ikke tilgængelig (API-timeout ud)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Dislikationer er ikke tilgængelige (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Ikke tilgængelig (klient API grænse nået)</string>
+ <string name="revanced_ryd_failure_generic">Dislikationer ikke tilgængelige (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Genindlæs video for at stemme ved hjælp af Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikationer vises</string>
+ <string name="revanced_ryd_enable_summary_off">Dislikationer vises ikke</string>
+ <string name="revanced_ryd_shorts_title">Vis ikke på Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikationer vist på Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikationer vist på Shorts\n\nBegrænsning: Dislikes vises muligvis ikke i inkognito-tilstand</string>
+ <string name="revanced_ryd_shorts_summary_off">Synes ikke skjult på Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Synes ikke som procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikationer vist som procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikationer vist som nummer</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt lignende knap</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Lideknap stylet for mindste bredde</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Ligesom knap stylet for bedste udseende</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Vis en toast hvis API ikke er tilgængelig</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast vises, hvis Return YouTube Dislike ikke er tilgængelig</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast vises ikke, hvis Return YouTube Dislike ikke er tilgængelig</string>
+ <string name="revanced_ryd_about">Om</string>
+ <string name="revanced_ryd_attribution_summary">Data leveres af Return YouTube Dislike API. Tryk her for at få mere at vide</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API statistikker for denne enhed</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API svartid, gennemsnit</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API svartid, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API responstid, maksimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API svartid, sidste video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikerer midlertidigt ikke tilgængelig - Client API sats grænse i kraft</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API henter stemmer, antal opkald</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Ingen netværksopkald foretaget</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d netværksopkald foretaget</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API henter stemmer, antal timeouts</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Ingen netværksopkald udløb</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d netværksopkald udløb</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API klient sats grænser</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Ingen klientrategrænser stødt på</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Klient sats grænse stødt %d gange</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisekunder</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Aktiver bred søgelinje</string>
+ <string name="revanced_wide_searchbar_summary_on">Bred søgelinje er aktiveret</string>
+ <string name="revanced_wide_searchbar_summary_off">Bred søgelinje er deaktiveret</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Gendan gamle miniaturer på søgelinjen</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Seekbar miniaturer vises over søgelinjen</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Seekbar miniaturer vises i fuld skærm</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Aktiver SponsorBloker</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock er et crowd-sourcet system til at springe irriterende dele af YouTube-videoer over</string>
+ <string name="revanced_sb_appearance_category">Udseende</string>
+ <string name="revanced_sb_enable_voting">Vis afstemningsknap</string>
+ <string name="revanced_sb_enable_voting_sum_on">Segmentafstemningsknap vises</string>
+ <string name="revanced_sb_enable_voting_sum_off">Segmentafstemningsknappen vises ikke</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Brug kompakt spring knap</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Skip knap stylet for mindste bredde</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Skip knap stylet for bedste udseende</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Skjul automatisk spring over knappen</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Skip knap skjuler efter et par sekunder</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Skip knap vises for hele segmentet</string>
+ <string name="revanced_sb_general_skiptoast">Vis en toast ved automatisk at springe</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast vises, når et segment automatisk springes over. Tryk her for at se et eksempel</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast er ikke vist. Tryk her for at se et eksempel</string>
+ <string name="revanced_sb_general_time_without">Vis videolængde uden segmenter</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videolængde minus alle segmenter, vist i parentes ved siden af den fulde videolængde</string>
+ <string name="revanced_sb_general_time_without_sum_off">Fuld videolængde vist</string>
+ <string name="revanced_sb_create_segment_category">Opretter nye segmenter</string>
+ <string name="revanced_sb_enable_create_segment">Vis opret ny linjeknap</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Opret ny segmentknap vises</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Opret ny segmentknap vises ikke</string>
+ <string name="revanced_sb_general_adjusting">Juster nyt segment trin</string>
+ <string name="revanced_sb_general_adjusting_sum">Antal millisekunder knapperne til justering af tid flyttes når der oprettes nye segmenter</string>
+ <string name="revanced_sb_general_adjusting_invalid">Værdien skal være et positivt tal</string>
+ <string name="revanced_sb_guidelines_preference_title">Se retningslinjer</string>
+ <string name="revanced_sb_guidelines_preference_sum">Retningslinjer indeholder regler og tips til oprettelse af nye segmenter</string>
+ <string name="revanced_sb_guidelines_popup_title">Følg retningslinjerne</string>
+ <string name="revanced_sb_guidelines_popup_content">Læs SponsorBlock retningslinjer før du opretter nye segmenter</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Allerede læst</string>
+ <string name="revanced_sb_guidelines_popup_open">Vis mig</string>
+ <string name="revanced_sb_general">Generelt</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Vis en toast hvis API ikke er tilgængelig</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast vises, hvis SponsorBlock ikke er tilgængelig</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast vises ikke, hvis SponsorBlock ikke er tilgængelig</string>
+ <string name="revanced_sb_general_skipcount">Aktiver overspring tæller sporing</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Lader SponsorBlock pointtavlen vide, hvor meget tid der er gemt. En besked sendes til pointtavlen, hver gang et segment springes over</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Overspring tælling er ikke aktiveret</string>
+ <string name="revanced_sb_general_min_duration">Minimum linjestykketid</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmenter kortere end denne værdi (i sekunder) vil ikke blive vist eller sprunget over</string>
+ <string name="revanced_sb_general_uuid">Dit private bruger-id</string>
+ <string name="revanced_sb_general_uuid_sum">Dette bør holdes privat. Dette er ligesom en adgangskode og bør ikke deles med nogen. Hvis nogen har dette, kan de udgive dig</string>
+ <string name="revanced_sb_general_uuid_invalid">Privat bruger-id skal være mindst 30 tegn langt</string>
+ <string name="revanced_sb_general_api_url">Skift API-URL</string>
+ <string name="revanced_sb_general_api_url_sum">Adressen SponsorBlock bruger til at foretage opkald til serveren</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">API URL er ugyldig</string>
+ <string name="revanced_sb_api_url_changed">API URL ændret</string>
+ <string name="revanced_sb_settings_ie">Importér/eksport indstillinger</string>
+ <string name="revanced_sb_settings_copy">Kopiér</string>
+ <string name="revanced_sb_settings_ie_sum">Din SponsorBlock JSON konfiguration, der kan importeres/eksporteres til ReVanced og andre SponsorBlock platforme</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Din SponsorBlock JSON konfiguration, der kan importeres/eksporteres til ReVanced og andre SponsorBlock platforme. Dette omfatter din private bruger id. Sørg for at dele dette klogt</string>
+ <string name="revanced_sb_settings_import_successful">Indstillinger importeret med succes</string>
+ <string name="revanced_sb_settings_import_failed">Mislykkedes at importere: %s</string>
+ <string name="revanced_sb_settings_export_failed">Mislykkedes at eksportere: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Dine indstillinger indeholder et privat SponsorBloker bruger-id.\n\nDit bruger-id er som en adgangskode, og det bør aldrig deles.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Vis ikke igen</string>
+ <string name="revanced_sb_diff_segments">Ændr segmentadfærd</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Betalt kampagne, betalte henvisninger og direkte reklamer. Ikke for selvpromoverende eller gratis råb til årsager/skabere/websteder/produkter, de kan lide</string>
+ <string name="revanced_sb_segments_selfpromo">Ubetalt/Self Promotion</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Svarende til \'Sponsor\' bortset fra ubetalt eller self promotion. Inkluderer sektioner om merchandise, donationer, eller oplysninger om, hvem de har samarbejdet med</string>
+ <string name="revanced_sb_segments_interaction">Interaktion Påmindelse (Abonner)</string>
+ <string name="revanced_sb_segments_interaction_sum">En kort påmindelse om at lide, abonnere eller følge dem midt i indholdet. Hvis den er lang eller om noget specifik, bør den i stedet være under selvforfremmelse</string>
+ <string name="revanced_sb_segments_highlight">Fremhæv</string>
+ <string name="revanced_sb_segments_highlight_sum">Den del af videoen, som de fleste mennesker er på udkig efter</string>
+ <string name="revanced_sb_segments_intro">Intermission/Intro Animation</string>
+ <string name="revanced_sb_segments_intro_sum">Et interval uden reelt indhold. Kunne være en pause, statisk ramme eller gentagelse af animation. Omfatter ikke overgange indeholdende information</string>
+ <string name="revanced_sb_segments_outro">Slutkort/Kredit</string>
+ <string name="revanced_sb_segments_outro_sum">Medvirkende eller når YouTube-endcards vises. Ikke for konklusioner med information</string>
+ <string name="revanced_sb_segments_preview">Forhåndsvisning/Genoptag/Krog</string>
+ <string name="revanced_sb_segments_preview_sum">Indsamling af klip, der viser, hvad der kommer op, eller hvad der skete i videoen eller i andre videoer af en serie, hvor alle oplysninger gentages andetsteds</string>
+ <string name="revanced_sb_segments_filler">Filler Tangent/Jokes</string>
+ <string name="revanced_sb_segments_filler_sum">Tangential scener tilføjet kun for fyldstof eller humor, der ikke er forpligtet til at forstå hovedindholdet af videoen. Omfatter ikke segmenter, der giver kontekst- eller baggrundsoplysninger</string>
+ <string name="revanced_sb_segments_nomusic">Musik: Ikke-Musik Sektion</string>
+ <string name="revanced_sb_segments_nomusic_sum">Kun til brug i musikvideoer. Sektioner af musikvideoer uden musik, der ikke allerede er dækket af en anden kategori</string>
+ <string name="revanced_sb_skip_button_compact">Overspring</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Fremhæv</string>
+ <string name="revanced_sb_skip_button_sponsor">Spring sponsor over</string>
+ <string name="revanced_sb_skip_button_selfpromo">Spring over promo</string>
+ <string name="revanced_sb_skip_button_interaction">Spring interact over</string>
+ <string name="revanced_sb_skip_button_highlight">Spring over for fremhævning</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Spring intro over</string>
+ <string name="revanced_sb_skip_button_intro_middle">Spring intermission over</string>
+ <string name="revanced_sb_skip_button_intro_end">Spring intermission over</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Spring forhåndsvisning over</string>
+ <string name="revanced_sb_skip_button_preview_middle">Spring forhåndsvisning over</string>
+ <string name="revanced_sb_skip_button_preview_end">Spring resumé over</string>
+ <string name="revanced_sb_skip_button_filler">Spring filler over</string>
+ <string name="revanced_sb_skip_button_nomusic">Spring over ikke-musik</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Overspring segment</string>
+ <string name="revanced_sb_skipped_sponsor">sponsor sprunget over</string>
+ <string name="revanced_sb_skipped_selfpromo">Selv-forfremmelse sprunget over</string>
+ <string name="revanced_sb_skipped_interaction">Sprunget over irriterende påmindelse</string>
+ <string name="revanced_sb_skipped_highlight">Sprunget over for at fremhæve</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro sprunget over</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermission sprunget over</string>
+ <string name="revanced_sb_skipped_intro_end">Intermission sprunget over</string>
+ <string name="revanced_sb_skipped_outro">Sprunget over outro</string>
+ <string name="revanced_sb_skipped_preview_beginning">Forklaring sprunget over</string>
+ <string name="revanced_sb_skipped_preview_middle">Forklaring sprunget over</string>
+ <string name="revanced_sb_skipped_preview_end">Oversprunget resumé</string>
+ <string name="revanced_sb_skipped_filler">Fyldstof sprunget over</string>
+ <string name="revanced_sb_skipped_nomusic">Oversprunget en ikke-musiksektion over</string>
+ <string name="revanced_sb_skipped_unsubmitted">Uindsendt segment sprunget over</string>
+ <string name="revanced_sb_skipped_multiple_segments">Oversprunget over flere segmenter</string>
+ <string name="revanced_sb_skip_automatically">Spring automatisk over</string>
+ <string name="revanced_sb_skip_automatically_once">Spring automatisk over én gang</string>
+ <string name="revanced_sb_skip_showbutton">Vis en overspring knap</string>
+ <string name="revanced_sb_skip_seekbaronly">Vis i søgelinjen</string>
+ <string name="revanced_sb_skip_ignore">Deaktivér</string>
+ <string name="revanced_sb_submit_failed_invalid">Kan ikke indsende segment: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock er midlertidigt nede</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Kan ikke indsende segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Kan ikke indsende segment.\nRate Limited (for mange fra samme bruger eller IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Kan ikke indsende segmentet: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Kan ikke indsende segmentet.\nfindes allerede</string>
+ <string name="revanced_sb_submit_succeeded">Segment indsendt med succes</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBloker midlertidigt ikke tilgængelig (API-tid ud)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBloker midlertidigt ikke tilgængelig (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBloker midlertidigt ikke tilgængelig</string>
+ <string name="revanced_sb_vote_failed_timeout">Kan ikke stemme på segment (API-timede ud)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Kan ikke stemme på segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Ikke i stand til at stemme på segmentet: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Downvote</string>
+ <string name="revanced_sb_vote_category">Skift kategori</string>
+ <string name="revanced_sb_vote_no_segments">Der er ingen segmenter at stemme for</string>
+ <string name="revanced_sb_new_segment_choose_category">Vælg segmentkategori</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategori er deaktiveret i indstillinger. Aktivér kategori for at indsende.</string>
+ <string name="revanced_sb_new_segment_title">Nyt SponsorBlock segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Sæt %1$02d:%2$02d:%3$03d som start eller afslutning af et nyt segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">start</string>
+ <string name="revanced_sb_new_segment_mark_end">slut</string>
+ <string name="revanced_sb_new_segment_now">nu</string>
+ <string name="revanced_sb_new_segment_time_start">Tidspunkt for segmentet begynder på</string>
+ <string name="revanced_sb_new_segment_time_end">Tidspunkt for segmentet slutter på</string>
+ <string name="revanced_sb_new_segment_confirm_title">Er tiderne korrekte?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmentet er fra\n\n%1$s\ntil\n%2$s\n\n(%3$s)\n\nKlar til at indsende?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Start skal være før slutningen</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Markér to steder på tidsbjælken først</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Forhåndsvisning af segmentet, og sikre, at det springer glat</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Rediger timing af segment manuelt</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Vil du redigere timingen for start eller afslutning af segmentet?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Ugyldig tid givet</string>
+ <string name="revanced_sb_stats">Statistik</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistik midlertidigt ikke tilgængelig (API er ned)</string>
+ <string name="revanced_sb_stats_loading">Indlæser...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBloker er deaktiveret</string>
+ <string name="revanced_sb_stats_username">Dit brugernavn: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Tryk her for at ændre dit brugernavn</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Kan ikke ændre brugernavn: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Brugernavn ændret</string>
+ <string name="revanced_sb_stats_reputation">Dit omdømme er <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Du har oprettet <b>%s</b> segmenter</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlokér leaderboard</string>
+ <string name="revanced_sb_stats_saved">Du har gemt folk fra <b>%s</b> segmenter</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Tryk her for at se de globale statistikker og topbidragsydere</string>
+ <string name="revanced_sb_stats_saved_sum">Det er <b>%s</b> af deres liv.<br>Tryk her for at se leaderboardet</string>
+ <string name="revanced_sb_stats_self_saved">Du har spundet <b>%s</b> segmenter</string>
+ <string name="revanced_sb_stats_self_saved_sum">Det Er <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Nulstil oversprungne segmenter tæller?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s timer %2$s minutter</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutter %2$s sekunder</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekunder</string>
+ <string name="revanced_sb_color_dot_label">Farve:</string>
+ <string name="revanced_sb_color_changed">Farve ændret</string>
+ <string name="revanced_sb_color_reset">Nulstil farve</string>
+ <string name="revanced_sb_color_invalid">Ugyldig farvekode</string>
+ <string name="revanced_sb_reset_color">Nulstil farve</string>
+ <string name="revanced_sb_reset">Nulstil</string>
+ <string name="revanced_sb_about">Om</string>
+ <string name="revanced_sb_about_api_sum">Data leveres af SponsorBlock API. Tryk her for at få flere oplysninger og se downloads til andre platforme</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof app version</string>
+ <string name="revanced_spoof_app_version_summary_on">Version spoofed</string>
+ <string name="revanced_spoof_app_version_summary_off">Version ikke spoofed</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">App version vil blive spoofed til en ældre version af YouTube.\n\nDette vil ændre udseendet og funktionerne i appen, men der kan forekomme ukendte bivirkninger.\n\nHvis senere slået fra, anbefales det at rydde app-data for at forhindre UI-fejl.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app version mål</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Gendan RYD på Shorts inkognitotilstand</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Gendan bred video hastighed & kvalitet menu</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Genopret biblioteks fane</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Gendan gammel spilleliste hylde</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Gendan gammelt UI-layout</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Indstil startside</string>
+ <string name="revanced_start_page_entry_0">Standard</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Hjem</string>
+ <string name="revanced_start_page_entry_2">Søg</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonnementer</string>
+ <string name="revanced_start_page_entry_4">Udforsk</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Dig fane</string>
+ <string name="revanced_start_page_entry_7">Syntes om videoer</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historik</string>
+ <string name="revanced_start_page_entry_9">Populære</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Deaktivér genoptagelse af Shorts spiller</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Kortspilleren vil ikke genoptage ved app-opstart</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Kortspilleren vil genoptage ved app-opstart</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Aktivér tabletlayout</string>
+ <string name="revanced_tablet_layout_summary_on">Tablet layout er aktiveret</string>
+ <string name="revanced_tablet_layout_summary_off">Tablet layout er deaktiveret</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Fællesskabsindlæg vises ikke på tabletlayouts</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Miniplayer</string>
+ <string name="revanced_miniplayer_screen_summary">Ændre stilen for den i app minimeret afspiller</string>
+ <string name="revanced_miniplayer_type_title">Type af miniplayer</string>
+ <string name="revanced_miniplayer_type_entry_1">Oprindelig</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderne 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderne 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderne 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Skjul udvid og luk knapper</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Knapper er skjult\n(stryg miniplayer for at udvide eller lukke)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Udvid og luk knapper vises</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Skjul undertekster</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Undertekster er skjult</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Undertekster er vist</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Skjul overspring fremad og tilbage knapper</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Spring frem og tilbage er skjult</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Spring frem og tilbage vises</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Gennemsigtighedsværdi mellem 0-100, hvor 0 er gennemsigtig</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Miniplayer overlay gennemsigtighed skal være mellem 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Aktiver gradient indlæsning af skærmen</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Indlæser skærmen vil have en gradient baggrund</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Indlæser skærmen vil have en solid baggrund</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Aktivér brugerdefineret søgelinjefarve</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Brugerdefineret søgelinje farve vises</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Original søgelinje farve vises</string>
+ <string name="revanced_seekbar_custom_color_value_title">Brugerdefineret søgelinje farve</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Farven på den søgende bar</string>
+ <string name="revanced_seekbar_custom_color_invalid">Ugyldig søgelinje farveværdi. Brug standardværdi.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Hjem fane</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Abonnement fane</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Dig fane</string>
+ <string name="revanced_alt_thumbnail_player_title">Afspiller afspilningslister, anbefalinger</string>
+ <string name="revanced_alt_thumbnail_search_title">Søgeresultater</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Originale miniaturer</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & stadig fanger</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Fangster stadig</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow giver crowd-sourcede miniaturer til YouTube-videoer. Disse miniaturer er ofte mere relevante end dem, YouTube\n\nHvis aktiveret, video URL\'er vil blive sendt til API-serveren og ingen andre data bliver sendt. Hvis en video ikke har miniaturer til DeArrow, så er de originale eller stadig optagelser vist\n\nTryk her for at få mere at vide om DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Vis en toast hvis API ikke er tilgængelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast vises hvis DeArrow ikke er tilgængelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast er ikke vist hvis DeArrow ikke er tilgængelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Webadressen på DeArrow thumbnail cache endpoint</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Stadig video indfanger</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Stadig optagelser er taget fra begyndelsen / midten / slutningen af hver video. Disse billeder er indbygget i YouTube og ingen ekstern API bruges</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Brug stadig hurtige optagelser</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Brug stadig medium kvalitet. Miniaturer vil indlæse hurtigere, men live-streams, ufrigivet, eller meget gamle videoer kan vise tomme miniaturer</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Brug af høj kvalitet stadig fanger</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Video tid til at tage stadig fanger fra</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Begyndelse af video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Midten af video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Slut på video</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow midlertidigt ikke tilgængelig (statuskode: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow midlertidigt ikke tilgængelig</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Vis annonceringer</string>
+ <string name="revanced_announcements_summary_on">Meddelelser vises ved opstart</string>
+ <string name="revanced_announcements_summary_off">Meddelelser vises ikke ved opstart</string>
+ <string name="revanced_announcements_enabled_summary">Vis meddelelser ved opstart</string>
+ <string name="revanced_announcements_connection_failed">Kunne ikke forbinde til udbyder af annonceringer</string>
+ <string name="revanced_announcements_dialog_dismiss">Luk</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Aktivér auto-gentag</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-gentag er aktiveret</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-gentag er deaktiveret</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Spoof enhedens dimensioner</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Enhedsmål spoofed\n\nHøjere video kvaliteter kan låses op, men du kan opleve videoafspilning stuttering, værre batterilevetid og ukendte bivirkninger</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Enheds dimensioner ikke forfalsket\n\nAktivering af dette kan låse op for højere videokvaliteter</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Aktivering af dette kan forårsage videoafspilning stuttering, værre batterilevetid og ukendte bivirkninger.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Indstillinger</string>
+ <string name="microg_settings_summary">Indstillinger for GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Bypass URL omdirigeringer</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL omdirigeringer er omgået</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL omdirigeringer er ikke omgået</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Åbn links i browser</string>
+ <string name="revanced_external_browser_summary_on">Åbning af links eksternt</string>
+ <string name="revanced_external_browser_summary_off">Åbner links i appen</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Baggrunds afspilning</string>
+ <string name="revanced_background_playback_summary">Denne indstilling kan findes i Indstillinger -> Baggrund</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Fjern sporingsforespørgselsparameter</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Sporingsparameteren er fjernet fra links</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Sporingsforespørgselsparameteren er ikke fjernet fra links</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Deaktivér zoom haptics</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptics er deaktiveret</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics er aktiveret</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatisk kvalitet</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Husk ændringer i videokvalitet</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitetsændringer gælder for alle videoer</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Kvalitetsændringer gælder kun for den aktuelle video</string>
+ <string name="revanced_video_quality_default_wifi_title">Standard videokvalitet på Wi-Fi-netværk</string>
+ <string name="revanced_video_quality_default_mobile_title">Standard videokvalitet på mobilnetværk</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Ændrede standard %1$s kvalitet til: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Vis hastigheds dialogknap</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Knap vises</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Knap vises ikke</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Tilpasset afspilningshastighed</string>
+ <string name="revanced_custom_playback_speeds_summary">Tilføj eller skift de tilgængelige afspilningshastigheder</string>
+ <string name="revanced_custom_playback_speeds_invalid">Brugerdefinerede hastigheder skal være mindre end %s. Bruger standardværdier.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Ugyldig brugerdefineret afspilningshastighed. Brug af standardværdier.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Husk ændringer i afspilningshastighed</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Ændring af afspilningshastighed gælder for alle videoer</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Ændringerne i afspilningshastighed gælder kun for den aktuelle video</string>
+ <string name="revanced_playback_speed_default_title">Standard afspilningshastighed</string>
+ <string name="revanced_remember_playback_speed_toast">Ændrede standardhastighed til: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Gendan gamle video kvalitet menu</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Gammel videokvalitetsmenu vises</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Gammel videokvalitetsmenu vises ikke</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Aktivér dias for at søge</string>
+ <string name="revanced_slide_to_seek_summary_on">Dias for at søge er aktiveret</string>
+ <string name="revanced_slide_to_seek_summary_off">Dias til søgning er ikke aktiveret</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof klient</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof klienten for at forhindre afspilningsproblemer</string>
+ <string name="revanced_spoof_client_title">Spoof klient</string>
+ <string name="revanced_spoof_client_summary_on">Kunden er spoofed</string>
+ <string name="revanced_spoof_client_summary_off">Klienten er ikke forfalsket\n\nVideoafspilning fungerer muligvis ikke</string>
+ <string name="revanced_spoof_client_user_dialog_message">At slå denne indstilling fra kan forårsage problemer med videoafspilning.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof klient til iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Klienten er i øjeblikket spoofed til iOS\n\nBivirkninger omfatter:\n• Ingen HDR-video\n• Se historie fungerer muligvis ikke\n• Højere video kvaliteter mangler muligvis\n• Live streams kan ikke afspilles som lyd kun\n• Live streams ikke tilgængelig på Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Klienten er i øjeblikket spoofed til Android VR\n\nBivirkninger omfatter:\n• Ingen HDR-video\n• Kids videoer ikke afspilning\n• Pause videoer kan tilfældigt genoptage\n• Lav kvalitet Shorts søgelinje miniaturer\n• Download handling knap er altid skjult\n• End screen cards are always hidden</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Spoof klient miniaturer ikke tilgængelige (API timemed out)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Spoof klient miniaturer midlertidigt ikke tilgængelige: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Spoof app signatur</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Spoof app-signaturen for at forhindre afspilningsproblemer</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Spoof app signatur</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">App signatur spoofed\n\nBivirkninger omfatter:\n• Forbedret bitrate er ikke tilgængelig\n• Videoer kan ikke downloades\n• Ingen søgelinje miniaturer til betalte videoer</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">App signatur ikke forfalsket\n\nVideo afspilning fungerer muligvis ikke</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">At slå denne indstilling fra vil forårsage problemer med videoafspilning.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof app signatur i feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">App signatur spoofed\n\nBivirkninger omfatter:\n• Feed videoer mangler undertekster\n• Automatisk afspillede feed videoer vil blive vist i din ur historie</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">App signatur ikke spoofed for feed videoer\n\nFeed videoer vil spille i mindre end 1 minut, før der opstår afspilningsproblemer</string>
+ <string name="revanced_spoof_storyboard_title">Spoof storyboard</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard spoofed</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard ikke forfalsket\n\nBivirkninger omfatter:\n• Ingen omgivende tilstand\n• Seekbar miniaturer er skjult</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard midlertidigt ikke tilgængelig (API timemed out)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Spoof storyboard midlertidigt ikke tilgængelig: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Aktivér automatisk HDR- lysstyrke</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Auto-HDR-lysstyrke er aktiveret</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Auto-HDR-lysstyrke er deaktiveret</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blokér lydannoncer</string>
+ <string name="revanced_block_audio_ads_summary_on">Lydannoncer er blokeret</string>
+ <string name="revanced_block_audio_ads_summary_off">Lydannoncer er ublokeret</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s er ikke tilgængelig. Annoncer kan vises. Prøv at skifte til en anden annonceblok tjeneste i indstillinger.</string>
+ <string name="revanced_embedded_ads_service_failed">%s server returnerede en fejl. Annoncer kan vises. Prøv at skifte til en anden annonceblok tjeneste i indstillinger.</string>
+ <string name="revanced_block_embedded_ads_title">Bloker indlejrede videoannoncer</string>
+ <string name="revanced_block_embedded_ads_entry_1">Deaktiveret</string>
+ <string name="revanced_block_embedded_ads_entry_2">Lysende proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blokér videoannoncer</string>
+ <string name="revanced_block_video_ads_summary_on">Videoreklamer er blokeret</string>
+ <string name="revanced_block_video_ads_summary_off">Videoannoncer er ublokerede</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">besked slettet</string>
+ <string name="revanced_show_deleted_messages_title">Vis slettede beskeder</string>
+ <string name="revanced_show_deleted_messages_entry_1">Vis ikke slettede beskeder</string>
+ <string name="revanced_show_deleted_messages_entry_2">Skjul slettede beskeder bag en spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Vis slettede beskeder som krydset tekst</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Auto-hævde Kanalpunkter</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanalpunkter afhentes automatisk</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanalpunkter afhentes ikke automatisk</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Aktiver Twitch-fejlfindingstilstand</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch-fejlfindingstilstand er aktiveret (ikke anbefalet)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch-fejlfindingstilstand er deaktiveret</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Vigtigste Indstillinger</string>
+ <string name="revanced_ads_screen_title">Annoncer</string>
+ <string name="revanced_ads_screen_summary">Reklame blokeringsindstillinger</string>
+ <string name="revanced_chat_screen_title">Chat</string>
+ <string name="revanced_chat_screen_summary">Chat indstillinger</string>
+ <string name="revanced_misc_screen_title">Diverse</string>
+ <string name="revanced_misc_screen_summary">Diverse indstillinger</string>
+ <string name="revanced_general_category_title">Generelle indstillinger</string>
+ <string name="revanced_other_category_title">Andre indstillinger</string>
+ <string name="revanced_client_ads_category_title">Annoncer på klientsiden</string>
+ <string name="revanced_surestream_ads_category_title">Server-side surestream annoncer</string>
+ <string name="revanced_twitch_debug_title">Debug logning</string>
+ <string name="revanced_twitch_debug_summary_on">Debug logs er aktiveret</string>
+ <string name="revanced_twitch_debug_summary_off">Debug logs er deaktiveret</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-de-rDE/strings.xml b/src/main/resources/addresources/values-de-rDE/strings.xml
new file mode 100644
index 0000000000..2c6f8b77da
--- /dev/null
+++ b/src/main/resources/addresources/values-de-rDE/strings.xml
@@ -0,0 +1,1197 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Möchten Sie fortfahren?</string>
+ <string name="revanced_settings_reset">Zurücksetzen</string>
+ <string name="revanced_settings_restart_title">Aktualisieren und neu starten</string>
+ <string name="revanced_settings_restart">Neustarten</string>
+ <string name="revanced_settings_import">Importieren</string>
+ <string name="revanced_settings_import_copy">Kopieren</string>
+ <string name="revanced_settings_import_reset">ReVanced Einstellungen auf Standard zurückgesetzt</string>
+ <string name="revanced_settings_import_success">%d Einstellungen importiert</string>
+ <string name="revanced_settings_import_failure_parse">Import fehlgeschlagen: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore ist nicht installiert. Installieren Sie es.</string>
+ <string name="gms_core_dialog_title">Aktion notwendig</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore hat keine Berechtigung im Hintergrund zu laufen.\n\nFolgen Sie dem Leitfaden \"Don\'t kill my app\" für Ihr Telefon und wenden Sie die Anweisungen auf Ihre MicroG-Installation an.\n\nDies ist erforderlich, damit die App funktioniert.</string>
+ <string name="gms_core_dialog_open_website_text">Webseite öffnen</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore Batterieoptimierungen müssen deaktiviert werden, um Probleme zu vermeiden.\n\nTippen Sie auf den Weiter-Button und deaktivieren Sie die Batterieoptimierung.</string>
+ <string name="gms_core_dialog_continue_text">Weiter</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Sie verwenden ReVanced Patches Version <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Notiz</string>
+ <string name="revanced_settings_about_links_dev_body">Diese Version ist eine Vorversion und Sie können unerwartete Probleme haben</string>
+ <string name="revanced_settings_about_links_header">Offizielle Links</string>
+ <string name="revanced_pref_import_export_title">Importieren / Exportieren</string>
+ <string name="revanced_pref_import_export_summary">ReVanced Einstellungen importieren / exportieren</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Über</string>
+ <string name="revanced_settings_screen_01_ads_title">Werbung</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternative Thumbnails</string>
+ <string name="revanced_settings_screen_03_feed_title">Feed</string>
+ <string name="revanced_settings_screen_04_player_title">Player</string>
+ <string name="revanced_settings_screen_05_general_title">Generelles Layout</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Suchleiste</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Wischgesten</string>
+ <string name="revanced_settings_screen_11_misc_title">Sonstiges</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Fehlerbehebung</string>
+ <string name="revanced_debug_screen_summary">Debug-Optionen aktivieren oder deaktivieren</string>
+ <string name="revanced_debug_title">Debug-Logging</string>
+ <string name="revanced_debug_summary_on">Debug-Logs sind aktiviert</string>
+ <string name="revanced_debug_summary_off">Debug-Logs sind deaktiviert</string>
+ <string name="revanced_debug_protobuffer_title">Logprotokollpuffer</string>
+ <string name="revanced_debug_protobuffer_summary_on">Debug-Logs beinhalten Proto-Puffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Debug-Logs enthalten keinen Proto-Puffer</string>
+ <string name="revanced_debug_stacktrace_title">Stack-Traces loggen</string>
+ <string name="revanced_debug_stacktrace_summary_on">Debug-Logs enthalten Stack-Traces</string>
+ <string name="revanced_debug_stacktrace_summary_off">Debug-Logs enthalten keine Stack-Traces</string>
+ <string name="revanced_debug_toast_on_error_title">Toast bei ReVanced Fehler anzeigen</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast wird angezeigt, wenn ein Fehler auftritt</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast wird nicht angezeigt, wenn ein Fehler auftritt</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Das Deaktivieren von Fehlertoasts verbirgt alle ReVanced Fehlerbenachrichtigungen.\n\nSie werden nicht über unerwartete Ereignisse benachrichtigt.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Deaktiviere wie / abonniere Button leuchten</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">\"Gefällt mir\" und \"Abonnieren\"-Button wird nicht leuchten wenn erwähnt</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">\"Gefällt mir\" und \"Abonnieren\"-Button wenn erwähnt</string>
+ <string name="revanced_hide_gray_separator_title">Verstecke graue Trennzeichen</string>
+ <string name="revanced_hide_gray_separator_summary_on">Graue Trennzeichen sind ausgeblendet</string>
+ <string name="revanced_hide_gray_separator_summary_off">Graue Trennzeichen werden angezeigt</string>
+ <string name="revanced_hide_channel_watermark_title">Wasserzeichen ausblenden</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Wasserzeichen ist ausgeblendet</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Wasserzeichen wird angezeigt</string>
+ <string name="revanced_hide_horizontal_shelves_title">Horizontale Regale ausblenden</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Regale sind versteckt wie:\n• Nachrichten abbrechen\n• Weiter\n• Weitere Kanäle\nerkunden • Einkaufen\n• Wiedersehen</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Regale werden angezeigt</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">\"Beitreten\"-Button ausblenden</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Button ist ausgeblendet</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Button wird angezeigt</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">\'Für dich\' Regal auf der Kanalseite ausblenden</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Regal ist versteckt</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Regal wird angezeigt</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\"Benachrichtigen\"-Button ausblenden</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Button ist ausgeblendet</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Button wird angezeigt</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Empfehlungen \'Personen auch beobachtet\' ausblenden</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Empfehlungen sind versteckt</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Empfehlungen werden angezeigt</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'Mehr anzeigen\'-Button ausblenden</string>
+ <string name="revanced_hide_show_more_button_summary_on">Button ist ausgeblendet</string>
+ <string name="revanced_hide_show_more_button_summary_off">Button wird angezeigt</string>
+ <string name="revanced_hide_timed_reactions_title">Zeitliche Reaktionen ausblenden</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Zeitgesteuerte Reaktionen sind versteckt</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Zeitgesteuerte Reaktionen werden angezeigt</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Suchergebnis-Regalkopf ausblenden</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Regalkopf ist ausgeblendet</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Regalkopf wird angezeigt</string>
+ <string name="revanced_hide_channel_guidelines_title">Kanalrichtlinien ausblenden</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanal-Richtlinien sind versteckt</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanalrichtlinien werden angezeigt</string>
+ <string name="revanced_hide_expandable_chip_title">Erweiterbarer Chip unter Videos ausblenden</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Erweiterbare Chips sind versteckt</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Erweiterbare Chips werden angezeigt</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Videoqualitätsmenüfußzeile ausblenden</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Video-Qualität Menü-Fußzeile ist ausgeblendet</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Video-Qualität Menü-Fußzeile wird angezeigt</string>
+ <string name="revanced_hide_community_posts_title">Community-Beiträge ausblenden</string>
+ <string name="revanced_hide_community_posts_summary_on">Community-Beiträge sind versteckt</string>
+ <string name="revanced_hide_community_posts_summary_off">Gemeinschaftsbeiträge werden angezeigt</string>
+ <string name="revanced_hide_compact_banner_title">Kompakte Banner ausblenden</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakte Banner sind versteckt</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakte Banner werden angezeigt</string>
+ <string name="revanced_hide_movies_section_title">Filme-Bereich ausblenden</string>
+ <string name="revanced_hide_movies_section_summary_on">Film Abschnitt ist ausgeblendet</string>
+ <string name="revanced_hide_movies_section_summary_off">Film Bereich wird angezeigt</string>
+ <string name="revanced_hide_feed_survey_title">Feed-Umfragen ausblenden</string>
+ <string name="revanced_hide_feed_survey_summary_on">Feed-Umfragen sind versteckt</string>
+ <string name="revanced_hide_feed_survey_summary_off">Feed-Umfragen werden angezeigt</string>
+ <string name="revanced_hide_community_guidelines_title">Community-Richtlinien ausblenden</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Community-Richtlinien sind versteckt</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Gemeinschaftsrichtlinien werden angezeigt</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Abonnenten-Community-Richtlinien ausblenden</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Abonnenten-Community-Richtlinien sind versteckt</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Abonnenten-Community-Richtlinien werden angezeigt</string>
+ <string name="revanced_hide_channel_member_shelf_title">Senderregal ausblenden</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Regal der Kanalmitglieder ist versteckt</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanalmitgliedschaft wird angezeigt</string>
+ <string name="revanced_hide_emergency_box_title">Notfall-Boxen ausblenden</string>
+ <string name="revanced_hide_emergency_box_summary_on">Notfall-Boxen sind versteckt</string>
+ <string name="revanced_hide_emergency_box_summary_off">Notfall-Boxen werden angezeigt</string>
+ <string name="revanced_hide_info_panels_title">Info-Panels ausblenden</string>
+ <string name="revanced_hide_info_panels_summary_on">Info-Panels sind versteckt</string>
+ <string name="revanced_hide_info_panels_summary_off">Info-Panels werden angezeigt</string>
+ <string name="revanced_hide_medical_panels_title">Verstecke medizinische Panels</string>
+ <string name="revanced_hide_medical_panels_summary_on">Medizinische Panels sind versteckt</string>
+ <string name="revanced_hide_medical_panels_summary_off">Medizinische Panels werden angezeigt</string>
+ <string name="revanced_hide_channel_bar_title">Senderleiste ausblenden</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanalleiste ist ausgeblendet</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanalleiste wird angezeigt</string>
+ <string name="revanced_hide_playables_title">Playables ausblenden</string>
+ <string name="revanced_hide_playables_summary_on">Spielbare sind versteckt</string>
+ <string name="revanced_hide_playables_summary_off">Spielbare werden angezeigt</string>
+ <string name="revanced_hide_quick_actions_title">Schnellaktionen im Vollbildmodus ausblenden</string>
+ <string name="revanced_hide_quick_actions_summary_on">Schnellaktionen sind ausgeblendet</string>
+ <string name="revanced_hide_quick_actions_summary_off">Schnellaktionen werden angezeigt</string>
+ <string name="revanced_hide_related_videos_title">Verwandte Videos in Schnellaktionen ausblenden</string>
+ <string name="revanced_hide_related_videos_summary_on">Ähnliche Videos sind ausgeblendet</string>
+ <string name="revanced_hide_related_videos_summary_off">Ähnliche Videos werden angezeigt</string>
+ <string name="revanced_hide_image_shelf_title">Bildregal in Suchergebnissen ausblenden</string>
+ <string name="revanced_hide_image_shelf_summary_on">Bildregal ist ausgeblendet</string>
+ <string name="revanced_hide_image_shelf_summary_off">Bildregal wird angezeigt</string>
+ <string name="revanced_hide_latest_posts_ads_title">Neueste Beiträge ausblenden</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Neueste Beiträge sind versteckt</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Neueste Beiträge werden angezeigt</string>
+ <string name="revanced_hide_mix_playlists_title">Mix-Wiedergabelisten ausblenden</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Mix-Wiedergabelisten sind ausgeblendet</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mix-Wiedergabelisten werden angezeigt</string>
+ <string name="revanced_hide_artist_cards_title">Interpretenkarten ausblenden</string>
+ <string name="revanced_hide_artist_cards_summary_on">Künstlerkarten sind versteckt</string>
+ <string name="revanced_hide_artist_cards_summary_off">Interpretenkarten werden angezeigt</string>
+ <string name="revanced_hide_chips_shelf_title">Chips Regal ausblenden</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips Regal ist versteckt</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips Regal wird angezeigt</string>
+ <string name="revanced_hide_attributes_section_title">Attributbereich ausblenden</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Vorgestellte Orte\', Spiele und Musik Sektionen sind versteckt</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Vorgestellte Orte\', Spiele- und Musiksektionen werden angezeigt</string>
+ <string name="revanced_hide_chapters_section_title">Kapitel ausblenden</string>
+ <string name="revanced_hide_chapters_section_summary_on">Kapitel ist ausgeblendet</string>
+ <string name="revanced_hide_chapters_section_summary_off">Kapitel wird angezeigt</string>
+ <string name="revanced_hide_podcast_section_title">Verstecke \'Erkunden Sie den Podcast\' Abschnitt</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Erkunde den Podcast\' Abschnitt ist ausgeblendet</string>
+ <string name="revanced_hide_podcast_section_summary_off">Abschnitt \'Erkunde den Podcast\' wird angezeigt</string>
+ <string name="revanced_hide_info_cards_section_title">Info-Kartenbereich ausblenden</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Info-Kartenbereich ist ausgeblendet</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Info-Kartenbereich wird angezeigt</string>
+ <string name="revanced_hide_transcript_section_title">Transkript-Abschnitt ausblenden</string>
+ <string name="revanced_hide_transcript_section_summary_on">Transkript-Abschnitt ist ausgeblendet</string>
+ <string name="revanced_hide_transcript_section_summary_off">Sektion Transkripte wird angezeigt</string>
+ <string name="revanced_hide_description_components_screen_title">Videobeschreibung</string>
+ <string name="revanced_hide_description_components_screen_summary">Komponenten der Videobeschreibung ausblenden oder anzeigen</string>
+ <string name="revanced_custom_filter_screen_title">Eigener Filter</string>
+ <string name="revanced_custom_filter_screen_summary">Komponenten mit benutzerdefinierten Filtern ausblenden</string>
+ <string name="revanced_custom_filter_title">Eigenen Filter aktivieren</string>
+ <string name="revanced_custom_filter_summary_on">Eigener Filter ist aktiviert</string>
+ <string name="revanced_custom_filter_summary_off">Eigener Filter ist deaktiviert</string>
+ <string name="revanced_custom_filter_strings_title">Eigener Filter</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Liste der Komponenten-Pfad-Generator-Zeichenketten zum Filtern durch neue Zeile getrennt</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Ungültiger benutzerdefinierter Filter: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Keyword-Inhalt ausblenden</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Verstecke Such- und Feed-Videos mit Schlüsselwortfilter</string>
+ <string name="revanced_hide_keyword_content_home_title">Home-Videos nach Schlüsselwörtern ausblenden</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videos im Home-Tab werden nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videos im Home-Tab werden nicht nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Abonnement-Videos mit Schlüsselwörtern ausblenden</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videos auf der Registerkarte Abonnements werden nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videos auf der Registerkarte Abonnements werden nicht nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_search_title">Suchergebnisse mit Schlüsselwörtern ausblenden</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Suchergebnisse werden nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Suchergebnisse werden nicht nach Schlüsselwörtern gefiltert</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Zu versteckende Stichwörter</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Stichwörter und zu versteckende Phrasen durch neue Zeilen\n\ngetrennte Wörter mit Großbuchstaben in der Mitte müssen mit dem Gehäuse eingegeben werden (z.B. iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Über Keyword-Filterung</string>
+ <string name="revanced_hide_keyword_content_about_summary">Home/Abonnement/Suchergebnisse werden gefiltert, um Inhalte auszublenden, die den Schlüsselwörtern\n\nBeschränkungen\nentsprechen • Einige Shorts können nicht versteckt werden\n• Einige UI-Komponenten können nicht versteckt werden\n• Suche nach einem Schlüsselwort kann keine Ergebnisse zeigen</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ungültiges Schlüsselwort. Kann nicht verwenden: \'%s\' als Filter</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ungültiges Schlüsselwort. \'%1$s\' ist weniger als %2$d Zeichen</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Stichwort \'$s\' wird alle Videos ausblenden</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Allgemeine Werbung ausblenden</string>
+ <string name="revanced_hide_general_ads_summary_on">Allgemeine Anzeigen sind versteckt</string>
+ <string name="revanced_hide_general_ads_summary_off">Allgemeine Anzeigen werden angezeigt</string>
+ <string name="revanced_hide_fullscreen_ads_title">Vollbild-Werbung ausblenden</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Vollbild-Anzeigen sind ausgeblendet\n\nDiese Funktion ist nur für ältere Geräte verfügbar</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Vollbild-Anzeigen werden angezeigt</string>
+ <string name="revanced_hide_buttoned_ads_title">Knöpfe Werbung ausblenden</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Buttoned Anzeigen sind versteckt</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Knöpfe Anzeigen werden angezeigt</string>
+ <string name="revanced_hide_paid_promotion_label_title">Bezahltes Werbe-Label ausblenden</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Bezahltes Werbe-Label ist versteckt</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Bezahltes Werbe-Label wird angezeigt</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Selbst gesponserte Karten ausblenden</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Selbstgesponserte Karten sind versteckt</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Selbstgesponserte Karten werden angezeigt</string>
+ <string name="revanced_hide_products_banner_title">Banner ausblenden, um Produkte anzuzeigen</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner ist ausgeblendet</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner wird angezeigt</string>
+ <string name="revanced_hide_shopping_links_title">Einkaufslinks in der Videobeschreibung ausblenden</string>
+ <string name="revanced_hide_shopping_links_summary_on">Shopping-Links sind versteckt</string>
+ <string name="revanced_hide_shopping_links_summary_off">Einkaufslinks werden angezeigt</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Den \'Store besuchen\'-Button auf Kanalseiten ausblenden</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Button ist ausgeblendet</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Button wird angezeigt</string>
+ <string name="revanced_hide_web_search_results_title">Suchergebnisse ausblenden</string>
+ <string name="revanced_hide_web_search_results_summary_on">Suchergebnisse im Web sind versteckt</string>
+ <string name="revanced_hide_web_search_results_summary_off">Web-Suchergebnisse werden angezeigt</string>
+ <string name="revanced_hide_merchandise_banners_title">Merchandise-Banner ausblenden</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Warenbanner sind versteckt</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Warenbanner werden angezeigt</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Vollbild-Werbung ausblenden funktioniert nur mit älteren Geräten</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube Premium-Aktionen ausblenden</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube-Premium-Aktionen unter Video-Player sind versteckt</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube-Premium-Aktionen unter Video-Player werden angezeigt</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Videowerbung ausblenden</string>
+ <string name="revanced_hide_video_ads_summary_on">Video-Anzeigen sind versteckt</string>
+ <string name="revanced_hide_video_ads_summary_off">Video-Anzeigen werden angezeigt</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL in Zwischenablage kopiert</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL mit Zeitstempel kopiert</string>
+ <string name="revanced_copy_video_url_title">Video-URL-Schaltfläche kopieren anzeigen</string>
+ <string name="revanced_copy_video_url_summary_on">Schaltfläche wird angezeigt. Tippen, um Video-URL zu kopieren. Tippen und halten um Video-URL mit Zeitstempel zu kopieren</string>
+ <string name="revanced_copy_video_url_summary_off">Button wird nicht angezeigt</string>
+ <string name="revanced_copy_video_url_timestamp_title">Kopiere Zeitstempel URL-Schaltfläche anzeigen</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Schaltfläche wird angezeigt. Tippen, um Video-URL mit Zeitstempel zu kopieren. Tippen und halten um Video ohne Zeitstempel zu kopieren</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Button wird nicht angezeigt</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Diskretion des Betrachters entfernen</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialog wird entfernt</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialog wird angezeigt</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Dies umgeht nicht die Altersbeschränkung, sondern akzeptiert sie nur automatisch.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Externe Downloads</string>
+ <string name="revanced_external_downloader_screen_summary">Einstellungen für die Verwendung eines externen Downloaders</string>
+ <string name="revanced_external_downloader_title">Externen Download-Button anzeigen</string>
+ <string name="revanced_external_downloader_summary_on">Download-Button im Player angezeigt</string>
+ <string name="revanced_external_downloader_summary_off">Download-Button nicht im Player angezeigt</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Download-Schaltfläche überschreiben</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Download-Button öffnet den externen Downloader</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Download-Button öffnet den nativen In-App-Downloader</string>
+ <string name="revanced_external_downloader_name_title">Paketname des Downloaders</string>
+ <string name="revanced_external_downloader_name_summary">Paketname Ihrer installierten externen Downloader-App wie NewPipe oder Siegel</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s ist nicht installiert. Bitte installieren Sie es.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Genaue Suchgeste deaktivieren</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Geste ist deaktiviert</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Geste ist aktiviert</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Suchleisten-Tippen aktivieren</string>
+ <string name="revanced_seekbar_tapping_summary_on">Tippen der Suchleiste ist aktiviert</string>
+ <string name="revanced_seekbar_tapping_summary_off">Tippen der Suchleiste ist deaktiviert</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Helligkeitsgeste aktivieren</string>
+ <string name="revanced_swipe_brightness_summary_on">Helligkeitswischen ist aktiviert</string>
+ <string name="revanced_swipe_brightness_summary_off">Helligkeitswischen ist deaktiviert</string>
+ <string name="revanced_swipe_volume_title">Lautstärke-Geste aktivieren</string>
+ <string name="revanced_swipe_volume_summary_on">Lautstärke-Wischen ist aktiviert</string>
+ <string name="revanced_swipe_volume_summary_off">Lautstärke-Wischen ist deaktiviert</string>
+ <string name="revanced_swipe_press_to_engage_title">Aktiviere Drücken-zu-Wischgeste</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Drücken zum Wischen ist aktiviert</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Drücken zum Wischen ist deaktiviert</string>
+ <string name="revanced_swipe_haptic_feedback_title">Haptisches Feedback aktivieren</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptisches Feedback ist aktiviert</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptisches Feedback ist deaktiviert</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Helligkeit speichern und wiederherstellen</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Helligkeit speichern und wiederherstellen, wenn Vollbild verlassen oder betreten wird</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Helligkeit beim Beenden oder Einschalten des Vollbildes nicht speichern und wiederherstellen</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Auto-Helligkeit Geste aktivieren</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Wischen Sie auf den niedrigsten Wert der Helligkeitsgeste um die automatische Helligkeit zu aktivieren</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Wenn man zum niedrigsten Wert wischt, aktiviert man die automatische Helligkeit nicht</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Auto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Wischüberlagerungs-Timeout</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Die Anzahl der Millisekunden, die das Overlay sichtbar ist</string>
+ <string name="revanced_swipe_text_overlay_size_title">Wischüberlagerung Textgröße</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Die Textgröße für Wische-Overlay</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Wische Hintergrund Sichtbarkeit</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Die Sichtbarkeit des Wischüberlagerhintergrunds</string>
+ <string name="revanced_swipe_threshold_title">Wischgrößenschwelle</string>
+ <string name="revanced_swipe_threshold_summary">Der Schwellenwert für Wischen</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Autounterschriften deaktivieren</string>
+ <string name="revanced_auto_captions_summary_on">Autounterschriften sind deaktiviert</string>
+ <string name="revanced_auto_captions_summary_off">Automatische Beschriftungen sind aktiviert</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Aktionstasten</string>
+ <string name="revanced_hide_buttons_screen_summary">Verstecke oder zeige Schaltflächen unter Videos</string>
+ <string name="revanced_hide_like_dislike_button_title">Gefällt mir</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">\"Gefällt mir\"-Tasten sind ausgeblendet</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">\"Gefällt mir\"-Tasten werden angezeigt</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Teilen ausblenden</string>
+ <string name="revanced_hide_share_button_summary_on">Teilen-Schaltfläche ist ausgeblendet</string>
+ <string name="revanced_hide_share_button_summary_off">Teilen-Schaltfläche wird angezeigt</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Bericht ausblenden</string>
+ <string name="revanced_hide_report_button_summary_on">Bericht-Button ist ausgeblendet</string>
+ <string name="revanced_hide_report_button_summary_off">Bericht-Button wird angezeigt</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Remix ausblenden</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix Button ist ausgeblendet</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix-Taste wird angezeigt</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Download ausblenden</string>
+ <string name="revanced_hide_download_button_summary_on">Download-Button ist ausgeblendet</string>
+ <string name="revanced_hide_download_button_summary_off">Download-Button wird angezeigt</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Dank ausblenden</string>
+ <string name="revanced_hide_thanks_button_summary_on">Dankeschön-Taste ist ausgeblendet</string>
+ <string name="revanced_hide_thanks_button_summary_off">Dankeschön Button wird angezeigt</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Clip-Button ist ausgeblendet</string>
+ <string name="revanced_hide_clip_button_summary_off">Clip-Taste wird angezeigt</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Speichern in Wiedergabeliste ausblenden</string>
+ <string name="revanced_hide_playlist_button_summary_on">In Wiedergabeliste speichern Button ist ausgeblendet</string>
+ <string name="revanced_hide_playlist_button_summary_off">In Wiedergabeliste speichern wird angezeigt</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Verstecke Autoplay-Schaltfläche</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Autoplay Button ist ausgeblendet</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Autoplay Button wird angezeigt</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Beschriftungstaste ausblenden</string>
+ <string name="revanced_hide_captions_button_summary_on">Beschriftungs-Button ist ausgeblendet</string>
+ <string name="revanced_hide_captions_button_summary_off">Schaltfläche für Untertitel wird angezeigt</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Cast-Button ausblenden</string>
+ <string name="revanced_hide_cast_button_summary_on">Der Cast button ist versteckt</string>
+ <string name="revanced_hide_cast_button_summary_off">Der Cast button wird angezeigt</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Verstecke oder ändere Schaltflächen in der Navigationsleiste</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Haus ausblenden</string>
+ <string name="revanced_hide_home_button_summary_on">Home-Taste ist ausgeblendet</string>
+ <string name="revanced_hide_home_button_summary_off">Home-Taste wird angezeigt</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Shorts ausblenden</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shorts Button ist versteckt</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shorts Button wird angezeigt</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Erstellen ausblenden</string>
+ <string name="revanced_hide_create_button_summary_on">Erstellen-Button ist ausgeblendet</string>
+ <string name="revanced_hide_create_button_summary_off">Erstelle Schaltfläche wird angezeigt</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Abonnements ausblenden</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Abonnement-Button ist ausgeblendet</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Abonnement-Button wird angezeigt</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Mit Benachrichtigungen erstellen wechseln</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Erstelle Schaltfläche wird mit Benachrichtigungsschaltfläche\n\numgeschaltet.format@@1 Hinweis: Aktivieren Sie dies auch erzwungene Video-Anzeigen</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Erstellen-Button ist nicht mit Benachrichtigungs-Button gewechselt</string>
+ <string name="revanced_hide_navigation_button_labels_title">Navigationstastenbezeichnungen ausblenden</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Labels sind versteckt</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Labels werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Verstecke oder zeige Player-Flyout-Menüeinträge</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Bildunterschriften ausblenden</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Unterlagen-Menü ist versteckt</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Unterlagen-Menü wird angezeigt</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Zusätzliche Einstellungen ausblenden</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Zusätzliches Einstellungsmenü ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Zusätzliches Einstellungsmenü wird angezeigt</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Schleifenvideo ausblenden</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Loop Video Menü ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Videomenü wird angezeigt</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ambient-Modus ausblenden</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Ambient Modus Menü ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Inaktivitätsmodus Menü wird angezeigt</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Hilfe- & -Feedback ausblenden</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Hilfe & Feedback-Menü ist versteckt</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Hilfe & Feedback-Menü wird angezeigt</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Wiedergabegeschwindigkeit ausblenden</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Wiedergabegeschwindigkeit ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Wiedergabegeschwindigkeit wird angezeigt</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Mehr Info ausblenden</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Mehr Info-Menü ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Mehr Info-Menü wird angezeigt</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Sperrbildschirm ausblenden</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Sperrbildschirm-Menü ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Sperrbildschirm-Menü wird angezeigt</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Audiospur ausblenden</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Audiospur-Menü ist versteckt</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Audiospurmenü wird angezeigt</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Überwachung in VR ausblenden</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Im VR-Menü beobachten ist ausgeblendet</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Im VR-Menü beobachten wird angezeigt</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Vorherige & Nächste Video-Tasten ausblenden</string>
+ <string name="revanced_hide_player_buttons_summary_on">Tasten sind versteckt</string>
+ <string name="revanced_hide_player_buttons_summary_off">Tasten werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Albumkarten ausblenden</string>
+ <string name="revanced_hide_album_cards_summary_on">Albumkarten sind versteckt</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumkarten werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Kommentare</string>
+ <string name="revanced_comments_screen_summary">Komponenten der Kommentar-Sektion ausblenden oder anzeigen</string>
+ <string name="revanced_hide_comments_by_members_header_title">\'Kommentare von Mitglieder\' im Kopfbereich ausblenden</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Kommentare von Mitglieder\' Header ist versteckt</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Kommentare von Mitgliedern\' wird angezeigt</string>
+ <string name="revanced_hide_comments_section_title">Kommentarbereich ausblenden</string>
+ <string name="revanced_hide_comments_section_summary_on">Kommentarbereich ist ausgeblendet</string>
+ <string name="revanced_hide_comments_section_summary_off">Kommentarbereich wird angezeigt</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">\'Verknüpfung erstellen\'-Button ausblenden</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Verknüpfung erstellen\' Button ist ausgeblendet</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Schaltfläche \"Verknüpfung erstellen\" wird angezeigt</string>
+ <string name="revanced_hide_comments_preview_comment_title">Vorschaukommentar ausblenden</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Vorschaukommentar ist versteckt</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Vorschau des Kommentars wird angezeigt</string>
+ <string name="revanced_hide_comments_thanks_button_title">Dankeschön ausblenden</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Dankeschön-Taste ist ausgeblendet</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Dankeschön Button wird angezeigt</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Zeitstempel und Emoji-Tasten ausblenden</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Zeitstempel und Emoji-Tasten sind versteckt</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Zeitstempel und Emoji-Tasten werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Crowdfunding Box ausblenden</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding-Box ist versteckt</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Crowdfunding-Box wird angezeigt</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Endkarte ausblenden</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Endbildschirmkarten sind ausgeblendet</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Endbildschirmkarten werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filterleiste</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Verstecke oder zeige die Filterleiste im Feed, in der Suche und verwandten Videos</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Im Feed ausblenden</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Versteckt im Feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Im Feed angezeigt</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">In der Suche ausblenden</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Versteckt in der Suche</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">In der Suche angezeigt</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">In verwandten Videos ausblenden</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Versteckt in verwandten Videos</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">In verwandten Videos angezeigt</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Schwebende Mikrofon-Taste ausblenden</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofon-Taste versteckt</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofon-Taste angezeigt</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Ambient-Modus im Vollbildmodus deaktivieren</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Ambient-Modus deaktiviert</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Ambient-Modus aktiviert</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Infokarten ausblenden</string>
+ <string name="revanced_hide_info_cards_summary_on">Infokarten sind versteckt</string>
+ <string name="revanced_hide_info_cards_summary_off">Infokarten werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Rollladen-Animationen deaktivieren</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Rollende Zahlen sind nicht animiert</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rollende Zahlen sind animiert</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Suchleiste im Video-Player ausblenden</string>
+ <string name="revanced_hide_seekbar_summary_on">Video-Player-Suchleiste ist ausgeblendet</string>
+ <string name="revanced_hide_seekbar_summary_off">Suchleiste für Video-Player wird angezeigt</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Suchleiste in Video-Thumbnails ausblenden</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Miniaturansicht-Suchleiste ist ausgeblendet</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Miniaturansicht-Suchleiste wird angezeigt</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Shorts im Home Feed ausblenden</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts im Home Feed sind versteckt</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts im Home Feed werden angezeigt</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Shorts im Abonnement-Feed ausblenden</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts im Abonnement-Feed sind versteckt</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts im Abonnement-Feed werden angezeigt</string>
+ <string name="revanced_hide_shorts_search_title">Shorts in den Suchergebnissen ausblenden</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts in den Suchergebnissen sind versteckt</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts in den Suchergebnissen werden angezeigt</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Beitritts-Button ausblenden</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Knopf beitreten ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Schaltfläche beitreten wird angezeigt</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Abonnement-Button ausblenden</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Abonnieren Button ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Abonnieren Button wird angezeigt</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Pausierte Overlay-Tasten ausblenden</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Pausierte Overlay-Tasten sind ausgeblendet</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Angehaltene Overlay-Tasten werden angezeigt</string>
+ <string name="revanced_hide_shorts_shop_button_title">Shop-Button ausblenden</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Shop-Button ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Shop-Button wird angezeigt</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Super-Dankeschön Button ausblenden</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super-Dankeschön Button ist versteckt</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super-Dankeschön Button wird angezeigt</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Markierte Artikel ausblenden</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Markierte Produkte sind versteckt</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Markierte Produkte werden angezeigt</string>
+ <string name="revanced_hide_shorts_location_label_title">Standortbezeichnung ausblenden</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Ortsbezeichnung ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Ortsbezeichnung wird angezeigt</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Speicherton in Wiedergabelisten-Button ausblenden</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Ton in Wiedergabeliste speichern ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Ton in Wiedergabeliste speichern wird angezeigt</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Suchvorschläge ausblenden</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Suchvorschläge sind versteckt</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Suchvorschläge werden angezeigt</string>
+ <string name="revanced_hide_shorts_like_button_title">Verstecke wie Button</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">\"Gefällt mir\" Button ist versteckt</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">\"Gefällt mir\" Button wird angezeigt</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Verstecke nicht wie Button</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Nicht wie Button ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Button wird angezeigt</string>
+ <string name="revanced_hide_shorts_comments_button_title">Kommentar-Button ausblenden</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Kommentar-Button ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Kommentar-Button wird angezeigt</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Remix-Button ausblenden</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remix Button ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remix-Taste wird angezeigt</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Teilen-Schaltfläche ausblenden</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Teilen-Schaltfläche ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Teilen-Schaltfläche wird angezeigt</string>
+ <string name="revanced_hide_shorts_info_panel_title">Info-Panel ausblenden</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Info-Panel ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Info-Panel wird angezeigt</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Senderleiste ausblenden</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanalleiste ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanalleiste wird angezeigt</string>
+ <string name="revanced_hide_shorts_video_title_title">Videotitel ausblenden</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titel ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titel wird angezeigt</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Sound-Metadaten-Label ausblenden</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metadatenlabel ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metadaten-Label wird angezeigt</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Verstecke vollständige Video-Linkbezeichnung</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Video-Link-Label ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Video-Link-Label wird angezeigt</string>
+ <string name="revanced_hide_shorts_sound_button_title">Tonschaltfläche ausblenden</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Sound-Taste ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Tonschaltfläche wird angezeigt</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Navigationsleiste ausblenden</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigationsleiste ist ausgeblendet</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigationsleiste wird angezeigt</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Empfohlene Video-Endbildschirm deaktivieren</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Empfohlene Videos werden deaktiviert</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Empfohlene Videos werden angezeigt</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Verstecke Video-Zeitstempel</string>
+ <string name="revanced_hide_timestamp_summary_on">Zeitstempel ist versteckt</string>
+ <string name="revanced_hide_timestamp_summary_off">Zeitstempel wird angezeigt</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Player-Popup-Panels ausblenden</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Player-Popup-Fenster sind versteckt</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Player-Popup-Fenster werden angezeigt</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Spieler-Überlagerung Deckkraft</string>
+ <string name="revanced_player_overlay_opacity_summary">Deckkraft Wert zwischen 0-100, wobei 0 transparent ist</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Spieler-Overlay-Deckkraft muss zwischen 0-100 liegen</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Nicht anzeigen</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_status_code">Dislikes nicht verfügbar (Status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Nicht verfügbar (Client-API-Limit erreicht)</string>
+ <string name="revanced_ryd_failure_generic">Dislikes nicht verfügbar (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Video neu laden, um mit Return YouTube Abgleich zu stimmen</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikes werden angezeigt</string>
+ <string name="revanced_ryd_enable_summary_off">Dislikes werden nicht angezeigt</string>
+ <string name="revanced_ryd_shorts_title">Dislikes auf Shorts anzeigen</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikes auf Shorts angezeigt</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikes in Shorts\n\nLimitation: Dislikes können nicht im Inkognito-Modus angezeigt werden</string>
+ <string name="revanced_ryd_shorts_summary_off">Nicht gefällt auf Shorts versteckt</string>
+ <string name="revanced_ryd_dislike_percentage_title">Ablehnt als Prozentsatz</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikes als Prozentsatz angezeigt</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikes als Nummer angezeigt</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt wie Button</string>
+ <string name="revanced_ryd_compact_layout_summary_on">\"Gefällt mir\" Button für minimale Breite</string>
+ <string name="revanced_ryd_compact_layout_summary_off">\"Gefällt mir\" Button für das beste Aussehen</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Einen Toast anzeigen, wenn die API nicht verfügbar ist</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast wird angezeigt, wenn YouTube-Ablehnung nicht verfügbar ist</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast wird nicht angezeigt, wenn YouTube-Dislike nicht verfügbar ist</string>
+ <string name="revanced_ryd_about">Über</string>
+ <string name="revanced_ryd_attribution_summary">Daten werden von der YouTube Dislike API zurückgegeben. Tippe hier, um mehr zu erfahren</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Gibt die API-Statistiken dieses Geräts zurück</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API-Antwortzeit, Durchschnitt</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API-Antwortzeit, Minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API-Antwortzeit, Maximum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API-Antwortzeit, letztes Video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes vorübergehend nicht verfügbar - Client-API-Rate Limit in der Tat</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API-Abstimmungen abrufen, Anzahl der Aufrufe</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Keine Netzwerkanrufe durchgeführt</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d Netzwerkanrufe getätigt</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API-Abstimmungen abrufen, Anzahl der Timeouts</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Keine Zeitüberschreitung für Netzwerkanrufe</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d Netzwerkanrufe Timeout</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limit API-Client-Rate</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Keine Limit für Kundenrate gefunden</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d Millisekunden</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">breite Suchleiste aktivieren</string>
+ <string name="revanced_wide_searchbar_summary_on">Breite Suchleiste ist aktiviert</string>
+ <string name="revanced_wide_searchbar_summary_off">Breite Suchleiste ist deaktiviert</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Alte Suchleisten-Thumbnails wiederherstellen</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Suchleisten-Thumbnails werden über der Suchleiste angezeigt</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Miniaturansichten werden im Vollbild angezeigt</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock aktivieren</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock ist ein Crowd-Source-System, um nervige Teile von YouTube-Videos zu überspringen</string>
+ <string name="revanced_sb_appearance_category">Darstellung</string>
+ <string name="revanced_sb_enable_voting">Stimmen-Button anzeigen</string>
+ <string name="revanced_sb_enable_voting_sum_on">Segmentstimmen Button wird angezeigt</string>
+ <string name="revanced_sb_enable_voting_sum_off">Segmentstimmen Button wird nicht angezeigt</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Kompakte Sprung-Taste verwenden</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Überspringe Taste für minimale Breite</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Überspringen-Button für beste Darstellung gestaltet</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Überspringen-Schaltfläche automatisch ausblenden</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Überspringe Taste verbirgt sich nach ein paar Sekunden</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Schaltfläche für das gesamte Segment überspringen</string>
+ <string name="revanced_sb_general_skiptoast">Toast beim automatischen Überspringen anzeigen</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast wird angezeigt, wenn ein Segment automatisch übersprungen wird. Tippen Sie hier, um ein Beispiel zu sehen</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast wird nicht angezeigt. Tippen Sie hier, um ein Beispiel zu sehen</string>
+ <string name="revanced_sb_general_time_without">Videolänge ohne Segmente anzeigen</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videolänge abzüglich aller Segmente in Klammern neben der vollständigen Videolänge</string>
+ <string name="revanced_sb_general_time_without_sum_off">Vollständige Videolänge angezeigt</string>
+ <string name="revanced_sb_create_segment_category">Neue Segmente erstellen</string>
+ <string name="revanced_sb_enable_create_segment">Neue Segmentschaltfläche anzeigen</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Neue Segmentschaltfläche erstellen wird angezeigt</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Neue Segmentschaltfläche erstellen wird nicht angezeigt</string>
+ <string name="revanced_sb_general_adjusting">Neuen Segmentschritt anpassen</string>
+ <string name="revanced_sb_general_adjusting_sum">Anzahl der Millisekunden, die sich die Zeitanpassungsschaltflächen bewegen, wenn neue Segmente erstellt werden</string>
+ <string name="revanced_sb_general_adjusting_invalid">Wert muss eine positive Zahl sein</string>
+ <string name="revanced_sb_guidelines_preference_title">Richtlinien anzeigen</string>
+ <string name="revanced_sb_guidelines_preference_sum">Richtlinien enthalten Regeln und Tipps zum Erstellen neuer Segmente</string>
+ <string name="revanced_sb_guidelines_popup_title">Den Richtlinien folgen</string>
+ <string name="revanced_sb_guidelines_popup_content">Lies die SponsorBlock Richtlinien bevor du neue Segmente erstellst</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Bereits gelesen</string>
+ <string name="revanced_sb_guidelines_popup_open">Zeig sie mir</string>
+ <string name="revanced_sb_general">Allgemein</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Einen Toast anzeigen, wenn die API nicht verfügbar ist</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast wird angezeigt, wenn SponsorBlock nicht verfügbar ist</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast wird nicht angezeigt, wenn SponsorBlock nicht verfügbar ist</string>
+ <string name="revanced_sb_general_skipcount">Aktiviere Sprungzähler-Tracking</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Lässt die SponsorBlock Rangliste wissen, wie viel Zeit gespeichert wird. Jedes Mal, wenn ein Segment übersprungen wird, wird eine Nachricht an die Rangliste gesendet</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Überspringungszähler ist nicht aktiviert</string>
+ <string name="revanced_sb_general_min_duration">Mindestdauer der Segmente</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmente kürzer als dieser Wert (in Sekunden) werden nicht angezeigt oder übersprungen</string>
+ <string name="revanced_sb_general_uuid">Ihre private Benutzer-Id</string>
+ <string name="revanced_sb_general_uuid_sum">Dies sollte vertraulich behandelt werden. Dies ist wie ein Passwort und sollte mit niemandem geteilt werden. Wenn jemand dies hat, kann er sich für Sie ausgeben</string>
+ <string name="revanced_sb_general_uuid_invalid">Private Benutzer-Id muss mindestens 30 Zeichen lang sein</string>
+ <string name="revanced_sb_general_api_url">API URL ändern</string>
+ <string name="revanced_sb_general_api_url_sum">Die Adresse des SponsorBlocks für Anrufe an den Server</string>
+ <string name="revanced_sb_api_url_reset">API-URL zurückgesetzt</string>
+ <string name="revanced_sb_api_url_invalid">API URL ist ungültig</string>
+ <string name="revanced_sb_api_url_changed">API-URL geändert</string>
+ <string name="revanced_sb_settings_ie">Einstellungen importieren/exportieren</string>
+ <string name="revanced_sb_settings_copy">Kopieren</string>
+ <string name="revanced_sb_settings_ie_sum">Ihre SponsorBlock JSON-Konfiguration, die auf ReVanced und andere SponsorBlock-Plattformen importiert oder exportiert werden kann</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Ihre SponsorBlock JSON-Konfiguration, die auf ReVanced und andere SponsorBlock Plattformen importiert oder exportiert werden kann. Dies schließt Ihre private Benutzer-ID ein. Stellen Sie sicher, dass Sie diese weise teilen</string>
+ <string name="revanced_sb_settings_import_successful">Einstellungen erfolgreich importiert</string>
+ <string name="revanced_sb_settings_import_failed">Import fehlgeschlagen: %s</string>
+ <string name="revanced_sb_settings_export_failed">Export fehlgeschlagen: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ihre Einstellungen enthalten einen privaten SponsorBlock Benutzer.\n\nIhre Benutzer-ID ist wie ein Passwort und sollte nie geteilt werden.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Nicht wieder anzeigen</string>
+ <string name="revanced_sb_diff_segments">Segmentverhalten ändern</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Bezahlte Förderung, bezahlte Empfehlungen und direkte Werbung. Nicht für Selbstwerbung oder kostenlose Shoutouts an Ursachen/Webseiten/Produkte, die ihnen gefallen</string>
+ <string name="revanced_sb_segments_selfpromo">Unbezahlt/Eigenwerbung</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Ähnlich wie bei \"Sponsor\" mit Ausnahme von unbezahlter oder Selbstbeförderung. Enthält Abschnitte über Waren, Spenden oder Informationen darüber, mit wem sie zusammengearbeitet haben</string>
+ <string name="revanced_sb_segments_interaction">Interaktionserinnerung (Abonnieren)</string>
+ <string name="revanced_sb_segments_interaction_sum">Eine kurze Erinnerung, sie in der Mitte des Inhalts zu zitieren, zu abonnieren oder zu verfolgen. Wenn es lang ist oder etwas Konkretes ist, sollte es stattdessen unter Selbstförderung stehen</string>
+ <string name="revanced_sb_segments_highlight">Hervorheben</string>
+ <string name="revanced_sb_segments_highlight_sum">Der Teil des Videos, nach dem die meisten Menschen suchen</string>
+ <string name="revanced_sb_segments_intro">Unterbrechung/Introanimation</string>
+ <string name="revanced_sb_segments_intro_sum">Ein Intervall ohne aktuellen Inhalt. Kann eine Pause, ein statischer Rahmen oder eine Wiederholung der Animation sein. Enthält keine Übergänge mit Informationen</string>
+ <string name="revanced_sb_segments_outro">Endkarten/Credits</string>
+ <string name="revanced_sb_segments_outro_sum">Credits oder wenn die YouTube-Endkarten erscheinen. Nicht für Schlussfolgerungen mit Informationen</string>
+ <string name="revanced_sb_segments_preview">Vorschau/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Sammlung von Clips, die zeigen, was im Video oder in anderen Videos einer Serie vor sich geht, wo alle Informationen andernorts wiederholt werden</string>
+ <string name="revanced_sb_segments_filler">Füller/Witze</string>
+ <string name="revanced_sb_segments_filler_sum">Tangentielle Szenen, die nur für Füller oder Humor hinzugefügt werden, die nicht erforderlich sind, um den Hauptinhalt des Videos zu verstehen. Enthält keine Segmente mit Kontext oder Hintergrunddetails</string>
+ <string name="revanced_sb_segments_nomusic">Musik: Nicht-Musik-Sektion</string>
+ <string name="revanced_sb_segments_nomusic_sum">Nur für die Verwendung in Musikvideos. Abschnitte von Musikvideos ohne Musik, die noch nicht von einer anderen Kategorie abgedeckt sind</string>
+ <string name="revanced_sb_skip_button_compact">Überspringen</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Hervorheben</string>
+ <string name="revanced_sb_skip_button_sponsor">Sponsor überspringen</string>
+ <string name="revanced_sb_skip_button_selfpromo">Promo überspringen</string>
+ <string name="revanced_sb_skip_button_interaction">Interaktion überspringen</string>
+ <string name="revanced_sb_skip_button_highlight">Zum Hervorheben springen</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Einleitung überspringen</string>
+ <string name="revanced_sb_skip_button_intro_middle">Unterbrechung überspringen</string>
+ <string name="revanced_sb_skip_button_intro_end">Unterbrechung überspringen</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Vorschau überspringen</string>
+ <string name="revanced_sb_skip_button_preview_middle">Vorschau überspringen</string>
+ <string name="revanced_sb_skip_button_preview_end">Rückfall überspringen</string>
+ <string name="revanced_sb_skip_button_filler">Füller überspringen</string>
+ <string name="revanced_sb_skip_button_nomusic">Nicht-Musik überspringen</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Segment überspringen</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor übersprungen</string>
+ <string name="revanced_sb_skipped_selfpromo">Eigenwerbung übersprungen</string>
+ <string name="revanced_sb_skipped_interaction">Nervige Erinnerung übersprungen</string>
+ <string name="revanced_sb_skipped_highlight">Zum Hervorheben übersprungen</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro übersprungen</string>
+ <string name="revanced_sb_skipped_intro_middle">Übersprungene Unterbrechung</string>
+ <string name="revanced_sb_skipped_intro_end">Übersprungene Unterbrechung</string>
+ <string name="revanced_sb_skipped_outro">Outro übersprungen</string>
+ <string name="revanced_sb_skipped_preview_beginning">Vorschau übersprungen</string>
+ <string name="revanced_sb_skipped_preview_middle">Vorschau übersprungen</string>
+ <string name="revanced_sb_skipped_preview_end">Übersprungene Rücklage</string>
+ <string name="revanced_sb_skipped_filler">Füller übersprungen</string>
+ <string name="revanced_sb_skipped_nomusic">Nicht-Musik-Sektion übersprungen</string>
+ <string name="revanced_sb_skipped_unsubmitted">Nicht übermitteltes Segment übersprungen</string>
+ <string name="revanced_sb_skipped_multiple_segments">Mehrere Segmente übersprungen</string>
+ <string name="revanced_sb_skip_automatically">Automatisch überspringen</string>
+ <string name="revanced_sb_skip_automatically_once">Automatisch einmal überspringen</string>
+ <string name="revanced_sb_skip_showbutton">Überspringen Schaltfläche anzeigen</string>
+ <string name="revanced_sb_skip_seekbaronly">In Suchleiste anzeigen</string>
+ <string name="revanced_sb_skip_ignore">Deaktivieren</string>
+ <string name="revanced_sb_submit_failed_invalid">Segment kann nicht gesendet werden: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock ist vorübergehend nicht verfügbar</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Segment kann nicht gesendet werden (Status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Segment kann nicht gesendet werden.\nRate limitiert (zu viele von demselben Benutzer oder IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Das Segment kann nicht gesendet werden: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Segment kann nicht abgesendet werden. \nBereits vorhanden</string>
+ <string name="revanced_sb_submit_succeeded">Segment erfolgreich übertragen</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock vorübergehend nicht verfügbar (Status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock vorübergehend nicht verfügbar</string>
+ <string name="revanced_sb_vote_failed_timeout">Abstimmung für Segment nicht möglich (API Timeout)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Segment kann nicht gewählt werden (Status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Kann nicht für Segment abstimmen: %s</string>
+ <string name="revanced_sb_vote_upvote">Gut bewerten</string>
+ <string name="revanced_sb_vote_downvote">Schlecht bewerten</string>
+ <string name="revanced_sb_vote_category">Kategorie ändern</string>
+ <string name="revanced_sb_vote_no_segments">Es gibt keine Segmente zur Abstimmung</string>
+ <string name="revanced_sb_new_segment_choose_category">Wählen sie die Segmentkategorie</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategorie ist in den Einstellungen deaktiviert. Aktivieren Sie die Kategorie zum Abschicken.</string>
+ <string name="revanced_sb_new_segment_title">Neues SponsorBlock Segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">%1$02d:%2$02d:%3$03d als Start oder Ende eines neuen Segments festlegen?</string>
+ <string name="revanced_sb_new_segment_mark_start">Start</string>
+ <string name="revanced_sb_new_segment_mark_end">Ende</string>
+ <string name="revanced_sb_new_segment_now">Jetzt</string>
+ <string name="revanced_sb_new_segment_time_start">Das Segiment beginnt ab</string>
+ <string name="revanced_sb_new_segment_time_end">Das Segiment endet bei</string>
+ <string name="revanced_sb_new_segment_confirm_title">Sind diese Zeiten richtig?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Das Segment ist von\n\n\n%1$s\nbis\n%2$s\n\n(%3$s)\n\nBereit zum Absenden?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Start muss vor dem Ende sein</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Markieren sie zuerst zwei Punkte auf der Zeitleiste</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Vorschau des Segments und sorgt dafür, dass es reibungslos überspringt</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Timing des Segments manuell bearbeiten</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Möchten Sie den Zeitpunkt für den Anfang oder das Ende des Segments bearbeiten?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Ungültige Zeit angegeben</string>
+ <string name="revanced_sb_stats">Statistiken</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistiken vorübergehend nicht verfügbar (API ist herunter)</string>
+ <string name="revanced_sb_stats_loading">Lädt …</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock ist deaktiviert</string>
+ <string name="revanced_sb_stats_username">Ihr Benutzername: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Tippen Sie hier, um Ihren Benutzernamen zu ändern</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Benutzername konnte nicht geändert werden; Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Benutzername wurde geändert</string>
+ <string name="revanced_sb_stats_reputation">Dein Ruf ist <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Sie haben <b>%s</b> Segmente erstellt</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock Rangliste</string>
+ <string name="revanced_sb_stats_saved">Sie haben Personen aus <b>%s</b> Segmenten gespeichert</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Hier tippen, um die globalen Statistiken und Top-Beitragszahler zu sehen</string>
+ <string name="revanced_sb_stats_saved_sum">Das ist <b>%s</b> ihres Lebens.<br>Tippe hier, um die Rangliste zu sehen</string>
+ <string name="revanced_sb_stats_self_saved">Sie haben Segmente <b>%s</b> übersprungen</string>
+ <string name="revanced_sb_stats_self_saved_sum">Das ist <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Zähler übersprungener Segmente zurücksetzen?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s Stunden %2$s Minuten</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s Minuten %2$s Sekunden</string>
+ <string name="revanced_sb_stats_saved_second_format">%s Sekunden</string>
+ <string name="revanced_sb_color_dot_label">Farbe:</string>
+ <string name="revanced_sb_color_changed">Farbe geändert</string>
+ <string name="revanced_sb_color_reset">Farbe zurücksetzen</string>
+ <string name="revanced_sb_color_invalid">Ungültiger Farbcode</string>
+ <string name="revanced_sb_reset_color">Farbe zurücksetzen</string>
+ <string name="revanced_sb_reset">Zurücksetzen</string>
+ <string name="revanced_sb_about">Über</string>
+ <string name="revanced_sb_about_api_sum">Daten werden von der SponsorBlock API bereitgestellt. Tippen Sie hier, um mehr zu erfahren und Downloads für andere Plattformen zu sehen</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof-App-Version</string>
+ <string name="revanced_spoof_app_version_summary_on">Version gefälscht</string>
+ <string name="revanced_spoof_app_version_summary_off">Version nicht gefälscht</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Die App-Version wird auf eine ältere Version von YouTube gefälscht.\n\nDies ändert das Aussehen und die Funktionen der App, aber es können unbekannte Nebeneffekte auftreten.\n\nWenn später ausgeschaltet ist, wird empfohlen, die App-Daten zu löschen, um UI-Fehler zu vermeiden.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof-App-Versionsziel</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - RYD auf Shorts Inkognito-Modus wiederherstellen</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Wiederherstellen der breiten Videogeschwindigkeit & Qualitätsmenü</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Bibliotheks-Tab wiederherstellen</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Alte Wiedergabeliste wiederherstellen</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Altes UI-Layout wiederherstellen</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Startseite festlegen</string>
+ <string name="revanced_start_page_entry_0">Standard</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Zuhause</string>
+ <string name="revanced_start_page_entry_2">Suchen</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonnements</string>
+ <string name="revanced_start_page_entry_4">Erforschen</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Tab</string>
+ <string name="revanced_start_page_entry_7">Geiked Videos</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Verlauf</string>
+ <string name="revanced_start_page_entry_9">Beliebt</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Fortsetzen des Shorts Players deaktivieren</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Der Shorts Player wird beim Start der App nicht fortgesetzt</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts-Player wird beim Start der App fortgesetzt</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Tablet Layout aktivieren</string>
+ <string name="revanced_tablet_layout_summary_on">Tablet Layout ist aktiviert</string>
+ <string name="revanced_tablet_layout_summary_off">Tablet Layout ist deaktiviert</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Community-Beiträge werden nicht auf Tablet Layouts angezeigt</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Miniplayer</string>
+ <string name="revanced_miniplayer_screen_summary">Ändere den Stil des in App minimierten Players</string>
+ <string name="revanced_miniplayer_type_title">Minispielertyp</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablets</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ausklappen und Schließen der Tasten ausblenden</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Tasten sind ausgeblendet\n(wischen Sie den Miniplayer zum erweitern oder schließen)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Erweitern und Schließen Tasten werden angezeigt</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Untertexte ausblenden</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Subtexte sind versteckt</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Untertexte werden angezeigt</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Vorwärts- und Rückwärts-Buttons ausblenden</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Vorwärts springen und zurück sind versteckt</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Vorwärts und zurück springen werden angezeigt</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Deckkraft Wert zwischen 0-100, wobei 0 transparent ist</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Miniplayer-Overlay-Deckkraft muss zwischen 0-100 liegen</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Gradientenladebildschirm aktivieren</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Lade Bildschirm hat einen Farbverlauf Hintergrund</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Das Laden des Bildschirms wird einen soliden Hintergrund haben</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Eigene Suchleistenfarbe aktivieren</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Angepasste Suchleistenfarbe wird angezeigt</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Originalfarbe der Suchleiste wird angezeigt</string>
+ <string name="revanced_seekbar_custom_color_value_title">Farbe der Suchleiste</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Die Farbe der Suchleiste</string>
+ <string name="revanced_seekbar_custom_color_invalid">Ungültiger Suchleisten-Farbwert. Standardwert wird verwendet.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Home-Tab</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Abonnement-Tab</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Tab</string>
+ <string name="revanced_alt_thumbnail_player_title">Playlisten, Empfehlungen</string>
+ <string name="revanced_alt_thumbnail_search_title">Suchergebnisse</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Pfeil & Original-Miniaturansichten</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Pfeil & immer noch erfasst</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Noch Aufnahmen</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow bietet Crowd-sourced Thumbnails für YouTube-Videos. Diese Vorschaubilder sind oft relevanter als die von YouTube\n\nwenn aktiviert, Video-URLs werden an den API-Server gesendet und keine anderen Daten gesendet. Wenn ein Video keine DeArrow Thumbnails hat, dann werden das Original oder die Aufnahmen\n\nTippen Sie hier, um mehr über DePfeil zu erfahren</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Einen Toast anzeigen, wenn die API nicht verfügbar ist</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast wird angezeigt, wenn der Pfeil nicht verfügbar ist</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast wird nicht angezeigt, wenn der Pfeil nicht verfügbar ist</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Die URL des Cache Endpunkts der DeArrow Thumbnails</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Noch Videoaufnahmen</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Die Aufnahmen werden immer noch von Anfang an / Mitte / Ende jedes Videos übernommen. Diese Bilder sind in YouTube eingebaut und es wird keine externe API verwendet</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Schnelle Stand-Captures verwenden</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Die Verwendung von mittlerer Qualität bleibt erhalten. Die Vorschaubilder werden schneller geladen, aber Live-Streams, unveröffentlichte oder sehr alte Videos können leere Thumbnails anzeigen</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Verwendung hoher Qualität immer noch Captures</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Videozeit für Aufnahmen von</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Beginn des Videos</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Mitte des Videos</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Ende des Videos</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Pfeil vorübergehend nicht verfügbar (Statuscode: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Pfeil vorübergehend nicht verfügbar</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Verbesserte Ankündigungen anzeigen</string>
+ <string name="revanced_announcements_summary_on">Ankündigungen werden beim Start angezeigt</string>
+ <string name="revanced_announcements_summary_off">Ankündigungen werden beim Start nicht angezeigt</string>
+ <string name="revanced_announcements_enabled_summary">Ankündigungen beim Start anzeigen</string>
+ <string name="revanced_announcements_connection_failed">Verbindung zum Ankündigungsanbieter fehlgeschlagen</string>
+ <string name="revanced_announcements_dialog_dismiss">Verwerfen</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Auto-Wiederholung aktivieren</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-Wiederholung ist aktiviert</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-Wiederholung ist deaktiviert</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Spoof-Gerätegröße</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Die Dimensionen des Geräts wurden mit\n\nverschönert. Höhere Video-Qualitäten können freigeschaltet werden, aber es kann sein, dass Videowiedergabe stuttert, die Batterielebensdauer verschlechtert und unbekannte Nebeneffekte auftreten</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Gerätedimensionen nicht gefälscht\n\nAktivieren kann höhere Video-Qualitäten freischalten</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Aktivieren kann dazu führen, dass Videowiedergabe blockiert, die Batterielebensdauer verschlechtert und unbekannte Nebeneffekte entstehen.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Einstellungen</string>
+ <string name="microg_settings_summary">Einstellungen für GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL-Weiterleitungen umgehen</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL-Umleitungen werden umgangen</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL-Umleitungen werden nicht umgangen</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Links im Browser öffnen</string>
+ <string name="revanced_external_browser_summary_on">Links extern öffnen</string>
+ <string name="revanced_external_browser_summary_off">Öffne Links in der App</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Hintergrundwiedergabe</string>
+ <string name="revanced_background_playback_summary">Diese Einstellung kann in den Einstellungen gefunden werden -> Hintergrund</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Tracking-Abfrageparameter entfernen</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Tracking-Abfrageparameter wird von Links entfernt</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Tracking-Abfrageparameter wird nicht von Links entfernt</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Zoomhaptik deaktivieren</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptik ist deaktiviert</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptik ist aktiviert</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatische Qualität</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Änderungen der Videoqualität merken</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Qualitätsänderungen gelten für alle Videos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Qualitätsänderungen gelten nur für das aktuelle Video</string>
+ <string name="revanced_video_quality_default_wifi_title">Standard-Videoqualität im Wi-Fi-Netzwerk</string>
+ <string name="revanced_video_quality_default_mobile_title">Standard-Videoqualität im Mobilfunknetz</string>
+ <string name="revanced_remember_video_quality_mobile">mobile</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Standard %1$s Qualität geändert zu: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Zeige Geschwindigkeitsdialog Taste</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Button wird angezeigt</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Button wird nicht angezeigt</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Benutzerdefinierte Wiedergabegeschwindigkeiten</string>
+ <string name="revanced_custom_playback_speeds_summary">Verfügbare Wiedergabegeschwindigkeiten hinzufügen oder ändern</string>
+ <string name="revanced_custom_playback_speeds_invalid">Benutzerdefinierte Geschwindigkeiten müssen kleiner als %ssein. Standardwerte werden verwendet.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Ungültige benutzerdefinierte Wiedergabegeschwindigkeiten. Standardwerte verwenden.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Änderungen der Wiedergabegeschwindigkeit merken</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Änderungen der Wiedergabegeschwindigkeit gelten für alle Videos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Änderungen der Wiedergabegeschwindigkeit gelten nur für das aktuelle Video</string>
+ <string name="revanced_playback_speed_default_title">Standard Wiedergabegeschwindigkeit</string>
+ <string name="revanced_remember_playback_speed_toast">Standardgeschwindigkeit geändert zu: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Altes Videoqualitätsmenü wiederherstellen</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Altes Video-Qualitätsmenü wird angezeigt</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Altes Video-Qualitätsmenü wird nicht angezeigt</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Folie zum Suchen aktivieren</string>
+ <string name="revanced_slide_to_seek_summary_on">Slide zum Suchen ist aktiviert</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide zum Suchen ist nicht aktiviert</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof-Client</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof des Clients, um Wiedergabeprobleme zu verhindern</string>
+ <string name="revanced_spoof_client_title">Spoof-Client</string>
+ <string name="revanced_spoof_client_summary_on">Client ist getäuscht</string>
+ <string name="revanced_spoof_client_summary_off">Client ist nicht gefälscht\n\nVideo-Wiedergabe funktioniert möglicherweise nicht</string>
+ <string name="revanced_spoof_client_user_dialog_message">Das Deaktivieren dieser Einstellung kann zu Videowiedergabeproblemen führen.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof-Client zu iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Der Client ist derzeit auf iOS\n\nseitliche Effekte gefälscht:\n• Kein HDR-Video\n• Verlauf kann nicht funktionieren\n• Höhere Video-Qualitäten fehlen möglicherweise\n• Live-Streams können nicht nur als Audio abspielen\n• Live-Streams auf Android 8.0 nicht verfügbar</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Der Client ist derzeit auf Android VR\n\nSeiteneffekte gefälscht:\n• Kein HDR Video\n• Kindervideos spielen nicht\n• Pausierte Videos können zufällig wieder aufgenommen werden\n• Niedrige Shorts Suchleisten-Thumbnails\n• Download-Button ist immer versteckt\n• Endbildschirm-Karten werden immer versteckt</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Spoof-Thumbnails nicht verfügbar (API-Zeitüberschreitung)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Spoof-Client-Thumbnails vorübergehend nicht verfügbar: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Spoof-App-Signatur</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Spoof der App-Signatur, um Wiedergabeprobleme zu vermeiden</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Spoof-App-Signatur</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">App-Signatur gefälscht\n\nNebeneffekte beinhalten:\n• Erweiterte Bitrate ist nicht verfügbar\n• Videos können nicht\nheruntergeladen werden • Keine Suchleisten-Vorschaubilder für bezahlte Videos</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">App-Signatur nicht gefälscht\n\nVideowiedergabe funktioniert möglicherweise nicht</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Das Deaktivieren dieser Einstellung führt zu Videowiedergabeproblemen.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof-App-Signatur im Feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">App-Signatur gefälscht\n\nNebeneffekte beinhalten:\n• Feed-Videos fehlen Untertitel\n• Automatisch abgespielte Feed-Videos werden in Ihrem Überwachungsverlauf angezeigt</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">App-Signatur für Feed-Videos nicht gefälscht\n\nFeed Videos werden weniger als 1 Minute vor Wiedergabeproblemen abgespielt</string>
+ <string name="revanced_spoof_storyboard_title">Spoof-Storyboard</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard gefälscht</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard nicht gefälscht\n\nNebeneffekte beinhalten:\n• Kein Umgebungsmodus\n• Suchleisten-Thumbnails werden ausgeblendet</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof-Storyboard vorübergehend nicht verfügbar (API Timeout)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Spoof Storyboard vorübergehend nicht verfügbar: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Automatische HDR-Helligkeit aktivieren</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatische HDR-Helligkeit ist aktiviert</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Auto-HDR-Helligkeit ist deaktiviert</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Audio-Werbung blockieren</string>
+ <string name="revanced_block_audio_ads_summary_on">Audiowerbung ist gesperrt</string>
+ <string name="revanced_block_audio_ads_summary_off">Audiowerbung ist entsperrt</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s ist nicht verfügbar. Anzeigen können angezeigt werden. Versuchen Sie, in den Einstellungen zu einem anderen Werbeblock-Dienst zu wechseln.</string>
+ <string name="revanced_embedded_ads_service_failed">Der %s Server hat einen Fehler zurückgegeben. Anzeigen können angezeigt werden. Versuchen Sie, in den Einstellungen zu einem anderen Ad-Block-Dienst zu wechseln.</string>
+ <string name="revanced_block_embedded_ads_title">Blockiere eingebettete Video-Anzeigen</string>
+ <string name="revanced_block_embedded_ads_entry_1">Deaktiviert</string>
+ <string name="revanced_block_embedded_ads_entry_2">Leuchtender Proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock Proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Videowerbung blockieren</string>
+ <string name="revanced_block_video_ads_summary_on">Videowerbung ist gesperrt</string>
+ <string name="revanced_block_video_ads_summary_off">Video-Anzeigen sind entsperrt</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">Nachricht gelöscht</string>
+ <string name="revanced_show_deleted_messages_title">Gelöschte Nachrichten anzeigen</string>
+ <string name="revanced_show_deleted_messages_entry_1">Gelöschte Nachrichten nicht anzeigen</string>
+ <string name="revanced_show_deleted_messages_entry_2">Gelöschte Nachrichten hinter einem Spoiler ausblenden</string>
+ <string name="revanced_show_deleted_messages_entry_3">Gelöschte Nachrichten als überschneidenden Text anzeigen</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Kanalpunkte automatisch beanspruchen</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanalpunkte werden automatisch abgeholt</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanalpunkte werden nicht automatisch abgeholt</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch-Debug-Modus aktivieren</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch-Debug-Modus ist aktiviert (nicht empfohlen)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch-Debug-Modus ist deaktiviert</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Verbesserte Einstellungen</string>
+ <string name="revanced_ads_screen_title">Werbung</string>
+ <string name="revanced_ads_screen_summary">Werbeblocker-Einstellungen</string>
+ <string name="revanced_chat_screen_title">Chat</string>
+ <string name="revanced_chat_screen_summary">Chat-Einstellungen</string>
+ <string name="revanced_misc_screen_title">Sonstiges</string>
+ <string name="revanced_misc_screen_summary">Verschiedene Einstellungen</string>
+ <string name="revanced_general_category_title">Allgemeine Einstellungen</string>
+ <string name="revanced_other_category_title">Andere Einstellungen</string>
+ <string name="revanced_client_ads_category_title">Client-seitige Werbung</string>
+ <string name="revanced_surestream_ads_category_title">Serverseitige surestream Anzeigen</string>
+ <string name="revanced_twitch_debug_title">Debug-Logging</string>
+ <string name="revanced_twitch_debug_summary_on">Debug-Logs sind aktiviert</string>
+ <string name="revanced_twitch_debug_summary_off">Debug-Logs sind deaktiviert</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-el-rGR/strings.xml b/src/main/resources/addresources/values-el-rGR/strings.xml
new file mode 100644
index 0000000000..b1e72d4cbd
--- /dev/null
+++ b/src/main/resources/addresources/values-el-rGR/strings.xml
@@ -0,0 +1,1182 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Θέλετε να συνεχίσετε;</string>
+ <string name="revanced_settings_reset">Επαναφορά</string>
+ <string name="revanced_settings_restart_title">Ανανέωση και επανεκκίνηση</string>
+ <string name="revanced_settings_restart">Επανεκκίνηση</string>
+ <string name="revanced_settings_import">Εισαγωγή</string>
+ <string name="revanced_settings_import_copy">Αντιγραφή</string>
+ <string name="revanced_settings_import_reset">Επαναφέρθηκαν οι προεπιλεγμένες ρυθμίσεις ReVanced</string>
+ <string name="revanced_settings_import_success">Έγινε εισαγωγή %d ρυθμίσεων</string>
+ <string name="revanced_settings_import_failure_parse">Η εισαγωγή απέτυχε: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">Το MicroG GmsCore δεν έχει εγκατασταθεί. Εγκαταστήστε το.</string>
+ <string name="gms_core_dialog_title">Απαιτείται ενέργεια</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">Το MicroG GmsCore δεν έχει άδεια να τρέξει στο παρασκήνιο.\n\nΑκολουθήστε τον οδηγό \"Don\'t kill my app\" για το τηλέφωνό σας και εφαρμόστε τις οδηγίες στο MicroG.\n\nΑυτό απαιτείται για να λειτουργήσει η εφαρμογή.</string>
+ <string name="gms_core_dialog_open_website_text">Άνοιγμα ιστοσελίδας</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Οι βελτιστοποιήσεις μπαταρίας στο MicroG GmsCore πρέπει να απενεργοποιηθούν για την αποφυγή προβλημάτων.\n\nΠατήστε το κουμπί «Συνέχεια» και απενεργοποιήστε τις βελτιστοποιήσεις μπαταρίας για το MicroG.</string>
+ <string name="gms_core_dialog_continue_text">Συνέχεια</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">Χρησιμοποιείτε τις τροποποιήσεις ReVanced έκδοσης <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Σημείωση</string>
+ <string name="revanced_settings_about_links_dev_body">Αυτή η έκδοση είναι σε πρώιμο στάδιο, επομένως πιθανότατα να αντιμετωπίσετε απρόοπτα προβλήματα</string>
+ <string name="revanced_settings_about_links_header">Επίσημοι σύνδεσμοι</string>
+ <string name="revanced_pref_import_export_title">Εισαγωγή / Εξαγωγή</string>
+ <string name="revanced_pref_import_export_summary">Εισαγωγή / Εξαγωγή ρυθμίσεων ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Σχετικά με</string>
+ <string name="revanced_settings_screen_01_ads_title">Διαφημίσεις</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Εναλλακτικές μικρογραφίες</string>
+ <string name="revanced_settings_screen_03_feed_title">Ροή</string>
+ <string name="revanced_settings_screen_04_player_title">Οθόνη αναπαραγωγής</string>
+ <string name="revanced_settings_screen_05_general_title">Γενική διάταξη</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Γραμμή προόδου βίντεο</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Έλεγχος με κατακόρυφη σάρωση οθόνης</string>
+ <string name="revanced_settings_screen_11_misc_title">Διάφορα</string>
+ <string name="revanced_settings_screen_12_video_title">Βίντεο</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Εντοπισμός σφαλμάτων</string>
+ <string name="revanced_debug_screen_summary">Ενεργοποίηση ή απενεργοποίηση επιλογών εντοπισμού σφαλμάτων</string>
+ <string name="revanced_debug_title">Καταγραφή σφαλμάτων</string>
+ <string name="revanced_debug_summary_on">Η καταγραφή σφαλμάτων είναι ενεργοποιημένη</string>
+ <string name="revanced_debug_summary_off">Η καταγραφή σφαλμάτων είναι απενεργοποιημένη</string>
+ <string name="revanced_debug_protobuffer_title">Καταγραφή του buffer πρωτοκόλλου</string>
+ <string name="revanced_debug_protobuffer_summary_on">Τα αρχεία καταγραφής σφαλμάτων περιλαμβάνουν το buffer του πρωτοκόλλου</string>
+ <string name="revanced_debug_protobuffer_summary_off">Τα αρχεία καταγραφής σφαλμάτων δεν περιλαμβάνουν τον buffer πρωτοκόλλου</string>
+ <string name="revanced_debug_stacktrace_title">Καταγραφή ιχνών στοίβας</string>
+ <string name="revanced_debug_stacktrace_summary_on">Τα αρχεία καταγραφής σφαλμάτων περιλαμβάνουν ίχνη στοίβας</string>
+ <string name="revanced_debug_stacktrace_summary_off">Τα αρχεία καταγραφής σφαλμάτων δεν περιλαμβάνουν ίχνη στοίβας</string>
+ <string name="revanced_debug_toast_on_error_title">Εμφάνιση μηνυμάτων σφαλμάτων ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Να εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης σε περιπτώσεις σφαλμάτων</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Να μην εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης σε περιπτώσεις σφαλμάτων</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Η απενεργοποίηση των μηνυμάτων σφαλμάτων κρύβει όλες τις ειδοποιήσεις σφαλμάτων που αφορούν το ReVanced.\n\nΔεν θα ειδοποιήστε για τυχόν απρόβλεπτα γεγονότα.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Απενεργοποίηση λάμψης των κουμπιών «Μου αρέσει» και «Εγγραφή»</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Τα κουμπιά «Μου αρέσει» και «Εγγραφή» δεν θα λάμπουν όταν αναφέρονται</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Τα κουμπιά «Μου αρέσει» και «Εγγραφή» θα λάμπουν όταν αναφέρονται</string>
+ <string name="revanced_hide_gray_separator_title">Γκρι διαχωριστικά</string>
+ <string name="revanced_hide_gray_separator_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_gray_separator_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_channel_watermark_title">Υδατογράφημα καναλιού</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_horizontal_shelves_title">Οριζόντιες ενότητες προτάσεων</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Οι ενότητες προτάσεων όπως:\n• Έκτακτη είδηση\n• Συνέχεια παρακολούθησης\n• Εξερευνήστε περισσότερα κανάλια\n• Αγορές\n•Παρακολουθήστε ξανά\nείναι κρυμμένες</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Εμφανίζονται</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Κουμπί «Συμμετοχή»</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Εμφανίζεται</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ενότητα «Για εσάς» στη σελίδα καναλιού</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Εμφανίζεται</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Κουμπί «Να λαμβάνω ειδοποιήσεις»</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Εμφανίζεται</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ενότητα «Άλλοι χρήστες παρακολούθησαν επίσης»</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Εμφανίζεται</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Κουμπί «Εμφάνιση περισσότερων»</string>
+ <string name="revanced_hide_show_more_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_show_more_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_timed_reactions_title">Συγχρονισμένες αντιδράσεις</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ενότητα αποτελεσμάτων αναζήτησης</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_channel_guidelines_title">Οδηγίες καναλιού</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_expandable_chip_title">Επεκτάσιμα πλαίσια κάτω από τα βίντεο</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Οδηγίες του μενού ποιότητας βίντεο</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_community_posts_title">Δημοσιεύσεις κοινότητας</string>
+ <string name="revanced_hide_community_posts_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_community_posts_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_compact_banner_title">Αναγγελίες κάτω από τα βίντεο</string>
+ <string name="revanced_hide_compact_banner_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_compact_banner_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_movies_section_title">Ενότητα ταινιών</string>
+ <string name="revanced_hide_movies_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_movies_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_feed_survey_title">Έρευνες στη ροή</string>
+ <string name="revanced_hide_feed_survey_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_feed_survey_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_community_guidelines_title">Οδηγίες κοινότητας</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Οδηγίες κοινότητας συνδρομητών</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ενότητα μελών καναλιού</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_emergency_box_title">Πλαίσια έκτακτης ανάγκης</string>
+ <string name="revanced_hide_emergency_box_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_emergency_box_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_info_panels_title">Πάνελ πληροφοριών</string>
+ <string name="revanced_hide_info_panels_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_info_panels_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_medical_panels_title">Πάνελ Ιατρικών Πληροφοριών</string>
+ <string name="revanced_hide_medical_panels_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_medical_panels_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_channel_bar_title">Γραμμή καναλιού</string>
+ <string name="revanced_hide_channel_bar_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_channel_bar_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_playables_title">Παιχνίδια YouTube</string>
+ <string name="revanced_hide_playables_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_playables_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_quick_actions_title">Γρήγορες ενέργειες σε πλήρη οθόνη</string>
+ <string name="revanced_hide_quick_actions_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_quick_actions_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_related_videos_title">Σχετικά βίντεο στις γρήγορες ενέργειες</string>
+ <string name="revanced_hide_related_videos_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_related_videos_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_image_shelf_title">Ενότητα εικόνων στα αποτελέσματα αναζήτησης</string>
+ <string name="revanced_hide_image_shelf_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_image_shelf_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_latest_posts_ads_title">Τελευταίες δημοσιεύσεις</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_mix_playlists_title">Λίστες αναπαραγωγής μίξης</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_artist_cards_title">Κάρτες καλλιτεχνών</string>
+ <string name="revanced_hide_artist_cards_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_artist_cards_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_chips_shelf_title">Ενότητα σχετιζόμενων λέξεων</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_attributes_section_title">Ενότητα χαρακτηριστικών</string>
+ <string name="revanced_hide_attributes_section_summary_on">«Προτεινόμενα μέρη», Παιχνίδια και Μουσικές ενότητες είναι κρυμμένα</string>
+ <string name="revanced_hide_attributes_section_summary_off">«Προτεινόμενα μέρη», Παιχνίδια και Μουσικές ενότητες εμφανίζονται</string>
+ <string name="revanced_hide_chapters_section_title">Ενότητα Κεφαλαίων</string>
+ <string name="revanced_hide_chapters_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_chapters_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_podcast_section_title">Ενότητα «Εξερεύνηση του podcast»</string>
+ <string name="revanced_hide_podcast_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_podcast_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_info_cards_section_title">Ενότητα καρτών πληροφοριών</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_transcript_section_title">Ενότητα Απομαγνητοφώνησης</string>
+ <string name="revanced_hide_transcript_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_transcript_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_description_components_screen_title">Περιγραφή βίντεο</string>
+ <string name="revanced_hide_description_components_screen_summary">Απόκρυψη ή εμφάνιση στοιχείων περιγραφής βίντεο</string>
+ <string name="revanced_custom_filter_screen_title">Προσαρμοσμένο φίλτρο</string>
+ <string name="revanced_custom_filter_screen_summary">Απόκρυψη στοιχείων χρησιμοποιώντας προσαρμοσμένα φίλτρα</string>
+ <string name="revanced_custom_filter_title">Χρήση προσαρμοσμένου φίλτρου</string>
+ <string name="revanced_custom_filter_summary_on">Το προσαρμοσμένο φίλτρο είναι ενεργοποιημένο</string>
+ <string name="revanced_custom_filter_summary_off">Το προσαρμοσμένο φίλτρο είναι απενεργοποιημένο</string>
+ <string name="revanced_custom_filter_strings_title">Προσαρμοσμένο φίλτρο</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Λίστα από συμβολοσειρές στοιχείων για φιλτράρισμα, διαχωρισμένες η μία κάτω από την άλλη</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Μη έγκυρο προσαρμοσμένο φίλτρο: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Απόκρυψη περιεχομένου λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Απόκρυψη βίντεο ροής και αναζήτησης χρησιμοποιώντας φίλτρα λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_home_title">Φιλτράρισμα αρχικής σελίδας</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Τα βίντεο στην αρχική σελίδα φιλτράρονται με τη χρήση λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Τα βίντεο στην αρχική σελίδα δε φιλτράρονται από λέξεις-κλειδιά</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Φιλτράρισμα σελίδας εγγραφών</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Τα βίντεο στη σελίδα εγγραφών φιλτράρονται με τη χρήση λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Τα βίντεο στη σελίδα εγγραφών δε φιλτράρονται από λέξεις-κλειδιά</string>
+ <string name="revanced_hide_keyword_content_search_title">Φιλτράρισμα αποτελεσμάτων αναζήτησης</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Τα αποτελέσματα αναζήτησης φιλτράρονται με τη χρήση λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Τα αποτελέσματα αναζήτησης δε φιλτράρονται από λέξεις-κλειδιά</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Λέξεις-κλειδιά για απόκρυψη</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Λέξεις-κλειδιά και φράσεις προς απόκρυψη, διαχωρισμένες η μία κάτω από την άλλη\n\nΔώστε προσοχή στα πεζά και κεφάλαια γράμματα διότι ισχύει ευαισθησία πεζότητας (π.χ.: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Σχετικά με το φιλτράρισμα λέξεων-κλειδιών</string>
+ <string name="revanced_hide_keyword_content_about_summary">Οι καρτέλες «Αρχική», «Εγγραφές» και τα αποτελέσματα αναζήτησης φιλτράρονται για απόκρυψη περιεχομένου που ταιριάζει με τις λέξεις-κλειδιά\n\nΠεριορισμοί\n• Κάποια Shorts ενδέχεται να μην κρύβονται\n• Κάποια στοιχεία UI ενδέχεται να μην κρύβονται\n• Η αναζήτηση για μια λέξη-κλειδί ενδέχεται να μην εμφανίζει κανένα αποτέλεσμα</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Μη έγκυρη λέξη-κλειδί. Αδυναμία χρήσης: \'%s\' ως φίλτρο</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Μη έγκυρη λέξη-κλειδί. Το \'%1$s\' είναι μικρότερο από %2$d χαρακτήρες</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Η λέξη «$s» είναι τόσο ευρεία που θα κρύψει όλα τα βίντεο</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Γενικές διαφημίσεις</string>
+ <string name="revanced_hide_general_ads_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_general_ads_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_fullscreen_ads_title">Διαφημίσεις πλήρους οθόνης</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Οι διαφημίσεις πλήρους οθόνης είναι κρυμμένες\n\nΑυτή η δυνατότητα είναι διαθέσιμη μόνο για παλαιότερες συσκευές</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Οι διαφημίσεις πλήρους οθόνης εμφανίζονται</string>
+ <string name="revanced_hide_buttoned_ads_title">Διαφημίσεις κουμπιών</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ετικέτες προώθησης επί πληρωμή</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Κάρτες αυτοπροώθησης</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_products_banner_title">Διαφημίσεις προβολής προϊόντων</string>
+ <string name="revanced_hide_products_banner_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_products_banner_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shopping_links_title">Σύνδεσμοι αγορών στην περιγραφή βίντεο</string>
+ <string name="revanced_hide_shopping_links_summary_on">Κρυμμένοι</string>
+ <string name="revanced_hide_shopping_links_summary_off">Εμφανίζονται</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Κουμπί «Επίσκεψη καταστήματος» στις σελίδες καναλιών</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_web_search_results_title">Αποτελέσματα αναζήτησης στο διαδίκτυο</string>
+ <string name="revanced_hide_web_search_results_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_web_search_results_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_merchandise_banners_title">Εμβλήματα εμπορευμάτων</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Η απόκρυψη διαφημίσεων πλήρους οθόνης λειτουργεί μόνο με παλαιότερες συσκευές</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Προωθήσεις για απόκτηση YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_get_premium_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Διαφημίσεις βίντεο</string>
+ <string name="revanced_hide_video_ads_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_video_ads_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Η διεύθυνση URL αντιγράφηκε στο πρόχειρο</string>
+ <string name="revanced_share_copy_url_timestamp_success">Η διεύθυνση URL αντιγράφηκε με χρονική σήμανση</string>
+ <string name="revanced_copy_video_url_title">Εμφάνιση κουμπιού αντιγραφής URL βίντεο</string>
+ <string name="revanced_copy_video_url_summary_on">Το κουμπί εμφανίζεται. Πατήστε για αντιγραφή του συνδέσμου βίντεο ή πατήστε παρατεταμένα για αντιγραφή του συνδέσμου βίντεο με χρονική σήμανση</string>
+ <string name="revanced_copy_video_url_summary_off">Το κουμπί δεν εμφανίζεται</string>
+ <string name="revanced_copy_video_url_timestamp_title">Εμφάνιση κουμπιού αντιγραφής URL με χρονική σήμανση</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Το κουμπί εμφανίζεται. Πατήστε για αντιγραφή του συνδέσμου βίντεο με χρονική σήμανση ή πατήστε παρατεταμένα για αντιγραφή του συνδέσμου βίντεο χωρίς χρονική σήμανση</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Το κουμπί δεν εμφανίζεται</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Παράθυρο ηλικιακού περιορισμού</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Κρυμμένο</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Εμφανίζεται</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Αυτό δεν παρακάμπτει τον ηλικιακό περιορισμό. Απλώς τον αποδέχεται αυτόματα.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Εξωτερικές λήψεις</string>
+ <string name="revanced_external_downloader_screen_summary">Ρυθμίσεις για χρήση εξωτερικού προγράμματος λήψης</string>
+ <string name="revanced_external_downloader_title">Εμφάνιση κουμπιού εξωτερικής λήψης</string>
+ <string name="revanced_external_downloader_summary_on">Το κουμπί λήψης εμφανίζεται στην οθόνη αναπαραγωγής</string>
+ <string name="revanced_external_downloader_summary_off">Το κουμπί λήψης δεν εμφανίζεται στην οθόνη αναπαραγωγής</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Τροποποίηση ενέργειας του κουμπιού «Λήψη»</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Το κουμπί «Λήψη» θα ανοίγει το εξωτερικό πρόγραμμα λήψης σας</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Το κουμπί «Λήψη» θα ανοίγει το ενσωματωμένο πρόγραμμα λήψης του YouTube</string>
+ <string name="revanced_external_downloader_name_title">Όνομα πακέτου προγράμματος λήψης</string>
+ <string name="revanced_external_downloader_name_summary">Το όνομα πακέτου της εγκατεστημένης σας εξωτερικής εφαρμογής λήψης όπως το NewPipe ή το Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">Το %s δεν είναι εγκατεστημένο. Παρακαλούμε εγκαταστήστε το.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Απενεργοποίηση ακριβής αναζήτησης</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Η χειρονομία αναζήτησης καρέ-καρέ είναι απενεργοποιημένη</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Η χειρονομία αναζήτησης καρέ-καρέ είναι ενεργοποιημένη</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Πάτημα γραμμής προόδου</string>
+ <string name="revanced_seekbar_tapping_summary_on">Το πάτημα στη γραμμή προόδου είναι ενεργοποιημένο</string>
+ <string name="revanced_seekbar_tapping_summary_off">Το πάτημα στη γραμμή προόδου είναι απενεργοποιημένο</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Σάρωση οθόνης για φωτεινότητα</string>
+ <string name="revanced_swipe_brightness_summary_on">Η δυνατότητα αλλαγής φωτεινότητας με χειρονομία κατακόρυφης σάρωσης στην αριστερή πλευρά της οθόνης αναπαραγωγής είναι ενεργοποιημένη</string>
+ <string name="revanced_swipe_brightness_summary_off">Η δυνατότητα αλλαγής φωτεινότητας με χειρονομία σάρωσης στην οθόνη αναπαραγωγής είναι απενεργοποιημένη</string>
+ <string name="revanced_swipe_volume_title">Σάρωση οθόνης για ένταση ήχου</string>
+ <string name="revanced_swipe_volume_summary_on">Η δυνατότητα αλλαγής έντασης ήχου με χειρονομία κατακόρυφης σάρωσης στη δεξιά πλευρά της οθόνης αναπαραγωγής είναι ενεργοποιημένη</string>
+ <string name="revanced_swipe_volume_summary_off">Η δυνατότητα αλλαγής έντασης ήχου με χειρονομία σάρωσης στην οθόνη αναπαραγωγής είναι απενεργοποιημένη</string>
+ <string name="revanced_swipe_press_to_engage_title">Λειτουργία πάτημα-για-σάρωση</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Η λειτουργία πάτημα-για-σάρωση είναι ενεργοποιημένη, πατήστε παρατεταμένα για χειρονομίες σάρωσης</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Η λειτουργία πάτημα-για-σάρωση είναι απενεργοποιημένη, πατήστε παρατεταμένα για χειρονομίες σάρωσης</string>
+ <string name="revanced_swipe_haptic_feedback_title">Απόκριση δόνησης</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Η απόκριση δόνησης είναι ενεργοποιημένη</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Η απόκριση δόνησης είναι απενεργοποιημένη</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Αποθήκευση και επαναφορά φωτεινότητας</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Αποθήκευση και επαναφορά φωτεινότητας κατά την έξοδο ή την είσοδο σε πλήρη οθόνη</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Να μην αποθηκεύεται και να επαναφέρεται η φωτεινότητα κατά την έξοδο ή την είσοδο σε πλήρη οθόνη</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Ενεργοποίηση χειρονομίας αυτόματης φωτεινότητας</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Η σάρωση προς τα κάτω στη χαμηλότερη τιμή της χειρονομίας φωτεινότητας ενεργοποιεί την αυτόματη φωτεινότητα</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Η σάρωση προς τα κάτω στη χαμηλότερη τιμή δεν ενεργοποιεί την αυτόματη φωτεινότητα</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Αυτόματη φωτεινότητα</string>
+ <string name="revanced_swipe_overlay_timeout_title">Χρονικό όριο εμφάνισης πλαισίου σάρωσης</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Το χρονικό διάστημα χιλιοστών του δευτερολέπτου που είναι ορατό το πλαίσιο σάρωσης</string>
+ <string name="revanced_swipe_text_overlay_size_title">Μέγεθος κειμένου πλαισίου σάρωσης</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Το μέγεθος κειμένου του πλαισίου σάρωσης</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Ορατότητα πλαισίου σάρωσης</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Η ορατότητα του πλαισίου σάρωσης στο παρασκήνιο</string>
+ <string name="revanced_swipe_threshold_title">Κατώτατο όριο μεγέθους σάρωσης</string>
+ <string name="revanced_swipe_threshold_summary">Η ελάχιστη απόσταση που θα διανύσετε με το δάκτυλο σας για να είναι αναγνωρίσιμη η χειρονομία σάρωσης</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Απενεργοποίηση αυτόματων υπότιτλων</string>
+ <string name="revanced_auto_captions_summary_on">Οι αυτόματοι υπότιτλοι είναι απενεργοποιημένοι</string>
+ <string name="revanced_auto_captions_summary_off">Οι αυτόματοι υπότιτλοι είναι ενεργοποιημένοι</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Κουμπιά ενεργειών</string>
+ <string name="revanced_hide_buttons_screen_summary">Απόκρυψη ή εμφάνιση κουμπιών κάτω από βίντεο</string>
+ <string name="revanced_hide_like_dislike_button_title">Κουμπιά «Μου αρέσει» και «Δεν μου αρέσει»</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Εμφανίζονται</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Κουμπί «Κοινοποίηση»</string>
+ <string name="revanced_hide_share_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_share_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Μενού «Αναφορά»</string>
+ <string name="revanced_hide_report_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_report_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Κουμπί «Remix»</string>
+ <string name="revanced_hide_remix_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_remix_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Κουμπί «Λήψη»</string>
+ <string name="revanced_hide_download_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_download_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Κουμπί «Σας ευχαριστούμε»</string>
+ <string name="revanced_hide_thanks_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_thanks_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Κουμπί «Κλιπ»</string>
+ <string name="revanced_hide_clip_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_clip_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Κουμπί «Αποθήκευση»</string>
+ <string name="revanced_hide_playlist_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_playlist_button_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Κουμπί αυτόματης αναπαραγωγής</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Κουμπί υποτίτλων</string>
+ <string name="revanced_hide_captions_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_captions_button_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Κουμπί μετάδοσης</string>
+ <string name="revanced_hide_cast_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_cast_button_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Κουμπιά γραμμής πλοήγησης</string>
+ <string name="revanced_navigation_buttons_screen_summary">Απόκρυψη ή αλλαγή κουμπιών στη γραμμή πλοήγησης</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Κουμπί «Αρχική»</string>
+ <string name="revanced_hide_home_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_home_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Κουμπί «Shorts»</string>
+ <string name="revanced_hide_shorts_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_button_summary_off">Εμφανίζεται</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Κουμπί «Δημιουργία»</string>
+ <string name="revanced_hide_create_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_create_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Κουμπί «Εγγραφές»</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Εμφανίζεται</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Εναλλαγή κουμπιού «Δημιουργία» με κουμπί «Ειδοποιήσεις»</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Γίνεται εναλλαγή του κουμπιού δημιουργίας σε κουμπί ειδοποιήσεων\n\nΣημείωση: Ενεργοποιώντας την εναλλαγή θα κρύβονται και οι διαφημίσεις βίντεο</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Δε γίνεται εναλλαγή του κουμπιού δημιουργίας σε κουμπί ειδοποιήσεων</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ονομασίες κουμπιών γραμμής πλοήγησης</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Αναδυόμενο μενού ρυθμίσεων</string>
+ <string name="revanced_hide_player_flyout_summary">Απόκρυψη ή εμφάνιση στοιχείων του αναδυόμενου μενού στην οθόνη αναπαραγωγής</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Μενού «Υπότιτλοι»</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Εμφανίζεται</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Μενού «Πρόσθετες ρυθμίσεις»</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Εμφανίζεται</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Μενού «Επανάληψη βίντεο»</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Εμφανίζεται</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Μενού «Λειτουργία περιβάλλοντος»</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Εμφανίζεται</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Μενού «Βοήθεια & σχόλια»</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Εμφανίζεται</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Μενού «Ταχύτητα αναπαραγωγής»</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Εμφανίζεται</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Μενού «Περισσότερα»</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Εμφανίζεται</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Μενού «Οθόνη κλειδώματος»</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Εμφανίζεται</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Μενού «Κομμάτι ήχου»</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Εμφανίζεται</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Μενού «Προβολή σε VR»</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Κουμπιά προηγούμενου & επόμενου βίντεο</string>
+ <string name="revanced_hide_player_buttons_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_player_buttons_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Κάρτες άλμπουμ</string>
+ <string name="revanced_hide_album_cards_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_album_cards_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Σχόλια</string>
+ <string name="revanced_comments_screen_summary">Απόκρυψη ή εμφάνιση στοιχείων στα σχόλια</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ετικέτα «Σχόλια από μέλη»</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_comments_section_title">Ενότητα σχολίων</string>
+ <string name="revanced_hide_comments_section_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_comments_section_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Κουμπί «Δημιουργία Short»</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_comments_preview_comment_title">Προεπισκόπηση σχολίου</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_comments_thanks_button_title">Κουμπί «Σας ευχαριστούμε»</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Κουμπιά χρονοσήμανσης και emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Πλαίσιο δωρεών</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Κάρτες τελικής οθόνης</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Γραμμή φίλτρων</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Απόκρυψη η εμφάνιση της γραμμής φίλτρων στη ροή, αναζήτηση και τα σχετικά βίντεο</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Απόκρυψη στη ροή</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Απόκρυψη στα αποτελέσματα αναζήτησης</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Απόκρυψη στα σχετικά βίντεο</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Αιωρούμενο κουμπί μικροφώνου</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Απενεργοποίηση λειτουργίας περιβάλλοντος σε πλήρη οθόνη</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Η λειτουργία περιβάλλοντος σε πλήρη οθόνη είναι απενεργοποιημένη</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Η λειτουργία περιβάλλοντος σε πλήρη οθόνη είναι ενεργοποιημένη</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Κάρτες πληροφοριών</string>
+ <string name="revanced_hide_info_cards_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_info_cards_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Απενεργοποίηση κινήσεων αριθμών</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Οι αριθμοί δε θα κινούνται αυξανόμενοι εκθετικά</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Οι αριθμοί κινούνται αυξανόμενοι εκθετικά</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Γραμμή προόδου στην οθόνη αναπαραγωγής</string>
+ <string name="revanced_hide_seekbar_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_seekbar_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Γραμμή προόδου σε μικρογραφίες βίντεο</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Shorts στην αρχική σελίδα</string>
+ <string name="revanced_hide_shorts_home_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_shorts_home_summary_off">Εμφανίζονται</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Shorts στην καρτέλα εγγραφών</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_search_title">Shorts στα αποτελέσματα αναζήτησης</string>
+ <string name="revanced_hide_shorts_search_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_shorts_search_summary_off">Εμφανίζονται</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Κουμπί «Συμμετοχή»</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Εμφανίζεται</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Κουμπί «Εγγραφή»</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Κουμπιά εμφάνισης κατά την παύση</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_shop_button_title">Κουμπί καταστήματος</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Κουμπί «Αγορά Super Thanks»</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ετικέτες προϊόντων</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_location_label_title">Ετικέτα τοποθεσίας</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Κουμπί αποθήκευσης ήχου σε λίστα αναπαραγωγής</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Προτάσεις αναζήτησης</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_like_button_title">Κουμπί «Μου αρέσει»</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Κουμπί «Δεν μου αρέσει»</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_comments_button_title">Κουμπί «Σχόλια»</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Εμφανίζεται</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Κουμπί «Remix»</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Εμφανίζεται</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Κουμπί «Κοινοποίηση»</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_info_panel_title">Πίνακας πληροφοριών</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Κρυμμένος</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Γραμμή καναλιού</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_video_title_title">Τίτλοι βίντεο</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Κρυμμένοι</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ετικέτες μεταδεδομένων ήχου</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ετικέτες συνδέσμων πλήρους βίντεο</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Κρυμμένες</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Εμφανίζονται</string>
+ <string name="revanced_hide_shorts_sound_button_title">Κουμπί ήχου</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Κρυμμένο</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Εμφανίζεται</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Γραμμή πλοήγησης</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Η γραμμή πλοήγησης θα είναι κρυμμένη κατά την αναπαραγωγή Shorts</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Η γραμμή πλοήγησης θα εμφανίζεται κατά την αναπαραγωγή Shorts</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Τελική οθόνη προτεινόμενων βίντεο</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Κρυμμένη</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Χρονική πρόοδος βίντεο</string>
+ <string name="revanced_hide_timestamp_summary_on">Κρυμμένη</string>
+ <string name="revanced_hide_timestamp_summary_off">Εμφανίζεται</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Αναδυόμενα παράθυρα οθόνης αναπαραγωγής</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Κρυμμένα</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Εμφανίζονται</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Αδιαφάνεια φόντου οθόνης αναπαραγωγής</string>
+ <string name="revanced_player_overlay_opacity_summary">Τιμή αδιαφάνειας μεταξύ 0-100, όπου το 0 είναι διαφανές</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Η αδιαφάνεια φόντου οθόνης αναπαραγωγής πρέπει να είναι μεταξύ 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Κρυμμένα</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislike προσωρινά μη διαθέσιμα (καθυστέρηση API)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Δεδομένα dislike μη διαθέσιμα (κατάσταση %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Dislike μη διαθέσιμα (το όριο API έχει επιτευχθεί)</string>
+ <string name="revanced_ryd_failure_generic">Δεδομένα dislike μη διαθέσιμα (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Επαναφορτώστε το βίντεο για να ψηφίσετε χρησιμοποιώντας το Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Τα «Δεν μου αρέσει» εμφανίζονται</string>
+ <string name="revanced_ryd_enable_summary_off">Τα «Δεν μου αρέσει» δεν εμφανίζονται</string>
+ <string name="revanced_ryd_shorts_title">Εμφάνιση στα Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Τα «Δεν μου αρέσει» εμφανίζονται στα Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Τα «Δεν μου αρέσει» εμφανίζονται στα Shorts\n\nΠεριορισμός: Τα «Δεν μου αρέσει» ενδέχεται να μην εμφανίζονται σε λειτουργία ανώνυμης περιήγησης</string>
+ <string name="revanced_ryd_shorts_summary_off">Τα «Δεν μου αρέσει» δεν εμφανίζονται στα Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Εμφάνιση ως ποσοστό</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Τα «Δεν μου αρέσει» εμφανίζονται ως ποσοστό</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Τα «Δεν μου αρέσει» εμφανίζονται ως αριθμός</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Κουμπί «Μου αρέσει» μικρότερου στυλ</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Το κουμπί «Μου αρέσει» είναι διαμορφωμένο για ελάχιστο μέγεθος</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Το κουμπί «Μου αρέσει» είναι διαμορφωμένο για καλύτερη εμφάνιση</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Εμφάνιση μηνύματος αν το API δεν είναι διαθέσιμο</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Να εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το Return YouTube Dislike δεν είναι διαθέσιμο</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Να μην εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το Return YouTube Dislike δεν είναι διαθέσιμο</string>
+ <string name="revanced_ryd_about">Σχετικά με</string>
+ <string name="revanced_ryd_attribution_summary">Τα δεδομένα Dislike παρέχονται από το API του Return YouTube Dislike. Πατήστε εδώ για να μάθετε περισσότερα</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Στατιστικά ReturnYouTubeDislike API αυτής της συσκευής</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Χρόνος απόκρισης API, μέσος όρος</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Χρόνος απόκρισης API, ελάχιστος</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Χρόνος απόκρισης API, μέγιστος</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Χρόνος απόκρισης API, τελευταίου βίντεο</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Δεδομένα dislike προσωρινά μη διαθέσιμα - Όριο ρυθμού πελάτη API σε ισχύ</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API ανάκτηση ψήφων, αριθμός κλήσεων</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Δεν πραγματοποιήθηκαν κλήσεις δικτύου</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Πραγματοποιήθηκαν %d κλήσεις δικτύου</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API ανάκτηση ψήφων, αριθμός αποτυχιών</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Δεν απέτυχαν κλήσεις δικτύου</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">απέτυχαν %d κλήσεις δικτύου </string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Όρια πελατών API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Δεν ανιχνεύτηκαν περιορισμοί ορίου πελάτη</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Ανιχνεύθηκαν %d φορές περιορισμοί ορίου πελάτη</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d χιλιοστά δευτερολέπτου</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Ευρεία γραμμή αναζήτησης</string>
+ <string name="revanced_wide_searchbar_summary_on">Η ευρεία γραμμή αναζήτησης είναι ενεργοποιημένη</string>
+ <string name="revanced_wide_searchbar_summary_off">Η ευρεία γραμμή αναζήτησης είναι απενεργοποιημένη</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Παλιές μικρογραφίες γραμμής προόδου</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Οι μικρογραφίες προεπισκόπησης θα εμφανίζονται πάνω από τη γραμμή προόδου</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Οι μικρογραφίες προεπισκόπησης θα εμφανίζονται σε πλήρη οθόνη</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Ενεργοποίηση του SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">Το SponsorBlock είναι ένα σύστημα που προέρχεται από το κοινό για παράληψη ενοχλητικών τμημάτων βίντεο YouTube</string>
+ <string name="revanced_sb_appearance_category">Εμφάνιση</string>
+ <string name="revanced_sb_enable_voting">Κουμπί ψηφοφορίας τμημάτων</string>
+ <string name="revanced_sb_enable_voting_sum_on">Το κουμπί ψηφοφορίας τμημάτων εμφανίζεται</string>
+ <string name="revanced_sb_enable_voting_sum_off">Το κουμπί ψηφοφορίας τμημάτων δεν εμφανίζεται</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Κουμπί παράλειψης μικρότερου στυλ</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Το κουμπί παράλειψης είναι διαμορφωμένο για ελάχιστο μέγεθος</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Το κουμπί παράλειψης είναι διαμορφωμένο για καλύτερη εμφάνιση</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Αυτόματη απόκρυψη κουμπιού παράλειψης</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Το κουμπί παράλειψης κρύβεται μετά από μερικά δευτερόλεπτα</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Το κουμπί παράλειψης εμφανίζεται καθ\' όλη τη διάρκεια του τμήματος</string>
+ <string name="revanced_sb_general_skiptoast">Εμφάνιση μηνύματος κατά την αυτόματη παράλειψη</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Να εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης όταν ένα τμήμα παραλείπεται αυτόματα. Πατήστε για να δείτε ένα παράδειγμα</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Να μην εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης. Πατήστε για να δείτε ένα παράδειγμα</string>
+ <string name="revanced_sb_general_time_without">Εμφάνιση μήκους βίντεο χωρίς τα τμήματα</string>
+ <string name="revanced_sb_general_time_without_sum_on">Εμφανίζεται το μήκος βίντεο μείον όλα τα τμήματα, σε παρένθεση δίπλα στο πλήρες μήκος βίντεο</string>
+ <string name="revanced_sb_general_time_without_sum_off">Εμφανίζεται το πλήρες μήκος του βίντεο</string>
+ <string name="revanced_sb_create_segment_category">Δημιουργία νέων τμημάτων</string>
+ <string name="revanced_sb_enable_create_segment">Κουμπί δημιουργίας νέου τμήματος</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Το κουμπί δημιουργίας νέου τμήματος εμφανίζεται</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Το κουμπί δημιουργίας νέου τμήματος δεν εμφανίζεται</string>
+ <string name="revanced_sb_general_adjusting">Ρύθμιση βήματος νέου τμήματος</string>
+ <string name="revanced_sb_general_adjusting_sum">Ο αριθμός των χιλιοστών του δευτερολέπτου που θα μετακινείται η ρύθμιση χρόνου κατά τη δημιουργία νέων τμημάτων</string>
+ <string name="revanced_sb_general_adjusting_invalid">Η τιμή πρέπει να είναι θετικός αριθμός</string>
+ <string name="revanced_sb_guidelines_preference_title">Προβολή οδηγιών</string>
+ <string name="revanced_sb_guidelines_preference_sum">Οι οδηγίες περιέχουν κανόνες και συμβουλές σχετικά με την υποβολή τμημάτων</string>
+ <string name="revanced_sb_guidelines_popup_title">Ακολουθήστε τις οδηγίες</string>
+ <string name="revanced_sb_guidelines_popup_content">Διαβάστε τις οδηγίες του SponsorBlock πριν δημιουργήσετε νέα τμήματα</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Τις έχω διαβάσει</string>
+ <string name="revanced_sb_guidelines_popup_open">Δείξτε μου</string>
+ <string name="revanced_sb_general">Γενικά</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Εμφάνιση μηνύματος αν το API δεν είναι διαθέσιμο</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Να εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το SponsorBlock δεν είναι διαθέσιμο</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Να μην εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το SponsorBlock δεν είναι διαθέσιμο</string>
+ <string name="revanced_sb_general_skipcount">Mετρητής παραλείψεων τμημάτων</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Επιτρέπει στον πίνακα κατάταξης SponsorBlock να γνωρίζει πόσος χρόνος εξοικονομήθηκε. Αποστέλλεται ένα μήνυμα στον πίνακα κατάταξης κάθε φορά που παραλείπεται ένα τμήμα</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Ο μετρητής παραλείψεων δεν είναι ενεργός</string>
+ <string name="revanced_sb_general_min_duration">Ελάχιστη διάρκεια τμήματος</string>
+ <string name="revanced_sb_general_min_duration_sum">Τμήματα μικρότερα από την καθορισμένη τιμή (σε δευτερόλεπτα) δεν θα εμφανίζονται ούτε θα παραλείπονται</string>
+ <string name="revanced_sb_general_uuid">Το ιδιωτικό σας αναγνωριστικό χρήστη</string>
+ <string name="revanced_sb_general_uuid_sum">Αυτό πρέπει να μείνει μυστικό. Είναι σαν έναν κωδικό που δεν πρέπει να μοιραστείτε με κανέναν. Εάν κάποιος αποκτήσει αυτόν τον κωδικό, μπορεί να σας υποδυθεί</string>
+ <string name="revanced_sb_general_uuid_invalid">Το ιδιωτικό αναγνωριστικό χρήστη πρέπει να είναι τουλάχιστον 30 χαρακτήρες</string>
+ <string name="revanced_sb_general_api_url">Αλλαγή διεύθυνσης API</string>
+ <string name="revanced_sb_general_api_url_sum">Η διεύθυνση που χρησιμοποιεί το SponsorBlock για να κάνει κλήσεις στο διακομιστή</string>
+ <string name="revanced_sb_api_url_reset">Η διεύθυνση URL του API επαναφέρθηκε</string>
+ <string name="revanced_sb_api_url_invalid">Η διεύθυνση URL του API δεν είναι έγκυρη</string>
+ <string name="revanced_sb_api_url_changed">Η διεύθυνση URL του API άλλαξε</string>
+ <string name="revanced_sb_settings_ie">Εισαγωγή/Εξαγωγή ρυθμίσεων</string>
+ <string name="revanced_sb_settings_copy">Αντιγραφή</string>
+ <string name="revanced_sb_settings_ie_sum">Οι ρυθμίσεις SponsorBlock σας σε μορφή JSON που μπορούν να εισαχθούν/εξαχθούν στο ReVanced και σε άλλες πλατφόρμες SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Οι ρυθμίσεις SponsorBlock σας σε μορφή JSON που μπορούν να εισαχθούν/εξαχθούν στο ReVanced και σε άλλες πλατφόρμες SponsorBlock. Αυτό περιλαμβάνει το ιδιωτικό σας αναγνωριστικό χρήστη. Φροντίστε να το μοιραστείτε με σύνεση</string>
+ <string name="revanced_sb_settings_import_successful">Οι ρυθμίσεις εισήχθησαν επιτυχώς</string>
+ <string name="revanced_sb_settings_import_failed">Η εισαγωγή απέτυχε: %s</string>
+ <string name="revanced_sb_settings_export_failed">Η εξαγωγή απέτυχε: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Οι ρυθμίσεις σας περιέχουν ένα ιδιωτικό αναγνωριστικό χρήστη SponsorBlock.\n\nΑυτό είναι σαν έναν κωδικό πρόσβασης και δεν πρέπει ποτέ να το μοιραστείτε.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Να μην εμφανιστεί ξανά</string>
+ <string name="revanced_sb_diff_segments">Αλλαγή συμπεριφοράς τμημάτων</string>
+ <string name="revanced_sb_segments_sponsor">Χορηγός</string>
+ <string name="revanced_sb_segments_sponsor_sum">Προώθηση επί πληρωμή, παραπομπές επί πληρωμή και άμεσες διαφημίσεις. Όχι για αυτοπροώθηση ή δωρεάν αναφορές σε σκοπούς/δημιουργούς/ιστοσελίδες/προϊόντα που τους αρέσουν</string>
+ <string name="revanced_sb_segments_selfpromo">Αυτοπροώθηση Αφιλοκερδώς</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Παρόμοιο με το «Χορηγός» αλλά για μη κερδοσκοπικό σκοπό ή για προσωπική προώθηση. Περιλαμβάνει τμήματα σχετικά με εμπορεύματα, δωρεές ή πληροφορίες για το με ποιους συνεργάστηκαν</string>
+ <string name="revanced_sb_segments_interaction">Υπενθύμιση Αλληλεπίδρασης (Εγγραφή)</string>
+ <string name="revanced_sb_segments_interaction_sum">Όταν υπάρχει μια σύντομη υπενθύμιση για να προσθέσετε το βίντεο στα βίντεο που σας αρέσουν, να εγγραφείτε ή να τους ακολουθήσετε στην μέση του περιεχομένου. Αν είναι μεγάλο ή αφορά κάτι συγκεκριμένο, θα πρέπει να είναι στην κατηγορία αυτοπροώθησης</string>
+ <string name="revanced_sb_segments_highlight">Αποκορύφωμα</string>
+ <string name="revanced_sb_segments_highlight_sum">Το μέρος του βίντεο που ψάχνουν οι περισσότεροι άνθρωποι</string>
+ <string name="revanced_sb_segments_intro">Διάλειμμα/Εισαγωγή</string>
+ <string name="revanced_sb_segments_intro_sum">Χρονικό διάστημα χωρίς πραγματικό περιεχόμενο. Θα μπορούσε να είναι μια παύση, ένα στατικό καρέ ή μια επαναλαμβανόμενη κίνηση. Δεν περιλαμβάνει μεταβάσεις που περιέχουν πληροφορίες</string>
+ <string name="revanced_sb_segments_outro">Τελική Οθόνη/Συντελεστές</string>
+ <string name="revanced_sb_segments_outro_sum">Όταν εμφανίζονται οι συντελεστές ή τα προτεινόμενα βίντεο των καναλιών. Όχι για επίλογους που περιέχουν πληροφορίες</string>
+ <string name="revanced_sb_segments_preview">Προεπισκόπηση/Περίληψη</string>
+ <string name="revanced_sb_segments_preview_sum">Συλλογή από κλιπ που δείχνουν τι έρχεται ή τι συνέβη στο βίντεο ή σε άλλα βίντεο μιας σειράς, όπου όλες οι πληροφορίες επαναλαμβάνονται αλλού</string>
+ <string name="revanced_sb_segments_filler">Σπατάλη Χρόνου/Αστεία</string>
+ <string name="revanced_sb_segments_filler_sum">Παρεμβατικές σκηνές που προστίθενται μόνο για γέμισμα του βίντεο ή χιούμορ οι οποίες δεν είναι απαραίτητες για την κατανόηση του κύριου περιεχομένου του βίντεο. Δεν περιλαμβάνει τμήματα που παρέχουν συνάφεια ή λεπτομέρειες ως υπόβαθρο</string>
+ <string name="revanced_sb_segments_nomusic">Μουσική: Τμήμα χωρίς μουσική</string>
+ <string name="revanced_sb_segments_nomusic_sum">Μόνο για χρήση σε βίντεο μουσικής. Τμήματα χωρίς μουσική σε βίντεο μουσικής, που δεν καλύπτονται ήδη από άλλη κατηγορία</string>
+ <string name="revanced_sb_skip_button_compact">Παράλειψη</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Αποκορύφωμα</string>
+ <string name="revanced_sb_skip_button_sponsor">Παράλειψη χορηγού</string>
+ <string name="revanced_sb_skip_button_selfpromo">Παράλειψη προώθησης</string>
+ <string name="revanced_sb_skip_button_interaction">Παράλειψη αλληλεπίδρασης</string>
+ <string name="revanced_sb_skip_button_highlight">Μετάβαση στο αποκορύφωμα</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Παράλειψη εισαγωγής</string>
+ <string name="revanced_sb_skip_button_intro_middle">Παράλειψη διακοπής</string>
+ <string name="revanced_sb_skip_button_intro_end">Παράλειψη διακοπής</string>
+ <string name="revanced_sb_skip_button_outro">Παράλειψη επιλόγου</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Παράλειψη προεπισκόπησης</string>
+ <string name="revanced_sb_skip_button_preview_middle">Παράλειψη προεπισκόπησης</string>
+ <string name="revanced_sb_skip_button_preview_end">Παράλειψη περίληψης</string>
+ <string name="revanced_sb_skip_button_filler">Παράλειψη σπατάλης χρόνου</string>
+ <string name="revanced_sb_skip_button_nomusic">Παράλειψη μη-μουσικού</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Παράλειψη τμήματος</string>
+ <string name="revanced_sb_skipped_sponsor">Παραλείφθηκε ο χορηγός</string>
+ <string name="revanced_sb_skipped_selfpromo">Παραλείφθηκε η αυτοπροώθηση</string>
+ <string name="revanced_sb_skipped_interaction">Παραλείφθηκε η ενοχλητική υπενθύμιση</string>
+ <string name="revanced_sb_skipped_highlight">Έγινε μετάβαση στο αποκορύφωμα</string>
+ <string name="revanced_sb_skipped_intro_beginning">Παραλείφθηκε η εισαγωγή</string>
+ <string name="revanced_sb_skipped_intro_middle">Παραλείφθηκε η διακοπή</string>
+ <string name="revanced_sb_skipped_intro_end">Παραλείφθηκε η διακοπή</string>
+ <string name="revanced_sb_skipped_outro">Παραλείφθηκε ο επίλογος</string>
+ <string name="revanced_sb_skipped_preview_beginning">Παραλείφθηκε η προεπισκόπηση</string>
+ <string name="revanced_sb_skipped_preview_middle">Παραλείφθηκε η προεπισκόπηση</string>
+ <string name="revanced_sb_skipped_preview_end">Παραλείφθηκε η περίληψη</string>
+ <string name="revanced_sb_skipped_filler">Παραλείφθηκε η σπατάλη χρόνου</string>
+ <string name="revanced_sb_skipped_nomusic">Παραλείφθηκε τμήμα χωρίς μουσική</string>
+ <string name="revanced_sb_skipped_unsubmitted">Παραλήφθηκε μη υποβληθέν τμήμα</string>
+ <string name="revanced_sb_skipped_multiple_segments">Παραλείφθηκαν πολλαπλά τμήματα</string>
+ <string name="revanced_sb_skip_automatically">Αυτόματη παράλειψη</string>
+ <string name="revanced_sb_skip_automatically_once">Αυτόματη παράλειψη μία φορά</string>
+ <string name="revanced_sb_skip_showbutton">Εμφάνιση κουμπιού παράλειψης</string>
+ <string name="revanced_sb_skip_seekbaronly">Εμφάνιση στη γραμμή προόδου</string>
+ <string name="revanced_sb_skip_ignore">Απενεργοποίηση</string>
+ <string name="revanced_sb_submit_failed_invalid">Αδυναμία υποβολής τμήματος: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">Το SponsorBlock είναι προσωρινά εκτός λειτουργίας</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Αδυναμία υποβολής τμήματος (κατάσταση: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Αδυναμία υποβολής τμήματος.\nΌριο συχνότητας (πάρα πολλά από τον ίδιο χρήστη ή την ίδια IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Αδυναμία υποβολής του τμήματος: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Αδυναμία αποστολής του τμήματος.\nΥπάρχει ήδη</string>
+ <string name="revanced_sb_submit_succeeded">Το τμήμα υποβλήθηκε επιτυχώς</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock προσωρινά μη διαθέσιμο (καθυστέρηση API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock προσωρινά μη διαθέσιμο (κατάσταση %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock προσωρινά μη διαθέσιμο</string>
+ <string name="revanced_sb_vote_failed_timeout">Αδυναμία ψηφοφορίας για το τμήμα (χρονοκαθυστέρηση API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Αδυναμία ψηφοφορίας για το τμήμα (κατάσταση: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Αδυναμία ψηφοφορίας για το τμήμα: %s</string>
+ <string name="revanced_sb_vote_upvote">Θετική ψήφος</string>
+ <string name="revanced_sb_vote_downvote">Αρνητική ψήφος</string>
+ <string name="revanced_sb_vote_category">Αλλαγή κατηγορίας</string>
+ <string name="revanced_sb_vote_no_segments">Δεν υπάρχουν τμήματα για να ψηφίσετε</string>
+ <string name="revanced_sb_new_segment_choose_category">Επιλέξτε την κατηγορία του τμήματος</string>
+ <string name="revanced_sb_new_segment_disabled_category">Η κατηγορία είναι απενεργοποιημένη στις ρυθμίσεις. Ενεργοποιήστε την κατηγορία για υποβολή.</string>
+ <string name="revanced_sb_new_segment_title">Νέο τμήμα SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Ορισμός %1$02d:%2$02d:%3$03d ως αρχή ή τέλος ενός νέου τμήματος;</string>
+ <string name="revanced_sb_new_segment_mark_start">αρχή</string>
+ <string name="revanced_sb_new_segment_mark_end">τέλος</string>
+ <string name="revanced_sb_new_segment_now">τώρα</string>
+ <string name="revanced_sb_new_segment_time_start">Χρόνος έναρξης του τμήματος</string>
+ <string name="revanced_sb_new_segment_time_end">Χρόνος λήξης του τμήματος</string>
+ <string name="revanced_sb_new_segment_confirm_title">Είναι σωστοί οι χρόνοι;</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Το τμήμα είναι από\n\n%1$s\nσε\n%2$s\n\n(%3$s)\n\nΈτοιμο για υποβολή;</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Η αρχή πρέπει να είναι πριν από το τέλος</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Σημειώστε δύο σημεία στην γραμμή προόδου πρώτα</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Κάντε προεπισκόπηση του τμήματος, και σιγουρευτείτε ότι παραλείπεται σωστά</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Επεξεργασία χρονισμού του τμήματος χειροκίνητα</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Θέλετε να επεξεργαστείτε τον χρονισμό του τμήματος από την αρχή ή από το τέλος του τμήματος;</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Δόθηκε μη έγκυρος χρόνος</string>
+ <string name="revanced_sb_stats">Στατιστικά</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Στατιστικά προσωρινά μη διαθέσιμα (API εκτός λειτουργίας)</string>
+ <string name="revanced_sb_stats_loading">Φόρτωση...</string>
+ <string name="revanced_sb_stats_sb_disabled">Το SponsorBlock είναι απενεργοποιημένο</string>
+ <string name="revanced_sb_stats_username">Το όνομα χρήστη σας: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Πατήστε για να αλλάξετε το όνομα χρήστη σας</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Αδυναμία αλλαγής ονόματος χρήστη: Κατάσταση: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Το όνομα χρήστη άλλαξε επιτυχώς</string>
+ <string name="revanced_sb_stats_reputation">Η φήμη σας είναι <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Δημιουργήσατε <b>%s</b> τμήματα</string>
+ <string name="revanced_sb_stats_saved_zero">Πίνακας κατάταξης SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Έχετε σώσει τους συνανθρώπους σας από <b>%s</b> τμήματα</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Πατήστε για να δείτε τα παγκόσμια στατιστικά και τους κορυφαίους συνεισφέροντες</string>
+ <string name="revanced_sb_stats_saved_sum">Αυτό είναι <b>%s</b> από τις ζωές τους.<br>Πατήστε για να δείτε τον πίνακα κατάταξης</string>
+ <string name="revanced_sb_stats_self_saved">Έχετε παραλείψει <b>%s</b> τμήματα</string>
+ <string name="revanced_sb_stats_self_saved_sum">Δηλαδή <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Επαναφορά του μετρητή τμημάτων που παραλείφθηκαν;</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s ώρες %2$s λεπτά</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s λεπτά %2$s δευτερόλεπτα</string>
+ <string name="revanced_sb_stats_saved_second_format">%s δευτερόλεπτα</string>
+ <string name="revanced_sb_color_dot_label">Χρώμα:</string>
+ <string name="revanced_sb_color_changed">Το χρώμα άλλαξε</string>
+ <string name="revanced_sb_color_reset">Το χρώμα επαναφέρθηκε</string>
+ <string name="revanced_sb_color_invalid">Μη έγκυρος κωδικός χρώματος</string>
+ <string name="revanced_sb_reset_color">Επαναφορά χρώματος</string>
+ <string name="revanced_sb_reset">Επαναφορά</string>
+ <string name="revanced_sb_about">Σχετικά με</string>
+ <string name="revanced_sb_about_api_sum">Τα δεδομένα παρέχονται από το SponsorBlock API. Πατήστε για να μάθετε περισσότερα και να δείτε λήψεις για άλλες πλατφόρμες</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Τροποποίηση έκδοσης εφαρμογής</string>
+ <string name="revanced_spoof_app_version_summary_on">Η έκδοση τροποποιείται</string>
+ <string name="revanced_spoof_app_version_summary_off">Η έκδοση δεν τροποποιείται</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Η έκδοση της εφαρμογής YouTube θα τροποποιηθεί σε παλιότερη.\n\nΑυτό θα αλλάξει την εμφάνιση και τα χαρακτηριστικά της εφαρμογής, αλλά ενδέχεται να εμφανιστούν άγνωστες παρενέργειες.\n\nΑν αργότερα απενεργοποιηθεί, συνιστάται η εκκαθάριση των δεδομένων της εφαρμογής για την αποφυγή σφαλμάτων UI.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Έκδοση τροποποίησης της εφαρμογής</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Επαναφορά λειτουργικότητας του RYD στα Shorts σε λειτουργία ανώνυμης περιήγησης</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Επαναφορά ευρέος μενού ταχύτητας & ποιότητας βίντεο</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Επαναφορά της καρτέλας βιβλιοθήκης</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Επαναφορά ενότητας λίστας αναπαραγωγής παλιού στυλ</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Επαναφορά της παλιάς εμφάνισης UI</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Αλλαγή της αρχικής σελίδας</string>
+ <string name="revanced_start_page_entry_0">Προεπιλογή</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Αρχική</string>
+ <string name="revanced_start_page_entry_2">Αναζήτηση</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Εγγραφές</string>
+ <string name="revanced_start_page_entry_4">Εξερεύνηση</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Καρτέλα «Εσείς»</string>
+ <string name="revanced_start_page_entry_7">Βίντεο που σας αρέσουν</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Ιστορικό</string>
+ <string name="revanced_start_page_entry_9">Τάσεις</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Απενεργοποίηση συνέχισης των Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Η αναπαραγωγή Shorts δε θα συνεχίζεται κατά την εκκίνηση της εφαρμογής</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Η αναπαραγωγή Shorts θα συνεχίζεται κατά την εκκίνηση της εφαρμογής</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Λειτουργία διεπαφής τάμπλετ</string>
+ <string name="revanced_tablet_layout_summary_on">Η διεπαφή τάμπλετ είναι ενεργοποιημένη</string>
+ <string name="revanced_tablet_layout_summary_off">Η διεπαφή τάμπλετ είναι απενεργοποιημένη</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Οι δημοσιεύσεις κοινότητας δεν εμφανίζονται στη διεπαφή τάμπλετ</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Ελαχιστοποιημένη οθόνη αναπαραγωγής</string>
+ <string name="revanced_miniplayer_screen_summary">Αλλάξτε το στυλ της ελαχιστοποιημένης οθόνης αναπαραγωγής</string>
+ <string name="revanced_miniplayer_type_title">Τύπος ελαχιστοποιημένης οθόνης αναπαραγωγής</string>
+ <string name="revanced_miniplayer_type_entry_1">Αρχικός</string>
+ <string name="revanced_miniplayer_type_entry_2">Τηλεφώνου</string>
+ <string name="revanced_miniplayer_type_entry_3">Ταμπλετ</string>
+ <string name="revanced_miniplayer_type_entry_4">Μοντέρνος 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Μοντέρνος 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Μοντέρνος 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Κουμπιά επέκτασης και κλεισίματος</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Κρυμμένα\n(σύρετε την ελαχιστοποιημένη οθόνη αναπαραγωγής για επέκταση ή κλείσιμο του βίντεο)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Εμφανίζονται</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Κείμενα στην οθόνη αναπαραγωγής</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Κρυμμένα</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Εμφανίζονται</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Κουμπιά παράλειψης και επιστροφής</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Κρυμμένα</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Εμφανίζονται</string>
+ <string name="revanced_miniplayer_opacity_title">Αδιαφάνεια επικάλυψης</string>
+ <string name="revanced_miniplayer_opacity_summary">Τιμή αδιαφάνειας μεταξύ 0-100, όπου το 0 είναι διαφανές</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Η αδιαφάνεια φόντου οθόνης αναπαραγωγής πρέπει να είναι μεταξύ 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Διαβάθμιση οθόνης φόρτωσης</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Η οθόνη φόρτωσης θα έχει σταδιακές αποχρώσεις φόντο</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Η οθόνη φόρτωσης θα έχει στατική απόχρωση φόντο</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Προσαρμοσμένο χρώμα γραμμής προόδου</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Η γραμμή προόδου εμφανίζεται με προσαρμοσμένο χρώμα</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Η γραμμή προόδου εμφανίζεται με το αρχικό χρώμα</string>
+ <string name="revanced_seekbar_custom_color_value_title">Χρώμα γραμμής προόδου</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Το χρώμα της γραμμής προόδου</string>
+ <string name="revanced_seekbar_custom_color_invalid">Μη έγκυρη τιμή χρώματος. Επαναφορά...</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Αρχική σελίδα</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Καρτέλα εγγραφών</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Καρτέλα «Εσείς»</string>
+ <string name="revanced_alt_thumbnail_player_title">Λίστες αναπαραγωγής, προτάσεις</string>
+ <string name="revanced_alt_thumbnail_search_title">Αποτελέσματα αναζήτησης</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Αρχικές μικρογραφίες</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Αρχικές μικρογραφίες</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Ακίνητα καρέ</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Ακίνητα καρέ</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">Το DeArrow παρέχει μικρογραφίες από το κοινό για τα βίντεο. Οι μικρογραφίες αυτές είναι συχνά πιο σχετικές από εκείνες που παρέχει το ίδιο το YouTube. Εάν ενεργοποιηθεί, οι διευθύνσεις URL των βίντεο θα στέλνονται στον διακομιστή API χωρίς να στέλνονται άλλα δεδομένα. Αν ένα βίντεο δεν έχει μικρογραφίες DeArrow, θα εμφανιστούν είτε οι αρχικές του μικρογραφίες είτε λήψεις ακίνητων καρέ.\n\nΠατήστε για να μάθετε περισσότερα για το DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Εμφάνιση μηνύματος αν το API δεν είναι διαθέσιμο</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Να εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το DeArrow δεν είναι διαθέσιμο</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Να μην εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν το DeArrow δεν είναι διαθέσιμο</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Διεύθυνση API του DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Η διεύθυνση URL του τελικού σημείου αποθήκευσης μικρογραφιών DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Λήψεις ακίνητων καρέ</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Τα ακίνητα καρέ λαμβάνονται από την αρχή/μέση/τέλος κάθε βίντεο. Αυτές οι εικόνες είναι ενσωματωμένες στο YouTube και δεν χρησιμοποιείται εξωτερικό API</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Χρήση γρήγορων λήψεων καρέ</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Χρησιμοποιούνται ακίνητα καρέ μέτριας ποιότητας. Οι μικρογραφίες θα φορτώνουν γρηγορότερα, αλλά τα ζωντανά, μη κυκλοφορημένα η πολύ παλιά βίντεο ενδέχεται να εμφανίζουν κενές μικρογραφίες</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Χρησιμοποιούνται ακίνητα καρέ υψηλής ποιότητας</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Ο χρόνος του βίντεο από τον οποίο θα ληφθούν τα καρέ</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Αρχή του βίντεο</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Μέση του βίντεο</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Τέλος του βίντεο</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow προσωρινά μη διαθέσιμο (κωδικός κατάστασης: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow προσωρινά μη διαθέσιμο</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Εμφάνιση ανακοινώσεων ReVanced</string>
+ <string name="revanced_announcements_summary_on">Οι ανακοινώσεις θα εμφανίζονται κατά την εκκίνηση</string>
+ <string name="revanced_announcements_summary_off">Οι ανακοινώσεις δε θα εμφανίζονται κατά την εκκίνηση</string>
+ <string name="revanced_announcements_enabled_summary">Εμφάνιση ανακοινώσεων κατά την εκκίνηση</string>
+ <string name="revanced_announcements_connection_failed">Αποτυχία σύνδεσης με τον πάροχο ανακοινώσεων</string>
+ <string name="revanced_announcements_dialog_dismiss">Παράλειψη</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Ενεργοποίηση αυτόματης επανάληψης</string>
+ <string name="revanced_auto_repeat_summary_on">Η αυτόματη επανάληψη είναι ενεργοποιημένη</string>
+ <string name="revanced_auto_repeat_summary_off">Η αυτόματη επανάληψη είναι απενεργοποιημένη</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Παραποίηση διαστάσεων συσκευής</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Οι διαστάσεις συσκευής παραποιούνται\n\nΜπορεί να γίνουν διαθέσιμες υψηλότερες ποιότητες βίντεο, αλλά πιθανότατα να αντιμετωπίσετε μικρο-κολλήματα κατά την αναπαραγωγή, χειρότερη διάρκεια ζωής μπαταρίας και άλλες άγνωστες παρενέργειες</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Οι διαστάσεις συσκευής δεν παραποιούνται\n\nΕνεργοποιώντας αυτή τη ρύθμιση μπορούν να γίνουν διαθέσιμες υψηλότερες ποιότητες βίντεο</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Η ενεργοποίηση αυτής της λειτουργίας μπορεί να προκαλέσει μικρο-κολλήματα κατά την αναπαραγωγή, χειρότερη διάρκεια ζωής μπαταρίας, και άλλες άγνωστες παρενέργειες.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Ρυθμίσεις GmsCore</string>
+ <string name="microg_settings_summary">Ρυθμίσεις για το MicroG GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Παράκαμψη ανακατευθύνσεων συνδέσμων</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Οι ανακατευθύνσεις συνδέσμων URL παρακάμπτονται</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Οι ανακατευθύνσεις συνδέσμων URL δεν παρακάμπτονται</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Άνοιγμα συνδέσμων σε πρόγραμμα περιήγησης</string>
+ <string name="revanced_external_browser_summary_on">Οι σύνδεσμοι ανοίγουν εξωτερικά</string>
+ <string name="revanced_external_browser_summary_off">Οι σύνδεσμοι ανοίγουν εντός της εφαρμογής</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Αναπαραγωγή στο παρασκήνιο</string>
+ <string name="revanced_background_playback_summary">Αυτή η ρύθμιση μπορεί να βρεθεί στις Ρυθμίσεις -> Παρασκήνιο</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Καθαρισμός συνδέσμων κοινοποίησης</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Η παράμετρος παρακολούθησης αφαιρείται από τους συνδέσμους στην κοινοποίηση</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Η παράμετρος παρακολούθησης δεν αφαιρείται από τους συνδέσμους στην κοινοποίηση</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Κατάργηση απόκρισης δόνησης στο ζουμ</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Η απόκριση δόνησης είναι απενεργοποιημένη</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Η απόκριση δόνησης είναι ενεργοποιημένη</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Αυτόματη ποιότητα</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Απομνημόνευση αλλαγών ποιότητας βίντεο</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Οι αλλαγές ποιότητας θα ισχύουν για όλα τα βίντεο</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Οι αλλαγές ποιότητας θα ισχύουν μόνο για το τρέχον βίντεο</string>
+ <string name="revanced_video_quality_default_wifi_title">Προεπιλεγμένη ποιότητα βίντεο με Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Προεπιλεγμένη ποιότητα βίντεο με δεδομένα κινητής τηλεφωνίας</string>
+ <string name="revanced_remember_video_quality_mobile">δεδομένων</string>
+ <string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
+ <string name="revanced_remember_video_quality_toast">Η προεπιλεγμένη ποιότητα %1$s άλλαξε σε: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Κουμπί αλλαγής ταχύτητας βίντεο</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Εμφανίζεται</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Κρυμμένο</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Προσαρμοσμένες ταχύτητες αναπαραγωγής</string>
+ <string name="revanced_custom_playback_speeds_summary">Προσθέστε ή αλλάξτε τις διαθέσιμες ταχύτητες αναπαραγωγής</string>
+ <string name="revanced_custom_playback_speeds_invalid">Οι ταχύτητες πρέπει να είναι μικρότερες από %sx. Επαναφορά...</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Μη έγκυρες ταχύτητες αναπαραγωγής. Επαναφορά...</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Απομνημόνευση αλλαγών ταχύτητας αναπαραγωγής</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Οι αλλαγές ταχύτητας αναπαραγωγής θα ισχύουν για όλα τα βίντεο</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Οι αλλαγές ταχύτητας αναπαραγωγής θα ισχύουν μόνο για το τρέχον βίντεο</string>
+ <string name="revanced_playback_speed_default_title">Προεπιλεγμένη ταχύτητα αναπαραγωγής</string>
+ <string name="revanced_remember_playback_speed_toast">Η προεπιλεγμένη ταχύτητα άλλαξε σε: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Επαναφορά παλιού μενού ποιότητας βίντεο</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Το μενού ποιότητας βίντεο θα εμφανίζεται με το παλιό στυλ</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Το μενού ποιότητας βίντεο θα εμφανίζεται με το νέο στυλ</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Χειρονομία οριζόντιας σάρωσης για αναζήτηση</string>
+ <string name="revanced_slide_to_seek_summary_on">Η αναζήτηση στη γραμμή προόδου με χειρονομία οριζόντιας σάρωσης είναι ενεργοποιημένη</string>
+ <string name="revanced_slide_to_seek_summary_off">Η αναζήτηση στη γραμμή προόδου με χειρονομία σάρωσης είναι απενεργοποιημένη</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Παραποίηση προγράμματος πελάτη</string>
+ <string name="revanced_spoof_client_screen_summary">Παραποίηση του προγράμματος πελάτη για την αποφυγή προβλημάτων αναπαραγωγής</string>
+ <string name="revanced_spoof_client_title">Παραποίηση προγράμματος πελάτη</string>
+ <string name="revanced_spoof_client_summary_on">Το πρόγραμμα πελάτη παραποιείται</string>
+ <string name="revanced_spoof_client_summary_off">Το πρόγραμμα πελάτη δεν παραποιείται\n\nΗ αναπαραγωγή βίντεο ενδέχεται να μη λειτουργεί</string>
+ <string name="revanced_spoof_client_user_dialog_message">Η απενεργοποίηση αυτής της ρύθμισης ενδέχεται να προκαλέσει προβλήματα αναπαραγωγής βίντεο.</string>
+ <string name="revanced_spoof_client_use_ios_title">Παραποίηση σε iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Ο πελάτης αυτή τη στιγμή παραποιείται ως iOS\n\nΟι παρενέργειες περιλαμβάνουν:\n• Δεν υπάρχει η ποιότητα HDR στα βίντεο\n• Το ιστορικό παρακολούθησης μπορεί να μην λειτουργεί\n• Μπορεί να λείπουν επιλογές για υψηλές αναλύσεις βίντεο\n• Δε γίνεται στις ζωντανές ροές η αναπαραγωγή μόνο του ήχου\n• Οι ζωντανές ροές δεν είναι διαθέσιμες σε παλαιότερες συσκευές με Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Ο πελάτης αυτή τη στιγμή παραποιείται ως Android VR\n\nΟι παρενέργειες περιλαμβάνουν:\n• Δεν υπάρχει η ποιότητα HDR στα βίντεο\n• Δεν λειτουργεί η αναπαραγωγή στα βίντεο για παιδιά\n• Βίντεο που έχετε θέσει σε παύση μπορεί να συνεχίσουν να παίζουν τυχαία\n• Χαμηλή ποιότητα μικρογραφιών μπάρας αναζήτησης στα shorts\n• Το κουμπί λήψης είναι πάντα κρυμμένο\n• Οι κάρτες τελικής οθόνης είναι πάντα κρυμμένες</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Μικρογραφίες προεπισκόπησης μη διαθέσιμες (καθυστέρηση API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Μικρογραφίες προεπισκόπησης προσωρινά μη διαθέσιμες: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Η εγκυρότητα της εφαρμογής δεν παραποιείται για βίντεο στη ροή\n\nΤα βίντεο στη ροή θα αναπαράγονται για λιγότερο από 1 λεπτό πριν αντιμετωπίσουν προβλήματα αναπαραγωγής</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Αποκλεισμός διαφημίσεων ήχου</string>
+ <string name="revanced_block_audio_ads_summary_on">Οι διαφημίσεις ήχου έχουν αποκλειστεί</string>
+ <string name="revanced_block_audio_ads_summary_off">Οι διαφημίσεις ήχου δεν έχουν αποκλειστεί</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s μη διαθέσιμο. Οι διαφημίσεις θα εμφανίζονται. Δοκιμάστε άλλη υπηρεσία αποκλεισμού διαφημίσεων.</string>
+ <string name="revanced_embedded_ads_service_failed">Σφάλμα διακομιστή %s. Οι διαφημίσεις ενδέχεται να εμφανίζονται. Δοκιμάστε κάποια άλλη υπηρεσία αποκλεισμού διαφημίσεων.</string>
+ <string name="revanced_block_embedded_ads_title">Αποκλεισμός ενσωματωμένων διαφημίσεων βίντεο</string>
+ <string name="revanced_block_embedded_ads_entry_1">Ανενεργό</string>
+ <string name="revanced_block_embedded_ads_entry_2">Διαμεσολαβητής Luminous</string>
+ <string name="revanced_block_embedded_ads_entry_3">Διαμεσολαβητής PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Αποκλεισμός διαφημίσεων βίντεο</string>
+ <string name="revanced_block_video_ads_summary_on">Οι διαφημίσεις βίντεο έχουν αποκλειστεί</string>
+ <string name="revanced_block_video_ads_summary_off">Οι διαφημίσεις βίντεο δεν έχουν αποκλειστεί</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">το μήνυμα διαγράφηκε</string>
+ <string name="revanced_show_deleted_messages_title">Εμφάνιση διαγραμμένων μηνυμάτων</string>
+ <string name="revanced_show_deleted_messages_entry_1">Να μην εμφανίζονται διαγραμμένα μηνύματα</string>
+ <string name="revanced_show_deleted_messages_entry_2">Απόκρυψη διαγραμμένων μηνυμάτων πίσω από ένα spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Εμφάνιση διαγραμμένων μηνυμάτων ως σβησμένο κείμενο</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Αυτόματη εξαργύρωση Πόντων Καναλιού</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Οι Πόντοι Καναλιών εξαργυρώνονται αυτόματα</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Οι Πόντοι Καναλιών δεν εξαργυρώνονται αυτόματα</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Λειτουργία εντοπισμού σφαλμάτων Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Η λειτουργία εντοπισμού σφαλμάτων Twitch είναι ενεργοποιημένη (δε συνιστάται)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Η λειτουργία εντοπισμού σφαλμάτων Twitch είναι απενεργοποιημένη</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Ρυθμίσεις ReVanced</string>
+ <string name="revanced_ads_screen_title">Διαφημίσεις</string>
+ <string name="revanced_ads_screen_summary">Ρυθμίσεις αποκλεισμού διαφημίσεων</string>
+ <string name="revanced_chat_screen_title">Συνομιλία</string>
+ <string name="revanced_chat_screen_summary">Ρυθμίσεις συνομιλίας</string>
+ <string name="revanced_misc_screen_title">Διάφορα</string>
+ <string name="revanced_misc_screen_summary">Διάφορες ρυθμίσεις</string>
+ <string name="revanced_general_category_title">Γενικές ρυθμίσεις</string>
+ <string name="revanced_other_category_title">Άλλες ρυθμίσεις</string>
+ <string name="revanced_client_ads_category_title">Διαφημίσεις από πλευράς πελάτη</string>
+ <string name="revanced_surestream_ads_category_title">Διαφημίσεις διακομιστή</string>
+ <string name="revanced_twitch_debug_title">Καταγραφή σφαλμάτων</string>
+ <string name="revanced_twitch_debug_summary_on">Η καταγραφή σφαλμάτων είναι ενεργή</string>
+ <string name="revanced_twitch_debug_summary_off">Η καταγραφή σφαλμάτων είναι ανενεργή</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-es-rAR/strings.xml b/src/main/resources/addresources/values-es-rAR/strings.xml
new file mode 100644
index 0000000000..7f86d79fdd
--- /dev/null
+++ b/src/main/resources/addresources/values-es-rAR/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">¿Desea continuar?</string>
+ <string name="revanced_settings_reset">Restablecer</string>
+ <string name="revanced_settings_restart_title">Actualizar y reiniciar</string>
+ <string name="revanced_settings_restart">Reiniciar</string>
+ <string name="revanced_settings_import">Importar</string>
+ <string name="revanced_settings_import_copy">Copiar</string>
+ <string name="revanced_settings_import_reset">Configuración revanzada restablecida por defecto</string>
+ <string name="revanced_settings_import_success">Ajustes importados de %d</string>
+ <string name="revanced_settings_import_failure_parse">Importación fallida: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore no está instalado. Instálala.</string>
+ <string name="gms_core_dialog_title">Acción necesaria</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore no tiene permiso para ejecutarse en segundo plano.\n\nSigue la guía \"No cerrar mi aplicación\" para tu teléfono y aplica las instrucciones a tu instalación de MicroG.\n\nEsto es necesario para que la aplicación funcione.</string>
+ <string name="gms_core_dialog_open_website_text">Abrir sitio web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Las optimizaciones de la batería de MicroG GmsCore deben estar deshabilitadas para evitar problemas.\n\nPulse el botón continuar y desactive las optimizaciones de la batería.</string>
+ <string name="gms_core_dialog_continue_text">Continuar</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Estás usando la versión <i>%s</i> de ReVanced Patches</string>
+ <string name="revanced_settings_about_links_dev_header">Nota</string>
+ <string name="revanced_settings_about_links_dev_body">Esta versión es un prelanzamiento y podrías experimentar problemas inesperados</string>
+ <string name="revanced_settings_about_links_header">Links oficiales</string>
+ <string name="revanced_pref_import_export_title">Importar / Exportar</string>
+ <string name="revanced_pref_import_export_summary">Importar / Exportar ajustes reVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Acerca de</string>
+ <string name="revanced_settings_screen_01_ads_title">Anuncios</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniuñas alternativas</string>
+ <string name="revanced_settings_screen_03_feed_title">Alimentación</string>
+ <string name="revanced_settings_screen_04_player_title">Jugador</string>
+ <string name="revanced_settings_screen_05_general_title">Diseño general</string>
+ <string name="revanced_settings_screen_06_shorts_title">Acortes</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controles de deslizamiento</string>
+ <string name="revanced_settings_screen_11_misc_title">Misc</string>
+ <string name="revanced_settings_screen_12_video_title">Vídeo</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depuración</string>
+ <string name="revanced_debug_screen_summary">Activar o desactivar las opciones de depuración</string>
+ <string name="revanced_debug_title">Depurar registro</string>
+ <string name="revanced_debug_summary_on">Los registros de depuración están habilitados</string>
+ <string name="revanced_debug_summary_off">Los registros de depuración están desactivados</string>
+ <string name="revanced_debug_protobuffer_title">Búfer de protocolo de registro</string>
+ <string name="revanced_debug_protobuffer_summary_on">Los registros de depuración incluyen el búfer proto</string>
+ <string name="revanced_debug_protobuffer_summary_off">Los registros de depuración no incluyen el búfer proto</string>
+ <string name="revanced_debug_stacktrace_title">Registrar stack traces</string>
+ <string name="revanced_debug_stacktrace_summary_on">Los registros de depuración incluyen stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">Los registros de depuración no incluyen stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Mostrar brindis en error ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast mostrado si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast no se muestra si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Desactivar los errores toasts oculta todas las notificaciones de error ReVanced\n\nNo se le notificará de ningún evento inesperado.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Desactivar como / botón de suscripción brillo</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">El botón de \"Me gusta\" y \"suscribir\" no brillará cuando se mencione</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">El botón de \"Me gusta\" y \"Suscribir\" brillará cuando se mencione</string>
+ <string name="revanced_hide_gray_separator_title">Ocultar separador gris</string>
+ <string name="revanced_hide_gray_separator_summary_on">Los separadores de grises están ocultos</string>
+ <string name="revanced_hide_gray_separator_summary_off">Se muestran los separadores grises</string>
+ <string name="revanced_hide_channel_watermark_title">Ocultar marca de agua del canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Marca de agua oculta</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Marca de agua mostrada</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ocultar shelves horizontales</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Los estantes están ocultos como:\n• Romper noticias\n• Continuar viendo\n• Explorar más canales\n• Comprar\n• Verlo de nuevo</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Se muestran las estanterías</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ocultar botón \'Unirse\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Se muestra el botón</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ocultar shelf \'Para ti\' en la página del canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Estante oculto</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Estante mostrado</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ocultar el botón \'Notificarme\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Se muestra el botón</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ocultar recomendaciones \"Personas también observadas\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Recomendaciones ocultas</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Se muestran las recomendaciones</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ocultar botón \'Mostrar más\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_show_more_button_summary_off">Se muestra el botón</string>
+ <string name="revanced_hide_timed_reactions_title">Ocultar reacciones temporizadas</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Las reacciones temporizadas están ocultas</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Se muestran reacciones temporizadas</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ocultar la cabecera de resultados de búsqueda</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Encabezado de estante oculto</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Encabezado del estante se muestra</string>
+ <string name="revanced_hide_channel_guidelines_title">Ocultar pautas de canal</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Las pautas del canal están ocultas</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Se muestran las pautas del canal</string>
+ <string name="revanced_hide_expandable_chip_title">Ocultar chip expandible en videos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Las fichas expandibles están ocultas</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Se muestran fichas expandibles</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ocultar pie de página del menú de calidad de vídeo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Pie de menú de calidad de vídeo oculto</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">El pie del menú de calidad de vídeo se muestra</string>
+ <string name="revanced_hide_community_posts_title">Ocultar mensajes comunitarios</string>
+ <string name="revanced_hide_community_posts_summary_on">Los mensajes de la comunidad están ocultos</string>
+ <string name="revanced_hide_community_posts_summary_off">Se muestran las publicaciones de la comunidad</string>
+ <string name="revanced_hide_compact_banner_title">Ocultar banners compactos</string>
+ <string name="revanced_hide_compact_banner_summary_on">Los banners de pacto están ocultos</string>
+ <string name="revanced_hide_compact_banner_summary_off">Se muestran los banners compactos</string>
+ <string name="revanced_hide_movies_section_title">Ocultar sección de películas</string>
+ <string name="revanced_hide_movies_section_summary_on">La sección de películas está oculta</string>
+ <string name="revanced_hide_movies_section_summary_off">Se muestra la sección de películas</string>
+ <string name="revanced_hide_feed_survey_title">Ocultar encuestas</string>
+ <string name="revanced_hide_feed_survey_summary_on">Las encuestas de la fuente están ocultas</string>
+ <string name="revanced_hide_feed_survey_summary_off">Se muestran encuestas de la fuente</string>
+ <string name="revanced_hide_community_guidelines_title">Ocultar directrices comunitarias</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Las directrices comunitarias están ocultas</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Se muestran las directrices comunitarias</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ocultar directrices de la comunidad de suscriptores</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Las directrices comunitarias de los suscriptores están ocultas</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Se muestran las pautas de la comunidad de suscriptores</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ocultar shelf del miembro del canal</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">La shelf del miembro del canal está oculta</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Se muestra la shelf del miembro del canal</string>
+ <string name="revanced_hide_emergency_box_title">Ocultar cajas de emergencia</string>
+ <string name="revanced_hide_emergency_box_summary_on">Las cajas de emergencia están ocultas</string>
+ <string name="revanced_hide_emergency_box_summary_off">Se muestran cajas de emergencia</string>
+ <string name="revanced_hide_info_panels_title">Ocultar paneles de información</string>
+ <string name="revanced_hide_info_panels_summary_on">Los paneles de información están ocultos</string>
+ <string name="revanced_hide_info_panels_summary_off">Los paneles de información se muestran</string>
+ <string name="revanced_hide_medical_panels_title">Ocultar paneles médicos</string>
+ <string name="revanced_hide_medical_panels_summary_on">Los paneles médicos están ocultos</string>
+ <string name="revanced_hide_medical_panels_summary_off">Se muestran paneles médicos</string>
+ <string name="revanced_hide_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_playables_title">Ocultar reproducibles</string>
+ <string name="revanced_hide_playables_summary_on">Los reproductores están ocultos</string>
+ <string name="revanced_hide_playables_summary_off">Se muestran los reproductores</string>
+ <string name="revanced_hide_quick_actions_title">Ocultar acciones rápidas en pantalla completa</string>
+ <string name="revanced_hide_quick_actions_summary_on">Las acciones rápidas están ocultas</string>
+ <string name="revanced_hide_quick_actions_summary_off">Se muestran acciones rápidas</string>
+ <string name="revanced_hide_related_videos_title">Ocultar vídeos relacionados en acciones rápidas</string>
+ <string name="revanced_hide_related_videos_summary_on">Vídeos relacionados están ocultos</string>
+ <string name="revanced_hide_related_videos_summary_off">Vídeos relacionados se muestran</string>
+ <string name="revanced_hide_image_shelf_title">Ocultar la imagen en los resultados de búsqueda</string>
+ <string name="revanced_hide_image_shelf_summary_on">El shelf de la imagen está oculto</string>
+ <string name="revanced_hide_image_shelf_summary_off">Pantalla de imagen mostrada</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ocultar últimos mensajes</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Los últimos mensajes están ocultos</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Se muestran los últimos mensajes</string>
+ <string name="revanced_hide_mix_playlists_title">Ocultar listas de mezcla</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Las listas de reproducción mixtas están ocultas</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mezclar listas de reproducción son mostradas</string>
+ <string name="revanced_hide_artist_cards_title">Ocultar tarjetas de artistas</string>
+ <string name="revanced_hide_artist_cards_summary_on">Las tarjetas de artistas están ocultas</string>
+ <string name="revanced_hide_artist_cards_summary_off">Se muestran las tarjetas del artista</string>
+ <string name="revanced_hide_chips_shelf_title">Ocultar shelf de fichas</string>
+ <string name="revanced_hide_chips_shelf_summary_on">La shelf de chips está oculta</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Se muestra la shelf de chips</string>
+ <string name="revanced_hide_attributes_section_title">Ocultar sección de atributos</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Lugares destacados\', Las secciones de juegos y música están ocultas</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Lugares destacados\', Se muestran las secciones de juegos y música</string>
+ <string name="revanced_hide_chapters_section_title">Ocultar sección de capítulos</string>
+ <string name="revanced_hide_chapters_section_summary_on">La sección de capítulos está oculta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Se muestra la sección de capítulos</string>
+ <string name="revanced_hide_podcast_section_title">Ocultar la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">La sección \'Explorar el podcast\' está oculta</string>
+ <string name="revanced_hide_podcast_section_summary_off">Se muestra la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_info_cards_section_title">Ocultar sección de tarjetas de información</string>
+ <string name="revanced_hide_info_cards_section_summary_on">La sección de tarjetas de información está oculta</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Se muestra la sección de tarjetas de información</string>
+ <string name="revanced_hide_transcript_section_title">Ocultar sección de transcripción</string>
+ <string name="revanced_hide_transcript_section_summary_on">La sección transcripción está oculta</string>
+ <string name="revanced_hide_transcript_section_summary_off">Se muestra la sección transcripción</string>
+ <string name="revanced_hide_description_components_screen_title">Descripción del vídeo</string>
+ <string name="revanced_hide_description_components_screen_summary">Ocultar o mostrar componentes de descripción de vídeo</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizado</string>
+ <string name="revanced_custom_filter_screen_summary">Ocultar componentes usando filtros personalizados</string>
+ <string name="revanced_custom_filter_title">Activar filtro personalizado</string>
+ <string name="revanced_custom_filter_summary_on">Filtro personalizado activado</string>
+ <string name="revanced_custom_filter_summary_off">Filtro personalizado desactivado</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizado</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista de cadenas del constructor de rutas del componente para filtrar separadas por una nueva línea</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizado no válido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ocultar contenido de palabra clave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ocultar videos de búsqueda y feed usando filtros de palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_title">Ocultar videos domésticos por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Los videos en la pestaña de inicio son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Los videos en la pestaña de inicio no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ocultar vídeos de suscripción por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Los videos en la pestaña de suscripciones son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Los videos en la pestaña de suscripciones no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_title">Ocultar resultados de búsqueda por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Los resultados de la búsqueda son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Los resultados de la búsqueda no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Palabras clave a ocultar</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Palabras clave y frases para ocultar, separadas por nuevas líneas\n\nLas palabras con letras mayúsculas en el centro deben ser ingresadas con la caja (por ejemplo: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Acerca del filtrado de palabras clave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Los resultados de inicio/suscripción/búsqueda se filtran para ocultar contenido que coincide con las frases de palabras clave\n\nLimitaciones\n• Algunos cortos pueden no estar ocultos\n• Algunos componentes de la interfaz pueden no estar ocultos\n• Buscar una palabra clave no puede mostrar resultados</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Palabra clave inválida. No se puede usar: \'%s\' como filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Palabra clave no válida. \'%1$s\' es menor de %2$d caracteres</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">La palabra clave \'$s\' oculta todos los vídeos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ocultar anuncios generales</string>
+ <string name="revanced_hide_general_ads_summary_on">Los anuncios generales están ocultos</string>
+ <string name="revanced_hide_general_ads_summary_off">Se muestran anuncios generales</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ocultar anuncios a pantalla completa</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Los anuncios a pantalla completa están ocultos\n\nEsta función solo está disponible para dispositivos más antiguos</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Se muestran anuncios a pantalla completa</string>
+ <string name="revanced_hide_buttoned_ads_title">Ocultar anuncios botonados</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Los anuncios bloqueados están ocultos</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Se muestran anuncios botonados</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ocultar etiqueta de promoción de pago</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Etiqueta de promoción pagada está oculta</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Etiqueta de promoción pagada se muestra</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ocultar tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Las tarjetas autopatrocinadas están ocultas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Se muestran las tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_products_banner_title">Ocultar banner para ver los productos</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner oculto</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner mostrado</string>
+ <string name="revanced_hide_shopping_links_title">Ocultar enlaces de compras en la descripción de vídeo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Enlaces de compras están ocultos</string>
+ <string name="revanced_hide_shopping_links_summary_off">Se muestran enlaces de compras</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ocultar el botón \'Visitar tienda\' en las páginas del canal</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Botón visible</string>
+ <string name="revanced_hide_web_search_results_title">Ocultar resultados de búsqueda web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Los resultados de búsqueda web están ocultos</string>
+ <string name="revanced_hide_web_search_results_summary_off">Se muestran los resultados de la búsqueda web</string>
+ <string name="revanced_hide_merchandise_banners_title">Ocultar banners de mercandise</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Los banners de mercadería están ocultos</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Se muestran los banners de Mercandise</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ocultar anuncios a pantalla completa sólo funciona con dispositivos antiguos</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ocultar promociones de YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Las promociones de YouTube Premium en el reproductor de vídeo están ocultas</string>
+ <string name="revanced_hide_get_premium_summary_off">Se muestran las promociones de YouTube Premium en el reproductor de vídeo</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ocultar video anuncios</string>
+ <string name="revanced_hide_video_ads_summary_on">Los anuncios de vídeo están ocultos</string>
+ <string name="revanced_hide_video_ads_summary_off">Los anuncios de vídeo se muestran</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiada al portapapeles</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL con marca de tiempo copiada</string>
+ <string name="revanced_copy_video_url_title">Mostrar botón URL de copia de vídeo</string>
+ <string name="revanced_copy_video_url_summary_on">El botón se muestra. Toque para copiar la URL del vídeo. Mantenga pulsado para copiar la URL del vídeo con la marca de tiempo</string>
+ <string name="revanced_copy_video_url_summary_off">El botón no se muestra</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostrar botón URL de la marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">El botón se muestra. Toque para copiar la URL del vídeo con la marca de tiempo. Toque y mantenga pulsado para copiar el vídeo sin marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Eliminar diálogo de discreción del visor</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Se eliminará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Se mostrará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Esto no pasa por alto la restricción de edad, sino que simplemente la acepta automáticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Descarga externa</string>
+ <string name="revanced_external_downloader_screen_summary">Configuración para el uso de un descargador externo</string>
+ <string name="revanced_external_downloader_title">Mostrar botón externo de descarga</string>
+ <string name="revanced_external_downloader_summary_on">Botón de descarga mostrado en el reproductor</string>
+ <string name="revanced_external_downloader_summary_off">Botón de descarga no mostrado en el reproductor</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Reemplazar el botón de descarga</string>
+ <string name="revanced_external_downloader_action_button_summary_on">El botón de descarga abre su descarga externa</string>
+ <string name="revanced_external_downloader_action_button_summary_off">El botón de descarga abre el descargador nativo en la aplicación</string>
+ <string name="revanced_external_downloader_name_title">Nombre del paquete del descargado</string>
+ <string name="revanced_external_downloader_name_summary">Nombre del paquete de su aplicación de descarga externa instalada, como NewPipe o Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s no está instalado. Por favor, instálelo.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Desactivar gesto de búsqueda preciso</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">El gesto está desactivado</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto habilitado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Habilitar toque en la barra de búsqueda</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar toping está habilitado</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar toping está desactivado</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Activar gesto de brillo</string>
+ <string name="revanced_swipe_brightness_summary_on">Deslizar brillo está habilitado</string>
+ <string name="revanced_swipe_brightness_summary_off">Deslizar brillo está desactivado</string>
+ <string name="revanced_swipe_volume_title">Activar gesto de volumen</string>
+ <string name="revanced_swipe_volume_summary_on">Deslizar volumen está habilitado</string>
+ <string name="revanced_swipe_volume_summary_off">Deslizar volumen está desactivado</string>
+ <string name="revanced_swipe_press_to_engage_title">Activar gesto de pulsar para deslizar</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pulsar para deslizar está habilitado</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pulsar para deslizar está desactivado</string>
+ <string name="revanced_swipe_haptic_feedback_title">Activar respuesta háptica</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Comentarios hápticos habilitados</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Respuesta háptica deshabilitada</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Guardar y restaurar brillo</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Guardar y restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">No guardar ni restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Activar gesto de brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Deslizar hacia abajo hasta el valor más bajo del gesto de brillo permite el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Deslizar hacia abajo hasta el valor más bajo no habilita el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Auto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tiempo de espera del deslizado</string>
+ <string name="revanced_swipe_overlay_timeout_summary">La cantidad de milisegundos que la superposición es visible</string>
+ <string name="revanced_swipe_text_overlay_size_title">Deslizar tamaño de texto superpuesto</string>
+ <string name="revanced_swipe_text_overlay_size_summary">El tamaño del texto para la capa de deslizamiento</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Deslizar visibilidad de fondo</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Visibilidad del fondo del deslizamiento</string>
+ <string name="revanced_swipe_threshold_title">Umbral de magnitud del deslizamiento</string>
+ <string name="revanced_swipe_threshold_summary">La cantidad de umbral para que se desliza</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Desactivar auto subtítulos</string>
+ <string name="revanced_auto_captions_summary_on">Los títulos automáticos están desactivados</string>
+ <string name="revanced_auto_captions_summary_off">Los títulos automáticos están habilitados</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Botones de acción</string>
+ <string name="revanced_hide_buttons_screen_summary">Ocultar o mostrar botones en videos</string>
+ <string name="revanced_hide_like_dislike_button_title">Ocultar me gusta y no me gusta</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Botones \"Me gusta\" y \"no me gusta\" están ocultos</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Se muestran botones \"Me gusta\" y \"no me gusta\"</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ocultar Compartir</string>
+ <string name="revanced_hide_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_share_button_summary_off">Se muestra el botón Compartir</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ocultar informe</string>
+ <string name="revanced_hide_report_button_summary_on">El botón Reportar está oculto</string>
+ <string name="revanced_hide_report_button_summary_off">Se muestra el botón Reportar</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ocultar Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ocultar descarga</string>
+ <string name="revanced_hide_download_button_summary_on">El botón de descarga está oculto</string>
+ <string name="revanced_hide_download_button_summary_off">Se muestra el botón de descarga</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ocultar Gracias</string>
+ <string name="revanced_hide_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">El botón del clip está oculto</string>
+ <string name="revanced_hide_clip_button_summary_off">Se muestra el botón de clip</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ocultar Guardar en lista</string>
+ <string name="revanced_hide_playlist_button_summary_on">El botón Guardar a la lista de reproducción está oculto</string>
+ <string name="revanced_hide_playlist_button_summary_off">Mostrar el botón Guardar a la lista</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ocultar botón de reproducción automática</string>
+ <string name="revanced_hide_autoplay_button_summary_on">El botón de reproducción automática está oculto</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Se muestra el botón de reproducción automática</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ocultar botón de subtítulos</string>
+ <string name="revanced_hide_captions_button_summary_on">Botón de subtítulos oculto</string>
+ <string name="revanced_hide_captions_button_summary_off">Botón de subtítulos mostrado</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ocultar botón de reparto</string>
+ <string name="revanced_hide_cast_button_summary_on">El botón de envío está oculto</string>
+ <string name="revanced_hide_cast_button_summary_off">Se muestra el botón de envío</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ocultar o cambiar botones en la barra de navegación</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ocultar Inicio</string>
+ <string name="revanced_hide_home_button_summary_on">El botón de inicio está oculto</string>
+ <string name="revanced_hide_home_button_summary_off">Se muestra el botón de inicio</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ocultar breves</string>
+ <string name="revanced_hide_shorts_button_summary_on">Botón corto oculto</string>
+ <string name="revanced_hide_shorts_button_summary_off">Se muestra el botón de breves</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ocultar Crear</string>
+ <string name="revanced_hide_create_button_summary_on">El botón Crear está oculto</string>
+ <string name="revanced_hide_create_button_summary_off">Se muestra el botón de crear</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ocultar suscripciones</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">El botón de suscripciones está oculto</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Se muestra el botón de suscripciones</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Cambiar Create con notificaciones</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">El botón Crear cambia con el botón de Notificaciones\n\nNota: Activar esto también oculta anuncios de vídeo por la fuerza</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">El botón Crear no se cambia con el botón de notificaciones</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ocultar etiquetas de botón de navegación</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Las etiquetas están ocultas</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Las etiquetas se muestran</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Ocultar o mostrar elementos del menú de vuelo del jugador</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ocultar leyendas</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Menú de subtítulos oculto</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menú de subtítulos mostrado</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ocultar ajustes adicionales</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Menú de configuración adicional oculto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Se muestra el menú de configuración adicional</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ocultar video de bucle</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">El menú de video Loop está oculto</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">El menú de Loop video se muestra</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ocultar modo ambiente</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menú de modo ambiente oculto</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Se muestra el menú de modo ambiente</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ocultar Ayuda & Comentarios</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">El menú de ayuda & comentarios está oculto</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Se muestra el menú Ayuda & comentarios</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ocultar velocidad de reproducción</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menú de velocidad de reproducción oculto</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Mostrar menú de velocidad de reproducción</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ocultar más información</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">El menú de más información está oculto</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Se muestra el menú de más información</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ocultar pantalla de bloqueo</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">El menú de la pantalla de bloqueo está oculto</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Se muestra el menú de pantalla de bloqueo</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ocultar pista de audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">El menú de pista de audio está oculto</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">El menú de pista de audio se muestra</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ocultar reloj en VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Ver en el menú VR está oculto</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Ver en el menú VR se muestra</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ocultar botones de vídeo anteriores & siguiente</string>
+ <string name="revanced_hide_player_buttons_summary_on">Los botones están ocultos</string>
+ <string name="revanced_hide_player_buttons_summary_off">Los botones se muestran</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ocultar álbumes</string>
+ <string name="revanced_hide_album_cards_summary_on">Las tarjetas de álbum están ocultas</string>
+ <string name="revanced_hide_album_cards_summary_off">Se muestran las tarjetas de álbum</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentarios</string>
+ <string name="revanced_comments_screen_summary">Ocultar o mostrar los componentes de sección de comentarios</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ocultar encabezado \'Comentarios por miembros\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">El encabezado \'Comentarios por miembros\' está oculto</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">La cabecera \'Comentarios por miembros\' se muestra</string>
+ <string name="revanced_hide_comments_section_title">Ocultar sección de comentarios</string>
+ <string name="revanced_hide_comments_section_summary_on">La sección de comentarios está oculta</string>
+ <string name="revanced_hide_comments_section_summary_off">Sección de comentarios mostrada</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ocultar botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">El botón \'Crear un corto\' está oculto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Se muestra el botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ocultar comentario de vista previa</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">El comentario de la vista previa está oculto</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Vista previa del comentario se muestra</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ocultar botón de gracias</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ocultar botones de hora y emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Botones Timestamp y emoji están ocultos</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Se muestran los botones Timestamp y emoji</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ocultar caja de recaudación</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">La caja de Crowdfunding está oculta</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Se muestra la caja de Crowdfunding</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ocultar tarjetas de pantalla final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Las tarjetas de pantalla de fin están ocultas</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Se muestran las tarjetas de la pantalla final</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra de filtros</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ocultar o mostrar la barra de filtros en el feed, la búsqueda y vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ocultar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Escondido en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Mostrar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ocultar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Oculto en la búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Mostrar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ocultar en vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Escondido en videos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Mostrar en vídeos relacionados</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ocultar botón de micrófono flotante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Botón de micrófono oculto</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Botón del micrófono mostrado</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Desactivar el modo ambiente en pantalla completa</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modo ambiente desactivado</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modo ambiente activado</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ocultar tarjetas de información</string>
+ <string name="revanced_hide_info_cards_summary_on">Las tarjetas de información están ocultas</string>
+ <string name="revanced_hide_info_cards_summary_off">Se muestran las tarjetas de información</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Desactivar animaciones de número de rodamiento</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Los números de registro no están animados</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Los números de registro son animados</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ocultar barra de búsqueda en el reproductor de vídeo</string>
+ <string name="revanced_hide_seekbar_summary_on">La barra de búsqueda del reproductor de vídeo está oculta</string>
+ <string name="revanced_hide_seekbar_summary_off">La barra de búsqueda del reproductor de vídeo se muestra</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ocultar barra de búsqueda en miniaturas de vídeo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">La barra de búsqueda de miniaturas está oculta</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">La barra de búsqueda de miniaturas se muestra</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ocultar breves en el feed de inicio</string>
+ <string name="revanced_hide_shorts_home_summary_on">Los cortos en la alimentación de inicio están ocultos</string>
+ <string name="revanced_hide_shorts_home_summary_off">Se muestran los cortos en la alimentación de inicio</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ocultar breves en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Los cortos en el feed de suscripción están ocultos</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Se muestran los cortos en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_search_title">Ocultar breves en los resultados de búsqueda</string>
+ <string name="revanced_hide_shorts_search_summary_on">Los breves resultados de búsqueda están ocultos</string>
+ <string name="revanced_hide_shorts_search_summary_off">Se muestran breves en los resultados de búsqueda</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ocultar botón de unirse</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Botón de unión oculto</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Se muestra el botón de unirse</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ocultar botón de suscripción</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">El botón de suscripción está oculto</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Se muestra el botón de suscripción</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ocultar botones de superposición en pausa</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Los botones de superposición pausados están ocultos</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Se muestran los botones de superposición pausados</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ocultar botón de tienda</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">El botón de la tienda está oculto</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Se muestra el botón de la tienda</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ocultar botón de súper gracias</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">El botón de súper gracias está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Se muestra el botón de supergracias</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ocultar productos etiquetados</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Los productos etiquetados están ocultos</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Los productos etiquetados se muestran</string>
+ <string name="revanced_hide_shorts_location_label_title">Ocultar etiqueta de ubicación</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Etiqueta de ubicación oculta</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Etiqueta de ubicación mostrada</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ocultar sonido guardado al botón de lista de reproducción</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Guardar sonido en lista de reproducción está oculto</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Guardar sonido en la lista de reproducción se muestra</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ocultar sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Las sugerencias de búsqueda están ocultas</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Se muestran sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_like_button_title">Ocultar botón me gusta</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">El botón Me gusta está oculto</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Se muestra el botón Me Gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ocultar botón no me gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">El botón no me gusta está oculto</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">El botón no me gusta se muestra</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ocultar botón de comentarios</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">El botón de comentarios está oculto</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Se muestra el botón de comentarios</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ocultar botón de remezcla</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ocultar botón Compartir</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Se muestra el botón Compartir</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ocultar panel de información</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Panel de información oculto</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Se muestra el panel de información</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_shorts_video_title_title">Ocultar título de vídeo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">El título está oculto</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">El título se muestra</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ocultar etiqueta de metadatos de sonido</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etiqueta de metadatos oculta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etiqueta de metadatos mostrada</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ocultar etiqueta de enlace de vídeo completo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etiqueta de enlace de vídeo oculto</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etiqueta de enlace de vídeo mostrada</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ocultar botón de sonido</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Botón de sonido oculto</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Se muestra el botón de sonido</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ocultar barra de navegación</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Barra de navegación oculta</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Se muestra la barra de navegación</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Desactivar pantalla de final de vídeo sugerida</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Vídeos sugeridos serán desactivados</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Se mostrarán vídeos sugeridos</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ocultar fecha y hora de vídeo</string>
+ <string name="revanced_hide_timestamp_summary_on">Marca de tiempo oculta</string>
+ <string name="revanced_hide_timestamp_summary_off">Marca de tiempo mostrada</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ocultar paneles emergentes del jugador</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Los paneles emergentes del jugador están ocultos</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Se muestran paneles emergentes del jugador</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacidad de superposición del jugador</string>
+ <string name="revanced_player_overlay_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacidad de superposición del jugador debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">No me gusta no disponible temporalmente</string>
+ <string name="revanced_ryd_failure_connection_status_code">Dislikes no disponibles (estado %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">No me gusta no disponible</string>
+ <string name="revanced_ryd_failure_generic">Dislikes no disponibles (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recargar vídeo para votar usando Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikes son mostrados</string>
+ <string name="revanced_ryd_enable_summary_off">No se muestran Dislikes</string>
+ <string name="revanced_ryd_shorts_title">Mostrar no me gusta en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikes mostrados en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikes mostrados en Cortos\n\nLimitación: Las Dislikes no pueden aparecer en modo incógnito</string>
+ <string name="revanced_ryd_shorts_summary_off">Dislikes ocultos en Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Desliza como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikes mostrados como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikes mostrados como número</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Botón de compacto</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Botón \"Me gusta\" para el ancho mínimo</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Botón \"Me gusta\" para una mejor apariencia</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast no se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_about">Acerca de</string>
+ <string name="revanced_ryd_attribution_summary">Los datos son proporcionados por la API de Retorno de YouTube. Pulse aquí para aprender más</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Devuelve las estadísticas de la API de este dispositivo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tiempo de respuesta de la API, promedio</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tiempo de respuesta de API, mínimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tiempo de respuesta de la API, máximo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tiempo de respuesta API, último vídeo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes temporalmente no disponible - Límite de tasa de cliente API en efecto</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Votaciones de la API, número de llamadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">No hay llamadas de red</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Llamadas de red %d realizadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Votos de búsqueda de API, número de tiempos de espera</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">No hay llamadas de red agotadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Tiempo de espera de llamadas de red %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Límites de velocidad del cliente API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">No se encontraron límites de tasa de clientes</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Límite de tasa de cliente encontrado %d veces</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisegundos</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Habilitar barra de búsqueda ancha</string>
+ <string name="revanced_wide_searchbar_summary_on">Barra de búsqueda ancha habilitada</string>
+ <string name="revanced_wide_searchbar_summary_off">Barra de búsqueda ancha desactivada</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurar antiguas miniaturas de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Las miniaturas de la barra de búsqueda aparecerán por encima de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Las miniaturas de Seekbar aparecerán en pantalla completa</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Activar SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock es un sistema de fuentes múltiples para omitir partes molestas de vídeos de YouTube</string>
+ <string name="revanced_sb_appearance_category">Apariencia</string>
+ <string name="revanced_sb_enable_voting">Mostrar botón de voto</string>
+ <string name="revanced_sb_enable_voting_sum_on">Se muestra el botón de voto del segmento</string>
+ <string name="revanced_sb_enable_voting_sum_off">El botón de voto del segmento no se muestra</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Usar botón compacto de saltar</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Omitir botón con estilo para el ancho mínimo</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Omitir botón con estilo para la mejor apariencia</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ocultar automáticamente el botón omitir</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Omitir botón se oculta después de unos segundos</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Saltar botón mostrado para todo el segmento</string>
+ <string name="revanced_sb_general_skiptoast">Mostrar un brindis al saltar automáticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast se muestra cuando un segmento se omite automáticamente. Pulse aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast no se muestra. Toque aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_time_without">Mostrar longitud de vídeo sin segmentos</string>
+ <string name="revanced_sb_general_time_without_sum_on">Longitud del vídeo menos todos los segmentos, mostrados en paréntesis junto a la longitud completa del vídeo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Longitud completa del vídeo mostrada</string>
+ <string name="revanced_sb_create_segment_category">Creando nuevos segmentos</string>
+ <string name="revanced_sb_enable_create_segment">Mostrar botón crear nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">No se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_general_adjusting">Ajustar nuevo paso de segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Número de milisegundos que los botones de ajuste de tiempo se mueven al crear nuevos segmentos</string>
+ <string name="revanced_sb_general_adjusting_invalid">El valor debe ser un número positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Ver pautas</string>
+ <string name="revanced_sb_guidelines_preference_sum">Las directrices contienen reglas y consejos para crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_title">Siga las pautas</string>
+ <string name="revanced_sb_guidelines_popup_content">Lee las directrices de SponsorBlock antes de crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Ya leido</string>
+ <string name="revanced_sb_guidelines_popup_open">Muéstrame</string>
+ <string name="revanced_sb_general">General</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast no se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_general_skipcount">Habilitar rastreo del conteo de saltos</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Permite que la tabla de clasificación de SponsorBlock sepa cuánto tiempo se ha ahorrado. Un mensaje se envía al tablero de clasificación cada vez que se omite un segmento</string>
+ <string name="revanced_sb_general_skipcount_sum_off">El rastreo del conteo de saltos no está habilitado</string>
+ <string name="revanced_sb_general_min_duration">Duración mínima del segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">Los segmentos más cortos que este valor (en segundos) no se mostrarán o se omitirán</string>
+ <string name="revanced_sb_general_uuid">Tu id de usuario privado</string>
+ <string name="revanced_sb_general_uuid_sum">Esto debería mantenerse en privado. Esto es como una contraseña y no debe ser compartido con nadie. Si alguien tiene esto, puede suplantarte</string>
+ <string name="revanced_sb_general_uuid_invalid">El id de usuario privado debe tener al menos 30 caracteres</string>
+ <string name="revanced_sb_general_api_url">Cambiar URL API</string>
+ <string name="revanced_sb_general_api_url_sum">La dirección que SponsorBlock utiliza para hacer llamadas al servidor</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">La URL de API no es válida</string>
+ <string name="revanced_sb_api_url_changed">URL de API cambiada</string>
+ <string name="revanced_sb_settings_ie">Importar / Exportar ajustes</string>
+ <string name="revanced_sb_settings_copy">Copiar</string>
+ <string name="revanced_sb_settings_ie_sum">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock. Esto incluye tu id de usuario privado. Asegúrate de compartirlo sabiamente</string>
+ <string name="revanced_sb_settings_import_successful">Configuración importada correctamente</string>
+ <string name="revanced_sb_settings_import_failed">Error al importar: %s</string>
+ <string name="revanced_sb_settings_export_failed">Error al exportar: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Tu configuración contiene un usuario privado de SponsorBlock.\n\nTu id de usuario es como una contraseña y nunca debe ser compartida.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">No mostrar de nuevo</string>
+ <string name="revanced_sb_diff_segments">Cambiar comportamiento del segmento</string>
+ <string name="revanced_sb_segments_sponsor">Patrocinador</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoción pagada, referencias pagadas y anuncios directos. No para autopromoción o gritos gratuitos a causas/creadores/sitios web/productos que les gustan</string>
+ <string name="revanced_sb_segments_selfpromo">Promover no pagado/autoestima</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Similar a \'Patrocinador\' excepto por falta de pago o autopromoción. Incluye secciones sobre meritud, donaciones o información sobre con quién colaboraron</string>
+ <string name="revanced_sb_segments_interaction">Recordatorio de interacción (enviar)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un pequeño recordatorio para gustar, suscribirse o seguirlos en medio del contenido. Si es largo o sobre algo específico, debería estar bajo autopromoción</string>
+ <string name="revanced_sb_segments_highlight">Resaltar</string>
+ <string name="revanced_sb_segments_highlight_sum">La parte del vídeo que la mayoría de la gente está buscando</string>
+ <string name="revanced_sb_segments_intro">Intermisión/Animación de introducción</string>
+ <string name="revanced_sb_segments_intro_sum">Un intervalo sin contenido real. Podría ser una pausa, marco estático o animación de repetición. No incluye transiciones que contengan información</string>
+ <string name="revanced_sb_segments_outro">Tarjetas/Créditos</string>
+ <string name="revanced_sb_segments_outro_sum">Créditos o cuando aparecen las tarjetas finales de YouTube. No para conclusiones con información</string>
+ <string name="revanced_sb_segments_preview">Vista previa/Recapitular/Juego</string>
+ <string name="revanced_sb_segments_preview_sum">Colección de clips que muestran lo que viene o lo que pasó en el vídeo o en otros videos de una serie, donde toda la información se repite en otro lugar</string>
+ <string name="revanced_sb_segments_filler">Rellenar tangente/chistes</string>
+ <string name="revanced_sb_segments_filler_sum">Escenas tangenciales añadidas sólo para relleno o humor que no están obligadas a entender el contenido principal del vídeo. No incluye segmentos proporcionando detalles de contexto o fondo</string>
+ <string name="revanced_sb_segments_nomusic">Música: Sección no musical</string>
+ <string name="revanced_sb_segments_nomusic_sum">Sólo para usar en vídeos de música. Secciones de vídeos de música sin música, que no están cubiertas por otra categoría</string>
+ <string name="revanced_sb_skip_button_compact">Saltar</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Resaltar</string>
+ <string name="revanced_sb_skip_button_sponsor">Saltar patrocinador</string>
+ <string name="revanced_sb_skip_button_selfpromo">Saltar promoción</string>
+ <string name="revanced_sb_skip_button_interaction">Saltar interacción</string>
+ <string name="revanced_sb_skip_button_highlight">Omitir a resaltado</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Saltar intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_intro_end">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_middle">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_end">Saltar resumen</string>
+ <string name="revanced_sb_skip_button_filler">Saltar relleno</string>
+ <string name="revanced_sb_skip_button_nomusic">Omitir no música</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Saltar segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Patrocinador omitido</string>
+ <string name="revanced_sb_skipped_selfpromo">Autopromoción omitida</string>
+ <string name="revanced_sb_skipped_interaction">Recordatorio omitido</string>
+ <string name="revanced_sb_skipped_highlight">Saltado a destacar</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro omitido</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_intro_end">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_outro">Saltar outro</string>
+ <string name="revanced_sb_skipped_preview_beginning">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_middle">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_end">Resumen omitido</string>
+ <string name="revanced_sb_skipped_filler">Relleno omitido</string>
+ <string name="revanced_sb_skipped_nomusic">Se omitió una sección de no-música</string>
+ <string name="revanced_sb_skipped_unsubmitted">Se omitió el segmento no enviado</string>
+ <string name="revanced_sb_skipped_multiple_segments">Se omitieron varios segmentos</string>
+ <string name="revanced_sb_skip_automatically">Saltar automáticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Saltar automáticamente una vez</string>
+ <string name="revanced_sb_skip_showbutton">Mostrar un botón saltar</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostrar en la barra de búsqueda</string>
+ <string name="revanced_sb_skip_ignore">Desactivar</string>
+ <string name="revanced_sb_submit_failed_invalid">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock está temporalmente abajo</string>
+ <string name="revanced_sb_submit_failed_unknown_error">No se puede enviar el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">No se puede enviar el segmento.\nTasa limitada (demasiados usuarios o IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">No se puede enviar el segmento.\nYa existe</string>
+ <string name="revanced_sb_submit_succeeded">Segmento enviado correctamente</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporalmente no está disponible (API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporalmente no disponible (estado %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporalmente no está disponible</string>
+ <string name="revanced_sb_vote_failed_timeout">No se puede votar por el segmento (API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">No se puede votar por el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">No se puede votar por el segmento: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Bajar voto</string>
+ <string name="revanced_sb_vote_category">Cambiar categoría</string>
+ <string name="revanced_sb_vote_no_segments">No hay segmentos para votar</string>
+ <string name="revanced_sb_new_segment_choose_category">Elegir la categoría del segmento</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categoría está desactivada en la configuración. Habilitar la categoría para enviar.</string>
+ <string name="revanced_sb_new_segment_title">Nuevo segmento de SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Establecer %1$02d:%2$02d:%3$03d como inicio o final de un nuevo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">empezar</string>
+ <string name="revanced_sb_new_segment_mark_end">fin</string>
+ <string name="revanced_sb_new_segment_now">ahora</string>
+ <string name="revanced_sb_new_segment_time_start">Tiempo que el segmento comienza en</string>
+ <string name="revanced_sb_new_segment_time_end">Tiempo que el segmento termina en</string>
+ <string name="revanced_sb_new_segment_confirm_title">¿Son correctos los tiempos?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">El segmento es desde\n\n%1$s\nhasta\n%2$s\n\n(%3$s)\n\n¿Listo para enviarlo?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Inicio debe ser antes del final</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marcar dos ubicaciones en la barra de tiempo primero</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Previsualizar el segmento y asegurarse de que se salta sin problemas</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Editar temporización del segmento manualmente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">¿Quiere editar el cronograma para el inicio o fin del segmento?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Tiempo dado no válido</string>
+ <string name="revanced_sb_stats">Estadísticas</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Estadísticas temporalmente no disponibles (API está caída)</string>
+ <string name="revanced_sb_stats_loading">Cargando...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock está desactivado</string>
+ <string name="revanced_sb_stats_username">Tu nombre de usuario: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Pulsa aquí para cambiar tu nombre de usuario</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">No se puede cambiar el nombre de usuario: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nombre de usuario cambiado correctamente</string>
+ <string name="revanced_sb_stats_reputation">Tu reputación es <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Has creado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">Tabla de clasificación de SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Has salvado personas de segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Pulsa aquí para ver las estadísticas globales y los mejores colaboradores</string>
+ <string name="revanced_sb_stats_saved_sum">Eso es <b>%s</b> de sus vidas.<br>Toca aquí para ver la tabla de clasificación</string>
+ <string name="revanced_sb_stats_self_saved">Te has saltado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_sum">Eso es <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">¿Restablecer contador de segmentos saltados?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s horas %2$s minutos</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutos %2$s segundos</string>
+ <string name="revanced_sb_stats_saved_second_format">%s segundos</string>
+ <string name="revanced_sb_color_dot_label">Color:</string>
+ <string name="revanced_sb_color_changed">Color cambiado</string>
+ <string name="revanced_sb_color_reset">Reinicio de color</string>
+ <string name="revanced_sb_color_invalid">Código de color inválido</string>
+ <string name="revanced_sb_reset_color">Reiniciar color</string>
+ <string name="revanced_sb_reset">Restablecer</string>
+ <string name="revanced_sb_about">Acerca de</string>
+ <string name="revanced_sb_about_api_sum">Los datos son proporcionados por la API de SponsorBlock. Pulsa aquí para aprender más y ver las descargas de otras plataformas</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versión de la aplicación Spoof</string>
+ <string name="revanced_spoof_app_version_summary_on">Versión falseada</string>
+ <string name="revanced_spoof_app_version_summary_off">Versión no falseada</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">La versión de la aplicación será suplantada por una versión anterior de YouTube.\n\nEsto cambiará la apariencia y las funciones de la aplicación, pero pueden ocurrir efectos secundarios desconocidos.\n\nSi luego se desactiva, se recomienda borrar los datos de la aplicación para prevenir errores de interfaz de usuario.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Destino de versión de la aplicación Spoof</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurar RYD en modo incógnito cortos</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurar la velocidad de vídeo ancha & menú de calidad</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurar pestaña de biblioteca</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurar la vieja lista de reproducción shelf</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurar la disposición antigua de la interfaz de usuario</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Establecer página de inicio</string>
+ <string name="revanced_start_page_entry_0">Predeterminado</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Inicio</string>
+ <string name="revanced_start_page_entry_2">Buscar</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Suscripciones</string>
+ <string name="revanced_start_page_entry_4">Explorar</string>
+ <string name="revanced_start_page_entry_5">Acortes</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Pestaña</string>
+ <string name="revanced_start_page_entry_7">Vídeos gustados</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historial</string>
+ <string name="revanced_start_page_entry_9">Tendencias</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Desactivar reanudación del reproductor</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">El reproductor corto no se reanudará al iniciar la aplicación</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">El reproductor corto se reanudará al iniciar la aplicación</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Habilitar diseño de tablet</string>
+ <string name="revanced_tablet_layout_summary_on">Diseño de tablet habilitado</string>
+ <string name="revanced_tablet_layout_summary_off">Diseño de tablet deshabilitado</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Los mensajes de la comunidad no se muestran en los diseños de tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijugador</string>
+ <string name="revanced_miniplayer_screen_summary">Cambiar el estilo del reproductor minimizado de la aplicación</string>
+ <string name="revanced_miniplayer_type_title">Tipo de minijugador</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Teléfono</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderna 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderna 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderna 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ocultar botones de expansión y cierre</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Los botones están ocultos\n(desliza el minijugador para expandir o cerrar)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Mostrar los botones de ampliación y cierre</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ocultar subtextos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Los subtextos están ocultos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Los subtextos se muestran</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ocultar botones de omitir hacia adelante y atrás</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Saltar adelante y atrás están ocultos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Saltar adelante y atrás se muestran</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">La opacidad de superposición del Miniplayer debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Activar la pantalla de carga del degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_on">La pantalla de carga tendrá un fondo de degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_off">La pantalla de carga tendrá un fondo sólido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Activar el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Se muestra el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Se muestra el color original de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_title">Color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_summary">El color de la barra de ajustes</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valor de color de la barra de búsqueda inválido. Usando el valor por defecto.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Pestaña</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Pestaña de suscripción</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Pestaña</string>
+ <string name="revanced_alt_thumbnail_player_title">Listas de reproducción, recomendaciones</string>
+ <string name="revanced_alt_thumbnail_search_title">Resultados de búsqueda</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Deflecha & miniaturas originales</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Flecha & Todavía capturas</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Sigue capturando</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeFlecha proporciona miniaturas de origen crowd para vídeos de YouTube. Estas uñas suelen ser más relevantes que las proporcionadas por YouTube\n\nSi están activadas, las URL de vídeo se enviarán al servidor API y no se enviarán otros datos. Si un video no tiene miniaturas de Flecha Deprimida, entonces las capturas originales o todavía se muestran\n\nPulsa aquí para aprender más sobre DeFlecha</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast no se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">La URL del final de la caché en miniatura de DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Todavía captura de vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Las capturas se toman desde el principio/medio/final de cada vídeo. Estas imágenes están incorporadas en YouTube y no se utiliza ninguna API externa</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usar capturas aún rápidas</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Usar captura de calidad media todavía. Las miniaturas se cargarán más rápido, pero streams en vivo, no liberados o vídeos muy antiguos pueden mostrar miniaturas en blanco</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Usando capturas de alta calidad</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tiempo de vídeo desde el que tomar aún las capturas</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Inicio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Medio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fin del vídeo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow no disponible. (código de estado: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeFlecha temporalmente no disponible</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Mostrar anuncios revalorizados</string>
+ <string name="revanced_announcements_summary_on">Los anuncios se muestran al iniciar</string>
+ <string name="revanced_announcements_summary_off">Los anuncios no se muestran al iniciar</string>
+ <string name="revanced_announcements_enabled_summary">Mostrar anuncios al iniciar</string>
+ <string name="revanced_announcements_connection_failed">Error al conectar con el proveedor de anuncios</string>
+ <string name="revanced_announcements_dialog_dismiss">Descartar</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Activar autorepetición</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-repetición habilitada</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-repetición desactivada</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Dimensiones del dispositivo</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensiones del dispositivo falseadas\n\nCalidad de vídeo más alta puede ser desbloqueada, pero puede experimentar la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensiones del dispositivo no falseadas\n\nHabilitar esto puede desbloquear mayores calidades de vídeo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Activar esto puede causar retraso en la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Ajustes de GmsCore</string>
+ <string name="microg_settings_summary">Configuración de GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Redirecciones URL Bypass</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Se omiten las redirecciones URL</string>
+ <string name="revanced_bypass_url_redirects_summary_off">No se omiten las redirecciones URL</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Abrir enlaces en el navegador</string>
+ <string name="revanced_external_browser_summary_on">Abriendo enlaces externamente</string>
+ <string name="revanced_external_browser_summary_off">Abrir enlaces en la aplicación</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Reproducción en segundo plano</string>
+ <string name="revanced_background_playback_summary">Esta configuración se puede encontrar en Ajustes -> Fondo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Quitar parámetro de consulta de rastreo</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parámetro de la consulta de seguimiento se elimina de los enlaces</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parámetro de la consulta de seguimiento no se elimina de los enlaces</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Desactivar hábitos de zoom</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hápticas desactivadas</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics están habilitados</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Calidad automática</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Recordar cambios de calidad de vídeo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los vídeos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Los cambios de calidad sólo se aplican al vídeo actual</string>
+ <string name="revanced_video_quality_default_wifi_title">Calidad de vídeo predeterminada en la red Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Calidad de vídeo predeterminada en la red móvil</string>
+ <string name="revanced_remember_video_quality_mobile">móvil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Cambió la calidad predeterminada %1$s a: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostrar botón de diálogo de velocidad</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Botón visible</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocidades de reproducción personalizadas</string>
+ <string name="revanced_custom_playback_speeds_summary">Añadir o cambiar las velocidades de reproducción disponibles</string>
+ <string name="revanced_custom_playback_speeds_invalid">Velocidades personalizadas deben ser inferiores a %s. Utilizando valores predeterminados.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Velocidades de reproducción personalizadas no válidas. Utilizando valores predeterminados.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Recordar cambios de velocidad de reproducción</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Los cambios de velocidad de reproducción se aplican a todos los vídeos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Los cambios de velocidad de reproducción sólo se aplican al vídeo actual</string>
+ <string name="revanced_playback_speed_default_title">Velocidad de reproducción por defecto</string>
+ <string name="revanced_remember_playback_speed_toast">Cambió la velocidad predeterminada a: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurar menú de calidad de vídeo antiguo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Se muestra el antiguo menú de calidad de vídeo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">El antiguo menú de calidad de vídeo no se muestra</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Habilitar diapositiva para buscar</string>
+ <string name="revanced_slide_to_seek_summary_on">Deslizar para buscar está activado</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide to seek no está habilitado</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_screen_summary">Fusiona al cliente para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_client_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_summary_on">Cliente falseado</string>
+ <string name="revanced_spoof_client_summary_off">El cliente no está falsificado\n\nEs posible que la reproducción de vídeo no funcione</string>
+ <string name="revanced_spoof_client_user_dialog_message">Desactivar esta configuración puede causar problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof cliente a iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">El cliente está actualmente falseado a iOS\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Es posible que el historial del reloj no funcione\n• Puede que falten más calidad de vídeo\n• Los streams en vivo no pueden reproducirse como audio solo\n• streams en vivo no disponibles en Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">El cliente está actualmente falseado a Android VR\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Los vídeos para niños no se reproducirán\n• Los vídeos en pausa pueden reanudarse aleatoriamente\n• Las miniaturas de barras cortas de baja calidad\n• El botón de descarga siempre está oculto\n• Las tarjetas de la pantalla final siempre están ocultas</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Las miniaturas del cliente de Spoof no están disponibles (API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Las miniaturas del cliente Spoof temporalmente no están disponibles: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Espoya la firma de la aplicación para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">La firma de la aplicación falseada\n\nLos efectos laterales incluyen:\n• La tasa de bits mejorada no está disponible\n• Los vídeos no se pueden descargar\n• No hay miniaturas en la barra de búsqueda para vídeos pagados</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">La firma de la aplicación no está falseada\n\nLa reproducción de vídeo puede no funcionar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Desactivar esta configuración causará problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof firma de aplicación en el feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">La firma de la aplicación está falseada\n\nLos efectos laterales incluyen:\n• Los vídeos alimentarios no tienen subtítulos\n• Los vídeos reproducidos automáticamente se mostrarán en tu historial de relojes</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Firma de la aplicación no simulada para videos de feed\n\nLos vídeos alimentarios se reproducirán durante menos de 1 minuto antes de encontrar problemas de reproducción</string>
+ <string name="revanced_spoof_storyboard_title">Cuadro de historias</string>
+ <string name="revanced_spoof_storyboard_summary_on">Cuadro de historias falseado</string>
+ <string name="revanced_spoof_storyboard_summary_off">El storyboard no está falseado\n\nLos efectos laterales incluyen:\n• Sin modo ambiente\n• Las miniaturas de la barra de búsqueda están ocultas</string>
+ <string name="revanced_spoof_storyboard_timeout">El storyboard espía no está disponible temporalmente (API)</string>
+ <string name="revanced_spoof_storyboard_io_exception">El storyboard espía no está disponible temporalmente: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Activar brillo HDR automático</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Brillo automático HDR está habilitado</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Brillo automático HDR está desactivado</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquear anuncios de audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anuncios de audio bloqueados</string>
+ <string name="revanced_block_audio_ads_summary_off">Anuncios de audio desbloqueados</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s no está disponible. Los anuncios pueden mostrarse. Intenta cambiar a otro servicio de bloque de anuncios en la configuración.</string>
+ <string name="revanced_embedded_ads_service_failed">El servidor %s devolvió un error. Los anuncios pueden mostrar. Intente cambiar a otro servicio de bloque de anuncios en la configuración.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquear anuncios de vídeo incrustados</string>
+ <string name="revanced_block_embedded_ads_entry_1">Desactivado</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy luminoso</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy MoradoAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquear anuncios de vídeo</string>
+ <string name="revanced_block_video_ads_summary_on">Los anuncios de vídeo están bloqueados</string>
+ <string name="revanced_block_video_ads_summary_off">Los anuncios de vídeo están desbloqueados</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mensaje eliminado</string>
+ <string name="revanced_show_deleted_messages_title">Mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_1">No mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ocultar mensajes eliminados detrás de un spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostrar mensajes borrados como texto cruzado</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Reclamar automáticamente los puntos de canal</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Los puntos de canal se reclaman automáticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Los puntos de canal no se reclaman automáticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Activar modo de depuración de Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">El modo de depuración de Twitch está habilitado (no recomendado)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">El modo de depuración de Twitch está desactivado</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Ajustes de ReVanced</string>
+ <string name="revanced_ads_screen_title">Anuncios</string>
+ <string name="revanced_ads_screen_summary">Ajustes de bloqueo de anuncios</string>
+ <string name="revanced_chat_screen_title">Chatear</string>
+ <string name="revanced_chat_screen_summary">Ajustes del chat</string>
+ <string name="revanced_misc_screen_title">Misc</string>
+ <string name="revanced_misc_screen_summary">Ajustes multifuncionales</string>
+ <string name="revanced_general_category_title">Ajustes generales</string>
+ <string name="revanced_other_category_title">Otros ajustes</string>
+ <string name="revanced_client_ads_category_title">Anuncios del cliente</string>
+ <string name="revanced_surestream_ads_category_title">Anuncios del lado del servidor</string>
+ <string name="revanced_twitch_debug_title">Depurar registro</string>
+ <string name="revanced_twitch_debug_summary_on">Los registros de depuración están habilitados</string>
+ <string name="revanced_twitch_debug_summary_off">Los registros de depuración están desactivados</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-es-rES/strings.xml b/src/main/resources/addresources/values-es-rES/strings.xml
new file mode 100644
index 0000000000..7b6f2b8e86
--- /dev/null
+++ b/src/main/resources/addresources/values-es-rES/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">¿Desea continuar?</string>
+ <string name="revanced_settings_reset">Restablecer</string>
+ <string name="revanced_settings_restart_title">Actualizar y reiniciar</string>
+ <string name="revanced_settings_restart">Reiniciar</string>
+ <string name="revanced_settings_import">Importar</string>
+ <string name="revanced_settings_import_copy">Copiar</string>
+ <string name="revanced_settings_import_reset">Configuración revanzada restablecida por defecto</string>
+ <string name="revanced_settings_import_success">Configuración importada de %d</string>
+ <string name="revanced_settings_import_failure_parse">Error de importación: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore no está instalado. Instálala.</string>
+ <string name="gms_core_dialog_title">Acción necesaria</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore no tiene permiso para ejecutarse en segundo plano.\n\nSigue la guía \"No cerrar mi aplicación\" para tu teléfono y aplica las instrucciones a tu instalación de MicroG.\n\nEsto es necesario para que la aplicación funcione.</string>
+ <string name="gms_core_dialog_open_website_text">Abrir sitio web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Las optimizaciones de la batería de MicroG GmsCore deben estar deshabilitadas para evitar problemas.\n\nPulse el botón continuar y desactive las optimizaciones de la batería.</string>
+ <string name="gms_core_dialog_continue_text">Continuar</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Estás usando la versión de ReVanced Patches <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Nota</string>
+ <string name="revanced_settings_about_links_dev_body">Esta versión es un pre-lanzamiento y puede que experimentes problemas inesperados</string>
+ <string name="revanced_settings_about_links_header">Enlaces oficiales</string>
+ <string name="revanced_pref_import_export_title">Importar / Exportar</string>
+ <string name="revanced_pref_import_export_summary">Importar / Exportar ajustes de ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Acerca de</string>
+ <string name="revanced_settings_screen_01_ads_title">Anuncios</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniaturas alternativas</string>
+ <string name="revanced_settings_screen_03_feed_title">Fuente</string>
+ <string name="revanced_settings_screen_04_player_title">Reproductor</string>
+ <string name="revanced_settings_screen_05_general_title">Diseño general</string>
+ <string name="revanced_settings_screen_06_shorts_title">Acortes</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controles de deslizamiento</string>
+ <string name="revanced_settings_screen_11_misc_title">Miscelánea</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depuración</string>
+ <string name="revanced_debug_screen_summary">Activar o desactivar las opciones de depuración</string>
+ <string name="revanced_debug_title">Depurar registro</string>
+ <string name="revanced_debug_summary_on">Los registros de depuración están habilitados</string>
+ <string name="revanced_debug_summary_off">Los registros de depuración están desactivados</string>
+ <string name="revanced_debug_protobuffer_title">Búfer de protocolo de registro</string>
+ <string name="revanced_debug_protobuffer_summary_on">Los registros de depuración incluyen el búfer proto</string>
+ <string name="revanced_debug_protobuffer_summary_off">Los registros de depuración no incluyen el búfer proto</string>
+ <string name="revanced_debug_stacktrace_title">Registrar stack traces</string>
+ <string name="revanced_debug_stacktrace_summary_on">Los registros de depuración incluyen stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">Los registros de depuración no incluyen stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Mostrar brindis en error ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast mostrado si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast no se muestra si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Desactivar los errores toasts oculta todas las notificaciones de error ReVanced\n\nNo se le notificará de ningún evento inesperado.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Desactivar como / botón de suscripción brillo</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">El botón de \"Me gusta\" y \"suscribir\" no brillará cuando se mencione</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">El botón de \"Me gusta\" y \"Suscribir\" brillará cuando se mencione</string>
+ <string name="revanced_hide_gray_separator_title">Ocultar separador gris</string>
+ <string name="revanced_hide_gray_separator_summary_on">Los separadores de grises están ocultos</string>
+ <string name="revanced_hide_gray_separator_summary_off">Se muestran los separadores grises</string>
+ <string name="revanced_hide_channel_watermark_title">Ocultar marca de agua del canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Marca de agua oculta</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Marca de agua mostrada</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ocultar shelves horizontales</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Los estantes están ocultos como:\n• Romper noticias\n• Continuar viendo\n• Explorar más canales\n• Comprar\n• Verlo de nuevo</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Se muestran las estanterías</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ocultar botón \'Unirse\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Se muestra el botón</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ocultar shelf \'Para ti\' en la página del canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Estante oculto</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Estante mostrado</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ocultar el botón \'Notificarme\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Se muestra el botón</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ocultar recomendaciones \"Personas también observadas\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Recomendaciones ocultas</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Se muestran las recomendaciones</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ocultar botón \'Mostrar más\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_show_more_button_summary_off">Se muestra el botón</string>
+ <string name="revanced_hide_timed_reactions_title">Ocultar reacciones temporizadas</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Las reacciones temporizadas están ocultas</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Se muestran reacciones temporizadas</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ocultar la cabecera de resultados de búsqueda</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Encabezado de estante oculto</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Encabezado del estante se muestra</string>
+ <string name="revanced_hide_channel_guidelines_title">Ocultar pautas de canal</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Las pautas del canal están ocultas</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Se muestran las pautas del canal</string>
+ <string name="revanced_hide_expandable_chip_title">Ocultar chip expandible en videos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Las fichas expandibles están ocultas</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Se muestran fichas expandibles</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ocultar pie de página del menú de calidad de vídeo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Pie de menú de calidad de vídeo oculto</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">El pie del menú de calidad de vídeo se muestra</string>
+ <string name="revanced_hide_community_posts_title">Ocultar mensajes comunitarios</string>
+ <string name="revanced_hide_community_posts_summary_on">Los mensajes de la comunidad están ocultos</string>
+ <string name="revanced_hide_community_posts_summary_off">Se muestran las publicaciones de la comunidad</string>
+ <string name="revanced_hide_compact_banner_title">Ocultar banners compactos</string>
+ <string name="revanced_hide_compact_banner_summary_on">Los banners de pacto están ocultos</string>
+ <string name="revanced_hide_compact_banner_summary_off">Se muestran los banners compactos</string>
+ <string name="revanced_hide_movies_section_title">Ocultar sección de películas</string>
+ <string name="revanced_hide_movies_section_summary_on">La sección de películas está oculta</string>
+ <string name="revanced_hide_movies_section_summary_off">Se muestra la sección de películas</string>
+ <string name="revanced_hide_feed_survey_title">Ocultar encuestas</string>
+ <string name="revanced_hide_feed_survey_summary_on">Las encuestas de la fuente están ocultas</string>
+ <string name="revanced_hide_feed_survey_summary_off">Se muestran encuestas de la fuente</string>
+ <string name="revanced_hide_community_guidelines_title">Ocultar directrices comunitarias</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Las directrices comunitarias están ocultas</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Se muestran las directrices comunitarias</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ocultar directrices de la comunidad de suscriptores</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Las directrices comunitarias de los suscriptores están ocultas</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Se muestran las pautas de la comunidad de suscriptores</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ocultar shelf del miembro del canal</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">La shelf del miembro del canal está oculta</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Se muestra la shelf del miembro del canal</string>
+ <string name="revanced_hide_emergency_box_title">Ocultar cajas de emergencia</string>
+ <string name="revanced_hide_emergency_box_summary_on">Las cajas de emergencia están ocultas</string>
+ <string name="revanced_hide_emergency_box_summary_off">Se muestran cajas de emergencia</string>
+ <string name="revanced_hide_info_panels_title">Ocultar paneles de información</string>
+ <string name="revanced_hide_info_panels_summary_on">Los paneles de información están ocultos</string>
+ <string name="revanced_hide_info_panels_summary_off">Los paneles de información se muestran</string>
+ <string name="revanced_hide_medical_panels_title">Ocultar paneles médicos</string>
+ <string name="revanced_hide_medical_panels_summary_on">Los paneles médicos están ocultos</string>
+ <string name="revanced_hide_medical_panels_summary_off">Se muestran paneles médicos</string>
+ <string name="revanced_hide_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_playables_title">Ocultar reproducibles</string>
+ <string name="revanced_hide_playables_summary_on">Los reproductores están ocultos</string>
+ <string name="revanced_hide_playables_summary_off">Se muestran los reproductores</string>
+ <string name="revanced_hide_quick_actions_title">Ocultar acciones rápidas en pantalla completa</string>
+ <string name="revanced_hide_quick_actions_summary_on">Las acciones rápidas están ocultas</string>
+ <string name="revanced_hide_quick_actions_summary_off">Se muestran acciones rápidas</string>
+ <string name="revanced_hide_related_videos_title">Ocultar vídeos relacionados en acciones rápidas</string>
+ <string name="revanced_hide_related_videos_summary_on">Vídeos relacionados están ocultos</string>
+ <string name="revanced_hide_related_videos_summary_off">Vídeos relacionados se muestran</string>
+ <string name="revanced_hide_image_shelf_title">Ocultar la imagen en los resultados de búsqueda</string>
+ <string name="revanced_hide_image_shelf_summary_on">El shelf de la imagen está oculto</string>
+ <string name="revanced_hide_image_shelf_summary_off">Pantalla de imagen mostrada</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ocultar últimos mensajes</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Los últimos mensajes están ocultos</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Se muestran los últimos mensajes</string>
+ <string name="revanced_hide_mix_playlists_title">Ocultar listas de mezcla</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Las listas de reproducción mixtas están ocultas</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mezclar listas de reproducción son mostradas</string>
+ <string name="revanced_hide_artist_cards_title">Ocultar tarjetas de artistas</string>
+ <string name="revanced_hide_artist_cards_summary_on">Las tarjetas de artistas están ocultas</string>
+ <string name="revanced_hide_artist_cards_summary_off">Se muestran las tarjetas del artista</string>
+ <string name="revanced_hide_chips_shelf_title">Ocultar shelf de fichas</string>
+ <string name="revanced_hide_chips_shelf_summary_on">La shelf de chips está oculta</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Se muestra la shelf de chips</string>
+ <string name="revanced_hide_attributes_section_title">Ocultar sección de atributos</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Lugares destacados\', Las secciones de juegos y música están ocultas</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Lugares destacados\', Se muestran las secciones de juegos y música</string>
+ <string name="revanced_hide_chapters_section_title">Ocultar sección de capítulos</string>
+ <string name="revanced_hide_chapters_section_summary_on">La sección de capítulos está oculta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Se muestra la sección de capítulos</string>
+ <string name="revanced_hide_podcast_section_title">Ocultar la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">La sección \'Explorar el podcast\' está oculta</string>
+ <string name="revanced_hide_podcast_section_summary_off">Se muestra la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_info_cards_section_title">Ocultar sección de tarjetas de información</string>
+ <string name="revanced_hide_info_cards_section_summary_on">La sección de tarjetas de información está oculta</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Se muestra la sección de tarjetas de información</string>
+ <string name="revanced_hide_transcript_section_title">Ocultar sección de transcripción</string>
+ <string name="revanced_hide_transcript_section_summary_on">La sección transcripción está oculta</string>
+ <string name="revanced_hide_transcript_section_summary_off">Se muestra la sección transcripción</string>
+ <string name="revanced_hide_description_components_screen_title">Descripción del vídeo</string>
+ <string name="revanced_hide_description_components_screen_summary">Ocultar o mostrar componentes de descripción de vídeo</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizado</string>
+ <string name="revanced_custom_filter_screen_summary">Ocultar componentes usando filtros personalizados</string>
+ <string name="revanced_custom_filter_title">Activar filtro personalizado</string>
+ <string name="revanced_custom_filter_summary_on">Filtro personalizado activado</string>
+ <string name="revanced_custom_filter_summary_off">Filtro personalizado desactivado</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizado</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista de cadenas del constructor de rutas del componente para filtrar separadas por una nueva línea</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizado no válido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ocultar contenido de palabra clave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ocultar videos de búsqueda y feed usando filtros de palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_title">Ocultar videos domésticos por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Los videos en la pestaña de inicio son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Los videos en la pestaña de inicio no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ocultar vídeos de suscripción por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Los videos en la pestaña de suscripciones son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Los videos en la pestaña de suscripciones no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_title">Ocultar resultados de búsqueda por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Los resultados de la búsqueda son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Los resultados de la búsqueda no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Palabras clave a ocultar</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Palabras clave y frases para ocultar, separadas por nuevas líneas\n\nLas palabras con letras mayúsculas en el centro deben ser ingresadas con la caja (por ejemplo: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Acerca del filtrado de palabras clave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Los resultados de inicio/suscripción/búsqueda se filtran para ocultar contenido que coincide con las frases de palabras clave\n\nLimitaciones\n• Algunos cortos pueden no estar ocultos\n• Algunos componentes de la interfaz pueden no estar ocultos\n• Buscar una palabra clave no puede mostrar resultados</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Palabra clave inválida. No se puede usar: \'%s\' como filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Palabra clave no válida. \'%1$s\' es menor de %2$d caracteres</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">La palabra clave \'$s\' oculta todos los vídeos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ocultar anuncios generales</string>
+ <string name="revanced_hide_general_ads_summary_on">Los anuncios generales están ocultos</string>
+ <string name="revanced_hide_general_ads_summary_off">Se muestran anuncios generales</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ocultar anuncios a pantalla completa</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Los anuncios a pantalla completa están ocultos\n\nEsta función solo está disponible para dispositivos más antiguos</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Se muestran anuncios a pantalla completa</string>
+ <string name="revanced_hide_buttoned_ads_title">Ocultar anuncios botonados</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Los anuncios bloqueados están ocultos</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Se muestran anuncios botonados</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ocultar etiqueta de promoción de pago</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Etiqueta de promoción pagada está oculta</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Etiqueta de promoción pagada se muestra</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ocultar tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Las tarjetas autopatrocinadas están ocultas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Se muestran las tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_products_banner_title">Ocultar banner para ver los productos</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner oculto</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner mostrado</string>
+ <string name="revanced_hide_shopping_links_title">Ocultar enlaces de compras en la descripción de vídeo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Enlaces de compras están ocultos</string>
+ <string name="revanced_hide_shopping_links_summary_off">Se muestran enlaces de compras</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ocultar el botón \'Visitar tienda\' en las páginas del canal</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Botón oculto</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Se muestra el botón</string>
+ <string name="revanced_hide_web_search_results_title">Ocultar resultados de búsqueda web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Los resultados de búsqueda web están ocultos</string>
+ <string name="revanced_hide_web_search_results_summary_off">Se muestran los resultados de la búsqueda web</string>
+ <string name="revanced_hide_merchandise_banners_title">Ocultar banners de mercandise</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Los banners de mercadería están ocultos</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Se muestran los banners de Mercandise</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ocultar anuncios a pantalla completa sólo funciona con dispositivos antiguos</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ocultar promociones de YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Las promociones de YouTube Premium en el reproductor de vídeo están ocultas</string>
+ <string name="revanced_hide_get_premium_summary_off">Se muestran las promociones de YouTube Premium en el reproductor de vídeo</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ocultar video anuncios</string>
+ <string name="revanced_hide_video_ads_summary_on">Los anuncios de vídeo están ocultos</string>
+ <string name="revanced_hide_video_ads_summary_off">Los anuncios de vídeo se muestran</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiada al portapapeles</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL con marca de tiempo copiada</string>
+ <string name="revanced_copy_video_url_title">Mostrar botón URL de copia de vídeo</string>
+ <string name="revanced_copy_video_url_summary_on">El botón se muestra. Toque para copiar la URL del vídeo. Mantenga pulsado para copiar la URL del vídeo con la marca de tiempo</string>
+ <string name="revanced_copy_video_url_summary_off">El botón no se muestra</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostrar botón URL de la marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">El botón se muestra. Toque para copiar la URL del vídeo con la marca de tiempo. Toque y mantenga pulsado para copiar el vídeo sin marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Eliminar diálogo de discreción del visor</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Se eliminará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Se mostrará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Esto no pasa por alto la restricción de edad, sino que simplemente la acepta automáticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Descarga externa</string>
+ <string name="revanced_external_downloader_screen_summary">Configuración para el uso de un descargador externo</string>
+ <string name="revanced_external_downloader_title">Mostrar botón externo de descarga</string>
+ <string name="revanced_external_downloader_summary_on">Botón de descarga mostrado en el reproductor</string>
+ <string name="revanced_external_downloader_summary_off">Botón de descarga no mostrado en el reproductor</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Reemplazar el botón de descarga</string>
+ <string name="revanced_external_downloader_action_button_summary_on">El botón de descarga abre su descarga externa</string>
+ <string name="revanced_external_downloader_action_button_summary_off">El botón de descarga abre el descargador nativo en la aplicación</string>
+ <string name="revanced_external_downloader_name_title">Nombre del paquete del descargado</string>
+ <string name="revanced_external_downloader_name_summary">Nombre del paquete de su aplicación de descarga externa instalada, como NewPipe o Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s no está instalado. Por favor, instálelo.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Desactivar gesto de búsqueda preciso</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">El gesto está desactivado</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto habilitado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Habilitar toque en la barra de búsqueda</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar toping está habilitado</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar toping está desactivado</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Activar gesto de brillo</string>
+ <string name="revanced_swipe_brightness_summary_on">Deslizar brillo está habilitado</string>
+ <string name="revanced_swipe_brightness_summary_off">Deslizar brillo está desactivado</string>
+ <string name="revanced_swipe_volume_title">Activar gesto de volumen</string>
+ <string name="revanced_swipe_volume_summary_on">Deslizar volumen está habilitado</string>
+ <string name="revanced_swipe_volume_summary_off">Deslizar volumen está desactivado</string>
+ <string name="revanced_swipe_press_to_engage_title">Activar gesto de pulsar para deslizar</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pulsar para deslizar está habilitado</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pulsar para deslizar está desactivado</string>
+ <string name="revanced_swipe_haptic_feedback_title">Activar respuesta háptica</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Comentarios hápticos habilitados</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Respuesta háptica deshabilitada</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Guardar y restaurar brillo</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Guardar y restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">No guardar ni restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Activar gesto de brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Deslizar hacia abajo hasta el valor más bajo del gesto de brillo permite el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Deslizar hacia abajo hasta el valor más bajo no habilita el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Auto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tiempo de espera del deslizado</string>
+ <string name="revanced_swipe_overlay_timeout_summary">La cantidad de milisegundos que la superposición es visible</string>
+ <string name="revanced_swipe_text_overlay_size_title">Deslizar tamaño de texto superpuesto</string>
+ <string name="revanced_swipe_text_overlay_size_summary">El tamaño del texto para la capa de deslizamiento</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Deslizar visibilidad de fondo</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Visibilidad del fondo del deslizamiento</string>
+ <string name="revanced_swipe_threshold_title">Umbral de magnitud del deslizamiento</string>
+ <string name="revanced_swipe_threshold_summary">La cantidad de umbral para que se desliza</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Desactivar auto subtítulos</string>
+ <string name="revanced_auto_captions_summary_on">Los títulos automáticos están desactivados</string>
+ <string name="revanced_auto_captions_summary_off">Los títulos automáticos están habilitados</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Botones de acción</string>
+ <string name="revanced_hide_buttons_screen_summary">Ocultar o mostrar botones en videos</string>
+ <string name="revanced_hide_like_dislike_button_title">Ocultar me gusta y no me gusta</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Botones \"Me gusta\" y \"no me gusta\" están ocultos</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Se muestran botones \"Me gusta\" y \"no me gusta\"</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ocultar Compartir</string>
+ <string name="revanced_hide_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_share_button_summary_off">Se muestra el botón Compartir</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ocultar informe</string>
+ <string name="revanced_hide_report_button_summary_on">El botón Reportar está oculto</string>
+ <string name="revanced_hide_report_button_summary_off">Se muestra el botón Reportar</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ocultar Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ocultar descarga</string>
+ <string name="revanced_hide_download_button_summary_on">El botón de descarga está oculto</string>
+ <string name="revanced_hide_download_button_summary_off">Se muestra el botón de descarga</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ocultar Gracias</string>
+ <string name="revanced_hide_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">El botón del clip está oculto</string>
+ <string name="revanced_hide_clip_button_summary_off">Se muestra el botón de clip</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ocultar Guardar en lista</string>
+ <string name="revanced_hide_playlist_button_summary_on">El botón Guardar a la lista de reproducción está oculto</string>
+ <string name="revanced_hide_playlist_button_summary_off">Mostrar el botón Guardar a la lista</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ocultar botón de reproducción automática</string>
+ <string name="revanced_hide_autoplay_button_summary_on">El botón de reproducción automática está oculto</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Se muestra el botón de reproducción automática</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ocultar botón de subtítulos</string>
+ <string name="revanced_hide_captions_button_summary_on">Botón de subtítulos oculto</string>
+ <string name="revanced_hide_captions_button_summary_off">Botón de subtítulos mostrado</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ocultar botón de reparto</string>
+ <string name="revanced_hide_cast_button_summary_on">El botón de envío a otros dispositivos está oculto</string>
+ <string name="revanced_hide_cast_button_summary_off">El botón de envío a otros dispositivos es visible</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ocultar o cambiar botones en la barra de navegación</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ocultar Inicio</string>
+ <string name="revanced_hide_home_button_summary_on">El botón de inicio está oculto</string>
+ <string name="revanced_hide_home_button_summary_off">Se muestra el botón de inicio</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ocultar breves</string>
+ <string name="revanced_hide_shorts_button_summary_on">El botón de shorts está oculto</string>
+ <string name="revanced_hide_shorts_button_summary_off">El botón de shorts es visible</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ocultar Crear</string>
+ <string name="revanced_hide_create_button_summary_on">El botón Crear está oculto</string>
+ <string name="revanced_hide_create_button_summary_off">Se muestra el botón de crear</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ocultar suscripciones</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">El botón de suscripciones está oculto</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Se muestra el botón de suscripciones</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Cambiar Create con notificaciones</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">El botón Crear cambia con el botón de Notificaciones\n\nNota: Activar esto también oculta anuncios de vídeo por la fuerza</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">El botón Crear no se cambia con el botón de notificaciones</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ocultar etiquetas de botón de navegación</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Las etiquetas están ocultas</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Las etiquetas se muestran</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Ocultar o mostrar elementos del menú de vuelo del jugador</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ocultar leyendas</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Menú de subtítulos oculto</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menú de subtítulos mostrado</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ocultar ajustes adicionales</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Menú de configuración adicional oculto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Se muestra el menú de configuración adicional</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ocultar video de bucle</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">El menú de video Loop está oculto</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">El menú de Loop video se muestra</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ocultar modo ambiente</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menú de modo ambiente oculto</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Se muestra el menú de modo ambiente</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ocultar Ayuda & Comentarios</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">El menú de ayuda & comentarios está oculto</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Se muestra el menú Ayuda & comentarios</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ocultar velocidad de reproducción</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menú de velocidad de reproducción oculto</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Mostrar menú de velocidad de reproducción</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ocultar más información</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">El menú de más información está oculto</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Se muestra el menú de más información</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ocultar pantalla de bloqueo</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">El menú de la pantalla de bloqueo está oculto</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Se muestra el menú de pantalla de bloqueo</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ocultar pista de audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">El menú de pista de audio está oculto</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">El menú de pista de audio se muestra</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ocultar reloj en VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Ver en el menú VR está oculto</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Ver en el menú VR se muestra</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ocultar botones de vídeo anteriores & siguiente</string>
+ <string name="revanced_hide_player_buttons_summary_on">Los botones están ocultos</string>
+ <string name="revanced_hide_player_buttons_summary_off">Los botones se muestran</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ocultar álbumes</string>
+ <string name="revanced_hide_album_cards_summary_on">Las tarjetas de álbum están ocultas</string>
+ <string name="revanced_hide_album_cards_summary_off">Se muestran las tarjetas de álbum</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentarios</string>
+ <string name="revanced_comments_screen_summary">Ocultar o mostrar los componentes de sección de comentarios</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ocultar encabezado \'Comentarios por miembros\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">El encabezado \'Comentarios por miembros\' está oculto</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">La cabecera \'Comentarios por miembros\' se muestra</string>
+ <string name="revanced_hide_comments_section_title">Ocultar sección de comentarios</string>
+ <string name="revanced_hide_comments_section_summary_on">La sección de comentarios está oculta</string>
+ <string name="revanced_hide_comments_section_summary_off">Sección de comentarios mostrada</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ocultar botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">El botón \'Crear un corto\' está oculto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Se muestra el botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ocultar comentario de vista previa</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">El comentario de la vista previa está oculto</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Vista previa del comentario se muestra</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ocultar botón de gracias</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ocultar botones de hora y emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Botones Timestamp y emoji están ocultos</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Se muestran los botones Timestamp y emoji</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ocultar caja de recaudación</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">La caja de Crowdfunding está oculta</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Se muestra la caja de Crowdfunding</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ocultar tarjetas de pantalla final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Las tarjetas de pantalla de fin están ocultas</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Se muestran las tarjetas de la pantalla final</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra de filtros</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ocultar o mostrar la barra de filtros en el feed, la búsqueda y vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ocultar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Escondido en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Mostrar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ocultar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Oculto en la búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Mostrar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ocultar en vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Escondido en videos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Mostrar en vídeos relacionados</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ocultar botón de micrófono flotante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Botón de micrófono oculto</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Botón del micrófono mostrado</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Desactivar el modo ambiente en pantalla completa</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modo ambiente desactivado</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modo ambiente activado</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ocultar tarjetas de información</string>
+ <string name="revanced_hide_info_cards_summary_on">Las tarjetas de información están ocultas</string>
+ <string name="revanced_hide_info_cards_summary_off">Las tarjetas de información están visibles</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Desactivar animaciones de número de rodamiento</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Los números de registro no están animados</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Los números de registro son animados</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ocultar barra de búsqueda en el reproductor de vídeo</string>
+ <string name="revanced_hide_seekbar_summary_on">La barra de búsqueda del reproductor de vídeo está oculta</string>
+ <string name="revanced_hide_seekbar_summary_off">La barra de búsqueda del reproductor de vídeo se muestra</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ocultar barra de búsqueda en miniaturas de vídeo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">La barra de búsqueda de miniaturas está oculta</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">La barra de búsqueda de miniaturas se muestra</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ocultar breves en el feed de inicio</string>
+ <string name="revanced_hide_shorts_home_summary_on">Los cortos en la alimentación de inicio están ocultos</string>
+ <string name="revanced_hide_shorts_home_summary_off">Se muestran los cortos en la alimentación de inicio</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ocultar breves en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Los cortos en el feed de suscripción están ocultos</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Se muestran los cortos en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_search_title">Ocultar breves en los resultados de búsqueda</string>
+ <string name="revanced_hide_shorts_search_summary_on">Los breves resultados de búsqueda están ocultos</string>
+ <string name="revanced_hide_shorts_search_summary_off">Se muestran breves en los resultados de búsqueda</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ocultar botón de unirse</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Botón de unión oculto</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Se muestra el botón de unirse</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ocultar botón de suscripción</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">El botón de suscripción está oculto</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Se muestra el botón de suscripción</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ocultar botones de superposición en pausa</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Los botones de superposición pausados están ocultos</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Se muestran los botones de superposición pausados</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ocultar botón de tienda</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">El botón de la tienda está oculto</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Se muestra el botón de la tienda</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ocultar botón de súper gracias</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">El botón de súper gracias está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Se muestra el botón de supergracias</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ocultar productos etiquetados</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Los productos etiquetados están ocultos</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Los productos etiquetados se muestran</string>
+ <string name="revanced_hide_shorts_location_label_title">Ocultar etiqueta de ubicación</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Etiqueta de ubicación oculta</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Etiqueta de ubicación mostrada</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ocultar sonido guardado al botón de lista de reproducción</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Guardar sonido en lista de reproducción está oculto</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Guardar sonido en la lista de reproducción se muestra</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ocultar sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Las sugerencias de búsqueda están ocultas</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Se muestran sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_like_button_title">Ocultar botón me gusta</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">El botón Me gusta está oculto</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Se muestra el botón Me Gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ocultar botón no me gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">El botón no me gusta está oculto</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">El botón no me gusta se muestra</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ocultar botón de comentarios</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">El botón de comentarios está oculto</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Se muestra el botón de comentarios</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ocultar botón de remezcla</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ocultar botón Compartir</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Se muestra el botón Compartir</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ocultar panel de información</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Panel de información oculto</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Se muestra el panel de información</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_shorts_video_title_title">Ocultar título de vídeo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">El título está oculto</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">El título se muestra</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ocultar etiqueta de metadatos de sonido</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etiqueta de metadatos oculta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etiqueta de metadatos mostrada</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ocultar etiqueta de enlace de vídeo completo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etiqueta de enlace de vídeo oculto</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etiqueta de enlace de vídeo mostrada</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ocultar botón de sonido</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Botón de sonido oculto</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Se muestra el botón de sonido</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ocultar barra de navegación</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Barra de navegación oculta</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Se muestra la barra de navegación</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Desactivar pantalla de final de vídeo sugerida</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Vídeos sugeridos serán desactivados</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Se mostrarán vídeos sugeridos</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ocultar fecha y hora de vídeo</string>
+ <string name="revanced_hide_timestamp_summary_on">Marca de tiempo oculta</string>
+ <string name="revanced_hide_timestamp_summary_off">Marca de tiempo mostrada</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ocultar paneles emergentes del jugador</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Los paneles emergentes del jugador están ocultos</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Se muestran paneles emergentes del jugador</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacidad de superposición del jugador</string>
+ <string name="revanced_player_overlay_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacidad de superposición del jugador debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Oculto</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">No me gusta no disponible temporalmente</string>
+ <string name="revanced_ryd_failure_connection_status_code">Dislikes no disponibles (estado %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">No me gusta no disponible</string>
+ <string name="revanced_ryd_failure_generic">Dislikes no disponibles (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recargar vídeo para votar usando Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikes son mostrados</string>
+ <string name="revanced_ryd_enable_summary_off">No se muestran Dislikes</string>
+ <string name="revanced_ryd_shorts_title">Mostrar no me gusta en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikes mostrados en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikes mostrados en Cortos\n\nLimitación: Las Dislikes no pueden aparecer en modo incógnito</string>
+ <string name="revanced_ryd_shorts_summary_off">Dislikes ocultos en Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Desliza como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikes mostrados como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikes mostrados como número</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Botón de compacto</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Botón \"Me gusta\" para el ancho mínimo</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Botón \"Me gusta\" para una mejor apariencia</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast no se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_about">Acerca de</string>
+ <string name="revanced_ryd_attribution_summary">Los datos son proporcionados por la API de Retorno de YouTube. Pulse aquí para aprender más</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Devuelve las estadísticas de la API de este dispositivo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tiempo de respuesta de la API, promedio</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tiempo de respuesta de API, mínimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tiempo de respuesta de la API, máximo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tiempo de respuesta API, último vídeo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes temporalmente no disponible - Límite de tasa de cliente API en efecto</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Votaciones de la API, número de llamadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">No hay llamadas de red</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Llamadas de red %d realizadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Votos de búsqueda de API, número de tiempos de espera</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">No hay llamadas de red agotadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Tiempo de espera de llamadas de red %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Límites de velocidad del cliente API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">No se encontraron límites de tasa de clientes</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Límite de tasa de cliente encontrado %d veces</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisegundos</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Habilitar barra de búsqueda ancha</string>
+ <string name="revanced_wide_searchbar_summary_on">Barra de búsqueda ancha habilitada</string>
+ <string name="revanced_wide_searchbar_summary_off">Barra de búsqueda ancha desactivada</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurar antiguas miniaturas de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Las miniaturas de la barra de búsqueda aparecerán por encima de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Las miniaturas de Seekbar aparecerán en pantalla completa</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Activar SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock es un sistema de fuentes múltiples para omitir partes molestas de vídeos de YouTube</string>
+ <string name="revanced_sb_appearance_category">Apariencia</string>
+ <string name="revanced_sb_enable_voting">Mostrar botón de voto</string>
+ <string name="revanced_sb_enable_voting_sum_on">Se muestra el botón de voto del segmento</string>
+ <string name="revanced_sb_enable_voting_sum_off">El botón de voto del segmento no se muestra</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Usar botón compacto de saltar</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Omitir botón con estilo para el ancho mínimo</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Omitir botón con estilo para la mejor apariencia</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ocultar automáticamente el botón omitir</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Omitir botón se oculta después de unos segundos</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Saltar botón mostrado para todo el segmento</string>
+ <string name="revanced_sb_general_skiptoast">Mostrar un brindis al saltar automáticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast se muestra cuando un segmento se omite automáticamente. Pulse aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast no se muestra. Toque aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_time_without">Mostrar longitud de vídeo sin segmentos</string>
+ <string name="revanced_sb_general_time_without_sum_on">Longitud del vídeo menos todos los segmentos, mostrados en paréntesis junto a la longitud completa del vídeo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Longitud completa del vídeo mostrada</string>
+ <string name="revanced_sb_create_segment_category">Creando nuevos segmentos</string>
+ <string name="revanced_sb_enable_create_segment">Mostrar botón crear nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">No se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_general_adjusting">Ajustar nuevo paso de segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Número de milisegundos que los botones de ajuste de tiempo se mueven al crear nuevos segmentos</string>
+ <string name="revanced_sb_general_adjusting_invalid">El valor debe ser un número positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Ver normas</string>
+ <string name="revanced_sb_guidelines_preference_sum">Las directrices contienen reglas y consejos para crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_title">Siga las pautas</string>
+ <string name="revanced_sb_guidelines_popup_content">Lee las directrices de SponsorBlock antes de crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Ya leído</string>
+ <string name="revanced_sb_guidelines_popup_open">Múestrame</string>
+ <string name="revanced_sb_general">General</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast no se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_general_skipcount">Habilitar rastreo del conteo de saltos</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Permite que la tabla de clasificación de SponsorBlock sepa cuánto tiempo se ha ahorrado. Un mensaje se envía al tablero de clasificación cada vez que se omite un segmento</string>
+ <string name="revanced_sb_general_skipcount_sum_off">El rastreo del conteo de saltos no está habilitado</string>
+ <string name="revanced_sb_general_min_duration">Duración mínima del segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">Los segmentos más cortos que este valor (en segundos) no se mostrarán o se omitirán</string>
+ <string name="revanced_sb_general_uuid">Tu id de usuario privado</string>
+ <string name="revanced_sb_general_uuid_sum">Esto debería mantenerse privado. Es como una contraseña y no debe ser compartido con nadie. Si alguien obtiene esto, podran usarlo para suplantarte</string>
+ <string name="revanced_sb_general_uuid_invalid">El id de usuario privado debe tener al menos 30 caracteres</string>
+ <string name="revanced_sb_general_api_url">Cambiar la URL de la API</string>
+ <string name="revanced_sb_general_api_url_sum">La dirección que SponsorBlock utiliza para hacer llamadas al servidor</string>
+ <string name="revanced_sb_api_url_reset">URL de la API restablecida</string>
+ <string name="revanced_sb_api_url_invalid">La URL de API no es válida</string>
+ <string name="revanced_sb_api_url_changed">La URL de la API cambió</string>
+ <string name="revanced_sb_settings_ie">Importar/Exportar Opciones</string>
+ <string name="revanced_sb_settings_copy">Copiar</string>
+ <string name="revanced_sb_settings_ie_sum">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock. Esto incluye tu id de usuario privado. Asegúrate de compartirlo sabiamente</string>
+ <string name="revanced_sb_settings_import_successful">Configuración importada correctamente</string>
+ <string name="revanced_sb_settings_import_failed">Error al importar: %s</string>
+ <string name="revanced_sb_settings_export_failed">Error al exportar: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Tu configuración contiene un usuario privado de SponsorBlock.\n\nTu id de usuario es como una contraseña y nunca debe ser compartida.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">No mostrar de nuevo</string>
+ <string name="revanced_sb_diff_segments">Cambiar comportamiento del segmento</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoción pagada, referencias pagadas y anuncios directos. No para autopromoción o gritos gratuitos a causas/creadores/sitios web/productos que les gustan</string>
+ <string name="revanced_sb_segments_selfpromo">Promoción Propia/No Remunerada</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Similar a \'Patrocinador\' excepto por falta de pago o autopromoción. Incluye secciones sobre meritud, donaciones o información sobre con quién colaboraron</string>
+ <string name="revanced_sb_segments_interaction">Recordatorio de interacción (Subscríbete)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un pequeño recordatorio para gustar, suscribirse o seguirlos en medio del contenido. Si es largo o sobre algo específico, debería estar bajo autopromoción</string>
+ <string name="revanced_sb_segments_highlight">Resaltar</string>
+ <string name="revanced_sb_segments_highlight_sum">La parte del vídeo que la mayoría de la gente está buscando</string>
+ <string name="revanced_sb_segments_intro">Intermisión/Animación de introducción</string>
+ <string name="revanced_sb_segments_intro_sum">Un intervalo sin contenido real. Podría ser una pausa, marco estático o animación de repetición. No incluye transiciones que contengan información</string>
+ <string name="revanced_sb_segments_outro">Pantallas finales/Créditos</string>
+ <string name="revanced_sb_segments_outro_sum">Créditos o cuando aparecen las tarjetas finales de YouTube. No para conclusiones con información</string>
+ <string name="revanced_sb_segments_preview">Vista previa/Recapitular/Juego</string>
+ <string name="revanced_sb_segments_preview_sum">Colección de clips que muestran lo que viene o lo que pasó en el vídeo o en otros videos de una serie, donde toda la información se repite en otro lugar</string>
+ <string name="revanced_sb_segments_filler">Bromas de relleno</string>
+ <string name="revanced_sb_segments_filler_sum">Escenas tangenciales añadidas sólo para relleno o humor que no están obligadas a entender el contenido principal del vídeo. No incluye segmentos proporcionando detalles de contexto o fondo</string>
+ <string name="revanced_sb_segments_nomusic">Música: Sección sin música</string>
+ <string name="revanced_sb_segments_nomusic_sum">Sólo para usar en vídeos de música. Secciones de vídeos de música sin música, que no están cubiertas por otra categoría</string>
+ <string name="revanced_sb_skip_button_compact">Saltar</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Resaltar</string>
+ <string name="revanced_sb_skip_button_sponsor">Saltar patrocinador</string>
+ <string name="revanced_sb_skip_button_selfpromo">Saltar promoción</string>
+ <string name="revanced_sb_skip_button_interaction">Saltar interacción</string>
+ <string name="revanced_sb_skip_button_highlight">Omitir a resaltado</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Saltar intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_intro_end">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_middle">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_end">Saltar resumen</string>
+ <string name="revanced_sb_skip_button_filler">Saltar relleno</string>
+ <string name="revanced_sb_skip_button_nomusic">Omitir no música</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Saltar Segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Omitir patrocinio</string>
+ <string name="revanced_sb_skipped_selfpromo">Auto promoción omitida</string>
+ <string name="revanced_sb_skipped_interaction">Recordatorio irritante omitido</string>
+ <string name="revanced_sb_skipped_highlight">Saltado a destacar</string>
+ <string name="revanced_sb_skipped_intro_beginning">Introduccion omitida</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_intro_end">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_outro">Outro omitida</string>
+ <string name="revanced_sb_skipped_preview_beginning">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_middle">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_end">Resumen omitido</string>
+ <string name="revanced_sb_skipped_filler">Relleno omitido</string>
+ <string name="revanced_sb_skipped_nomusic">Se omitió una sección de no musical</string>
+ <string name="revanced_sb_skipped_unsubmitted">Un segmento no enviado fue omitido</string>
+ <string name="revanced_sb_skipped_multiple_segments">Se omitieron varios segmentos</string>
+ <string name="revanced_sb_skip_automatically">Omitir automáticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Saltar automáticamente una vez</string>
+ <string name="revanced_sb_skip_showbutton">Mostrar botón de omitir</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostrar en la barra de búsqueda</string>
+ <string name="revanced_sb_skip_ignore">Deshabilitar</string>
+ <string name="revanced_sb_submit_failed_invalid">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock está temporalmente abajo</string>
+ <string name="revanced_sb_submit_failed_unknown_error">No se puede enviar el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">No se puede enviar el segmento.\nTasa limitada (demasiados usuarios o IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">No se pudo enviar el segmento.\nYa existe</string>
+ <string name="revanced_sb_submit_succeeded">Segmento enviado correctamente</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporalmente no está disponible (API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporalmente no disponible (estado %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporalmente no está disponible</string>
+ <string name="revanced_sb_vote_failed_timeout">No se puede votar por el segmento (API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">No se puede votar por el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">No se puede votar por el segmento: %s</string>
+ <string name="revanced_sb_vote_upvote">Votar positivamente</string>
+ <string name="revanced_sb_vote_downvote">Voto negativo</string>
+ <string name="revanced_sb_vote_category">Cambiar categoría</string>
+ <string name="revanced_sb_vote_no_segments">No hay segmentos para votar</string>
+ <string name="revanced_sb_new_segment_choose_category">Elige la categoría del segmento</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categoría está desactivada en la configuración. Habilitar la categoría para enviar.</string>
+ <string name="revanced_sb_new_segment_title">Nuevo segmento de SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">¿Establecer %1$02d:%2$02d:%3$03d como inicio o final de un nuevo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">comienzo</string>
+ <string name="revanced_sb_new_segment_mark_end">final</string>
+ <string name="revanced_sb_new_segment_now">ahora</string>
+ <string name="revanced_sb_new_segment_time_start">Segundo en el que el segmento comienza</string>
+ <string name="revanced_sb_new_segment_time_end">Segundo en el que el segmento finaliza</string>
+ <string name="revanced_sb_new_segment_confirm_title">¿Los tiempos son correctos?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">El segmento es desde\n\n%1$s\nhasta\n%2$s\n\n(%3$s)\n\n¿Listo para enviarlo?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Inicio debe ser antes del final</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Primero, marca dos instantes en la barra de tiempo</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Previsualizar el segmento y asegurarse de que se salta sin problemas</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Modificar el tiempo del segmento manualmente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">¿Quieres modificar el tiempo de inicio o final del segmento?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Tiempo dado no válido</string>
+ <string name="revanced_sb_stats">Estadísticas</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Estadísticas temporalmente no disponibles (API está caída)</string>
+ <string name="revanced_sb_stats_loading">Cargando...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock está desactivado</string>
+ <string name="revanced_sb_stats_username">Tu nombre de usuario: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Pulsa aquí para cambiar tu nombre de usuario</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">No se puede cambiar el nombre de usuario: Estado: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nombre de usuario cambiado con éxito</string>
+ <string name="revanced_sb_stats_reputation">Tu reputación es <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Has creado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">Tabla de clasificación de SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Has salvado personas de segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Pulsa aquí para ver las estadísticas globales y los mejores colaboradores</string>
+ <string name="revanced_sb_stats_saved_sum">Eso es <b>%s</b> de sus vidas.<br>Toca aquí para ver la tabla de clasificación</string>
+ <string name="revanced_sb_stats_self_saved">Te has saltado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_sum">Eso es <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">¿Restablecer contador de segmentos saltados?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s horas %2$s minutos</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutos %2$s segundos</string>
+ <string name="revanced_sb_stats_saved_second_format">%s segundos</string>
+ <string name="revanced_sb_color_dot_label">Color:</string>
+ <string name="revanced_sb_color_changed">Color cambiado</string>
+ <string name="revanced_sb_color_reset">Restablecer color</string>
+ <string name="revanced_sb_color_invalid">Código de color inválido</string>
+ <string name="revanced_sb_reset_color">Reiniciar color</string>
+ <string name="revanced_sb_reset">Restablecer</string>
+ <string name="revanced_sb_about">Acerca de</string>
+ <string name="revanced_sb_about_api_sum">Los datos son proporcionados por la API de SponsorBlock. Pulsa aquí para aprender más y ver las descargas de otras plataformas</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versión de la aplicación Spoof</string>
+ <string name="revanced_spoof_app_version_summary_on">Versión falseada</string>
+ <string name="revanced_spoof_app_version_summary_off">Versión no falseada</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">La versión de la aplicación será suplantada por una versión anterior de YouTube.\n\nEsto cambiará la apariencia y las funciones de la aplicación, pero pueden ocurrir efectos secundarios desconocidos.\n\nSi luego se desactiva, se recomienda borrar los datos de la aplicación para prevenir errores de interfaz de usuario.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Destino de versión de la aplicación Spoof</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurar RYD en modo incógnito cortos</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurar la velocidad de vídeo ancha & menú de calidad</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurar pestaña de biblioteca</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurar la vieja lista de reproducción shelf</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurar la disposición antigua de la interfaz de usuario</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Establecer página de inicio</string>
+ <string name="revanced_start_page_entry_0">Predeterminado</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Inicio</string>
+ <string name="revanced_start_page_entry_2">Buscar</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Suscripciones</string>
+ <string name="revanced_start_page_entry_4">Explorar</string>
+ <string name="revanced_start_page_entry_5">Acortes</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Pestaña</string>
+ <string name="revanced_start_page_entry_7">Vídeos gustados</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historial</string>
+ <string name="revanced_start_page_entry_9">Tendencias</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Desactivar reanudación del reproductor</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">El reproductor corto no se reanudará al iniciar la aplicación</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">El reproductor corto se reanudará al iniciar la aplicación</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Habilitar diseño de tablet</string>
+ <string name="revanced_tablet_layout_summary_on">Diseño de tablet habilitado</string>
+ <string name="revanced_tablet_layout_summary_off">Diseño de tablet deshabilitado</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Los mensajes de la comunidad no se muestran en los diseños de tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijugador</string>
+ <string name="revanced_miniplayer_screen_summary">Cambiar el estilo del reproductor minimizado de la aplicación</string>
+ <string name="revanced_miniplayer_type_title">Tipo de minijugador</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Teléfono</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderna 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderna 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderna 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ocultar botones de expansión y cierre</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Los botones están ocultos\n(desliza el minijugador para expandir o cerrar)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Mostrar los botones de ampliación y cierre</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ocultar subtextos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Los subtextos están ocultos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Los subtextos se muestran</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ocultar botones de omitir hacia adelante y atrás</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Saltar adelante y atrás están ocultos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Saltar adelante y atrás se muestran</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">La opacidad de superposición del Miniplayer debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Activar la pantalla de carga del degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_on">La pantalla de carga tendrá un fondo de degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_off">La pantalla de carga tendrá un fondo sólido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Activar el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Se muestra el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Se muestra el color original de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_title">Color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_summary">El color de la barra de ajustes</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valor de color de la barra de búsqueda inválido. Usando el valor por defecto.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Pestaña</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Pestaña de suscripción</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Pestaña</string>
+ <string name="revanced_alt_thumbnail_player_title">Listas de reproducción, recomendaciones</string>
+ <string name="revanced_alt_thumbnail_search_title">Resultados de búsqueda</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Deflecha & miniaturas originales</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Flecha & Todavía capturas</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Sigue capturando</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeFlecha proporciona miniaturas de origen crowd para vídeos de YouTube. Estas uñas suelen ser más relevantes que las proporcionadas por YouTube\n\nSi están activadas, las URL de vídeo se enviarán al servidor API y no se enviarán otros datos. Si un video no tiene miniaturas de Flecha Deprimida, entonces las capturas originales o todavía se muestran\n\nPulsa aquí para aprender más sobre DeFlecha</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast no se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">La URL del final de la caché en miniatura de DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Todavía captura de vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Las capturas se toman desde el principio/medio/final de cada vídeo. Estas imágenes están incorporadas en YouTube y no se utiliza ninguna API externa</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usar capturas aún rápidas</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Usar captura de calidad media todavía. Las miniaturas se cargarán más rápido, pero streams en vivo, no liberados o vídeos muy antiguos pueden mostrar miniaturas en blanco</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Usando capturas de alta calidad</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tiempo de vídeo desde el que tomar aún las capturas</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Inicio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Medio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fin del vídeo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow no disponible. (código de estado: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeFlecha temporalmente no disponible</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Mostrar anuncios revalorizados</string>
+ <string name="revanced_announcements_summary_on">Los anuncios se muestran al iniciar</string>
+ <string name="revanced_announcements_summary_off">Los anuncios no se muestran al iniciar</string>
+ <string name="revanced_announcements_enabled_summary">Mostrar anuncios al iniciar</string>
+ <string name="revanced_announcements_connection_failed">Error al conectar con el proveedor de anuncios</string>
+ <string name="revanced_announcements_dialog_dismiss">Descartar</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Activar autorepetición</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-repetición habilitada</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-repetición desactivada</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Dimensiones del dispositivo</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensiones del dispositivo falseadas\n\nCalidad de vídeo más alta puede ser desbloqueada, pero puede experimentar la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensiones del dispositivo no falseadas\n\nHabilitar esto puede desbloquear mayores calidades de vídeo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Activar esto puede causar retraso en la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Ajustes de GmsCore</string>
+ <string name="microg_settings_summary">Configuración de GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Redirecciones URL Bypass</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Se omiten las redirecciones URL</string>
+ <string name="revanced_bypass_url_redirects_summary_off">No se omiten las redirecciones URL</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Abrir enlaces en el navegador</string>
+ <string name="revanced_external_browser_summary_on">Abriendo enlaces externamente</string>
+ <string name="revanced_external_browser_summary_off">Abrir enlaces en la aplicación</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Reproducción en segundo plano</string>
+ <string name="revanced_background_playback_summary">Esta configuración se puede encontrar en Ajustes -> Fondo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Quitar parámetro de consulta de rastreo</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parámetro de la consulta de seguimiento se elimina de los enlaces</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parámetro de la consulta de seguimiento no se elimina de los enlaces</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Desactivar hábitos de zoom</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hápticas desactivadas</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics están habilitados</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Calidad automática</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Recordar cambios de calidad de vídeo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los vídeos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Los cambios de calidad sólo se aplican al vídeo actual</string>
+ <string name="revanced_video_quality_default_wifi_title">Calidad de vídeo predeterminada en la red Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Calidad de vídeo predeterminada en la red móvil</string>
+ <string name="revanced_remember_video_quality_mobile">móvil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Cambió la calidad predeterminada %1$s a: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostrar botón de diálogo de velocidad</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Se muestra el botón</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocidades de reproducción personalizadas</string>
+ <string name="revanced_custom_playback_speeds_summary">Añadir o cambiar las velocidades de reproducción disponibles</string>
+ <string name="revanced_custom_playback_speeds_invalid">Velocidades personalizadas deben ser inferiores a %s. Utilizando valores predeterminados.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Velocidades de reproducción personalizadas no válidas. Utilizando valores predeterminados.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Recordar cambios de velocidad de reproducción</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Los cambios de velocidad de reproducción se aplican a todos los vídeos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Los cambios de velocidad de reproducción sólo se aplican al vídeo actual</string>
+ <string name="revanced_playback_speed_default_title">Velocidad de reproducción por defecto</string>
+ <string name="revanced_remember_playback_speed_toast">Cambió la velocidad predeterminada a: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurar menú de calidad de vídeo antiguo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Se muestra el antiguo menú de calidad de vídeo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">El antiguo menú de calidad de vídeo no se muestra</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Habilitar diapositiva para buscar</string>
+ <string name="revanced_slide_to_seek_summary_on">Deslizar para buscar está activado</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide to seek no está habilitado</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_screen_summary">Fusiona al cliente para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_client_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_summary_on">Cliente falseado</string>
+ <string name="revanced_spoof_client_summary_off">El cliente no está falsificado\n\nEs posible que la reproducción de vídeo no funcione</string>
+ <string name="revanced_spoof_client_user_dialog_message">Desactivar esta configuración puede causar problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof cliente a iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">El cliente está actualmente falseado a iOS\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Es posible que el historial del reloj no funcione\n• Puede que falten más calidad de vídeo\n• Los streams en vivo no pueden reproducirse como audio solo\n• streams en vivo no disponibles en Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">El cliente está actualmente falseado a Android VR\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Los vídeos para niños no se reproducirán\n• Los vídeos en pausa pueden reanudarse aleatoriamente\n• Las miniaturas de barras cortas de baja calidad\n• El botón de descarga siempre está oculto\n• Las tarjetas de la pantalla final siempre están ocultas</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Las miniaturas del cliente de Spoof no están disponibles (API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Las miniaturas del cliente Spoof temporalmente no están disponibles: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Espoya la firma de la aplicación para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">La firma de la aplicación falseada\n\nLos efectos laterales incluyen:\n• La tasa de bits mejorada no está disponible\n• Los vídeos no se pueden descargar\n• No hay miniaturas en la barra de búsqueda para vídeos pagados</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">La firma de la aplicación no está falseada\n\nLa reproducción de vídeo puede no funcionar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Desactivar esta configuración causará problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof firma de aplicación en el feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">La firma de la aplicación está falseada\n\nLos efectos laterales incluyen:\n• Los vídeos alimentarios no tienen subtítulos\n• Los vídeos reproducidos automáticamente se mostrarán en tu historial de relojes</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Firma de la aplicación no simulada para videos de feed\n\nLos vídeos alimentarios se reproducirán durante menos de 1 minuto antes de encontrar problemas de reproducción</string>
+ <string name="revanced_spoof_storyboard_title">Cuadro de historias</string>
+ <string name="revanced_spoof_storyboard_summary_on">Cuadro de historias falseado</string>
+ <string name="revanced_spoof_storyboard_summary_off">El storyboard no está falseado\n\nLos efectos laterales incluyen:\n• Sin modo ambiente\n• Las miniaturas de la barra de búsqueda están ocultas</string>
+ <string name="revanced_spoof_storyboard_timeout">El storyboard espía no está disponible temporalmente (API)</string>
+ <string name="revanced_spoof_storyboard_io_exception">El storyboard espía no está disponible temporalmente: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Activar brillo HDR automático</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Brillo automático HDR está habilitado</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Brillo automático HDR está desactivado</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquear anuncios de audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anuncios de audio bloqueados</string>
+ <string name="revanced_block_audio_ads_summary_off">Anuncios de audio desbloqueados</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s no está disponible. Los anuncios pueden mostrarse. Intenta cambiar a otro servicio de bloque de anuncios en la configuración.</string>
+ <string name="revanced_embedded_ads_service_failed">El servidor %s devolvió un error. Los anuncios pueden mostrar. Intente cambiar a otro servicio de bloque de anuncios en la configuración.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquear anuncios de vídeo incrustados</string>
+ <string name="revanced_block_embedded_ads_entry_1">Desactivado</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy luminoso</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy MoradoAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquear anuncios de vídeo</string>
+ <string name="revanced_block_video_ads_summary_on">Los anuncios de vídeo están bloqueados</string>
+ <string name="revanced_block_video_ads_summary_off">Los anuncios de vídeo están desbloqueados</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mensaje eliminado</string>
+ <string name="revanced_show_deleted_messages_title">Mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_1">No mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ocultar mensajes eliminados detrás de un spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostrar mensajes borrados como texto cruzado</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Reclamar automáticamente los puntos de canal</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Los puntos de canal se reclaman automáticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Los puntos de canal no se reclaman automáticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Activar modo de depuración de Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">El modo de depuración de Twitch está habilitado (no recomendado)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">El modo de depuración de Twitch está desactivado</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Ajustes de ReVanced</string>
+ <string name="revanced_ads_screen_title">Anuncios</string>
+ <string name="revanced_ads_screen_summary">Ajustes de bloqueo de anuncios</string>
+ <string name="revanced_chat_screen_title">Chatear</string>
+ <string name="revanced_chat_screen_summary">Ajustes del chat</string>
+ <string name="revanced_misc_screen_title">Miscelánea</string>
+ <string name="revanced_misc_screen_summary">Ajustes multifuncionales</string>
+ <string name="revanced_general_category_title">Ajustes generales</string>
+ <string name="revanced_other_category_title">Otros ajustes</string>
+ <string name="revanced_client_ads_category_title">Anuncios del cliente</string>
+ <string name="revanced_surestream_ads_category_title">Anuncios del lado del servidor</string>
+ <string name="revanced_twitch_debug_title">Depurar registro</string>
+ <string name="revanced_twitch_debug_summary_on">Los registros de depuración están habilitados</string>
+ <string name="revanced_twitch_debug_summary_off">Los registros de depuración están desactivados</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-es-rMX/strings.xml b/src/main/resources/addresources/values-es-rMX/strings.xml
new file mode 100644
index 0000000000..307d8cd134
--- /dev/null
+++ b/src/main/resources/addresources/values-es-rMX/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">¿Como quisieras continuar?</string>
+ <string name="revanced_settings_reset">Reiniciar</string>
+ <string name="revanced_settings_restart_title">Refrescar y reiniciar</string>
+ <string name="revanced_settings_restart">Reiniciar</string>
+ <string name="revanced_settings_import">Importar</string>
+ <string name="revanced_settings_import_copy">Copiar</string>
+ <string name="revanced_settings_import_reset">Ajustes de ReVanced reestablecidos a por defecto</string>
+ <string name="revanced_settings_import_success">Importar ajustes %d</string>
+ <string name="revanced_settings_import_failure_parse">Importación fallida: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore no está instalado. Instálala.</string>
+ <string name="gms_core_dialog_title">Acción necesaria</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore no tiene permiso para ejecutarse en segundo plano.\n\nSigue la guía \"Don\'t kill my app\" para tu teléfono y aplica las instrucciones a tu instalación de MicroG.\n\nEsto es necesario para que la aplicación funcione.</string>
+ <string name="gms_core_dialog_open_website_text">Abrir sitio web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Las optimizaciones de la batería de MicroG GmsCore deben estar deshabilitadas para evitar problemas.\n\nPulse el botón continuar y desactive las optimizaciones de la batería.</string>
+ <string name="gms_core_dialog_continue_text">Continuar</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Estás usando la versión de ReVanced Patches <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Nota</string>
+ <string name="revanced_settings_about_links_dev_body">Esta versión es un pre-lanzamiento y puede que experimentes problemas inesperados</string>
+ <string name="revanced_settings_about_links_header">Enlaces oficiales</string>
+ <string name="revanced_pref_import_export_title">Importar / Exportar</string>
+ <string name="revanced_pref_import_export_summary">Importar / Exportar ajustes de ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Acerca de</string>
+ <string name="revanced_settings_screen_01_ads_title">Anuncios</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniaturas alternativas</string>
+ <string name="revanced_settings_screen_03_feed_title">Pagina Principal</string>
+ <string name="revanced_settings_screen_04_player_title">Reproductor</string>
+ <string name="revanced_settings_screen_05_general_title">Diseño general</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra de búsqueda</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controles de deslizamiento</string>
+ <string name="revanced_settings_screen_11_misc_title">Misc</string>
+ <string name="revanced_settings_screen_12_video_title">Vídeo</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depuración</string>
+ <string name="revanced_debug_screen_summary">Activar o desactivar opciones de depuración</string>
+ <string name="revanced_debug_title">Registro de depuración</string>
+ <string name="revanced_debug_summary_on">Los registros de depuración están activados</string>
+ <string name="revanced_debug_summary_off">Los registros de depuración están desactivados</string>
+ <string name="revanced_debug_protobuffer_title">Búfer de protocolo de registro</string>
+ <string name="revanced_debug_protobuffer_summary_on">Los registros de depuración incluyen proto buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Los registros de depuración no incluyen proto buffer</string>
+ <string name="revanced_debug_stacktrace_title">Registrar rastros de pila</string>
+ <string name="revanced_debug_stacktrace_summary_on">Los registros de depuración incluyen seguimiento de pila</string>
+ <string name="revanced_debug_stacktrace_summary_off">Los registros de depuración no incluyen seguimiento de pila</string>
+ <string name="revanced_debug_toast_on_error_title">Mostrar un mensaje emergente en caso de error de ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Se muestra un mensaje emergente si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_summary_off">No se muestra un mensaje emergente si ocurre un error</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Al desactivar los mensajes de error se ocultan todas las notificaciones de errores de ReVanced.\n\nNo se le notificará ningún evento inesperado.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Desactivar como / botón de suscripción brillo</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">El botón de \"Me gusta\" y \"suscribir\" no brillará cuando se mencione</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">El botón de \"Me gusta\" y \"Suscribir\" brillará cuando se mencione</string>
+ <string name="revanced_hide_gray_separator_title">Ocultar separador gris</string>
+ <string name="revanced_hide_gray_separator_summary_on">Los separadores grises están ocultos</string>
+ <string name="revanced_hide_gray_separator_summary_off">Se muestran separadores grises</string>
+ <string name="revanced_hide_channel_watermark_title">Ocultar marcar de agua del canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">La marca de agua está oculta</string>
+ <string name="revanced_hide_channel_watermark_summary_off">La marca de agua se muestra</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ocultar shelves horizontales</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Los estantes están ocultos como:\n• Romper noticias\n• Continuar viendo\n• Explorar más canales\n• Comprar\n• Verlo de nuevo</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Se muestran las estanterías</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ocultar botón \'Unirse\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">El botón está oculto</string>
+ <string name="revanced_hide_join_membership_button_summary_off">El botón de muestra</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ocultar shelf \'Para ti\' en la página del canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Panel ocultó</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Se muestra el panel</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ocultar el botón \'Notificarme\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">El botón está oculto</string>
+ <string name="revanced_hide_notify_me_button_summary_off">El botón de muestra</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ocultar recomendaciones \"Personas también observadas\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Las recomendaciones están ocultas</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Se muestran las recomendaciones</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ocultar botón \'Mostrar más\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">El botón está oculto</string>
+ <string name="revanced_hide_show_more_button_summary_off">El botón de muestra</string>
+ <string name="revanced_hide_timed_reactions_title">Ocultar reacciones cronometradas</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Las reacciones cronometradas están ocultas</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Se muestran las reacciones cronometradas</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ocultar la cabecera de la estantería de resultados</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">El encabezado del estante está oculto</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Se muestra el encabezado del estante</string>
+ <string name="revanced_hide_channel_guidelines_title">Ocultar directrices de canales</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Las directrices del canal están ocultas</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Se muestran las directrices del canal</string>
+ <string name="revanced_hide_expandable_chip_title">Ocultar chip expandible en videos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Las fichas expandibles están ocultas</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Se muestran fichas expandibles</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ocultar pie de página del menú de calidad de vídeo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Pie de menú de calidad de vídeo oculto</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">El pie del menú de calidad de vídeo se muestra</string>
+ <string name="revanced_hide_community_posts_title">Ocultar mensajes comunitarios</string>
+ <string name="revanced_hide_community_posts_summary_on">Los mensajes de la comunidad están ocultos</string>
+ <string name="revanced_hide_community_posts_summary_off">Se muestran las publicaciones de la comunidad</string>
+ <string name="revanced_hide_compact_banner_title">Ocultar banners compactos</string>
+ <string name="revanced_hide_compact_banner_summary_on">Los banners de pacto están ocultos</string>
+ <string name="revanced_hide_compact_banner_summary_off">Se muestran los banners compactos</string>
+ <string name="revanced_hide_movies_section_title">Ocultar sección de películas</string>
+ <string name="revanced_hide_movies_section_summary_on">La sección de películas está oculta</string>
+ <string name="revanced_hide_movies_section_summary_off">Se muestra la sección de películas</string>
+ <string name="revanced_hide_feed_survey_title">Ocultar encuestas</string>
+ <string name="revanced_hide_feed_survey_summary_on">Las encuestas de la fuente están ocultas</string>
+ <string name="revanced_hide_feed_survey_summary_off">Se muestran encuestas de la fuente</string>
+ <string name="revanced_hide_community_guidelines_title">Ocultar directrices comunitarias</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Las directrices comunitarias están ocultas</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Se muestran las directrices comunitarias</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ocultar directrices de la comunidad de suscriptores</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Las directrices comunitarias de los suscriptores están ocultas</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Se muestran las pautas de la comunidad de suscriptores</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ocultar shelf del miembro del canal</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">La shelf del miembro del canal está oculta</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Se muestra la shelf del miembro del canal</string>
+ <string name="revanced_hide_emergency_box_title">Ocultar cajas de emergencia</string>
+ <string name="revanced_hide_emergency_box_summary_on">Las cajas de emergencia están ocultas</string>
+ <string name="revanced_hide_emergency_box_summary_off">Se muestran cajas de emergencia</string>
+ <string name="revanced_hide_info_panels_title">Ocultar paneles de información</string>
+ <string name="revanced_hide_info_panels_summary_on">Los paneles de información están ocultos</string>
+ <string name="revanced_hide_info_panels_summary_off">Los paneles de información se muestran</string>
+ <string name="revanced_hide_medical_panels_title">Ocultar paneles médicos</string>
+ <string name="revanced_hide_medical_panels_summary_on">Los paneles médicos están ocultos</string>
+ <string name="revanced_hide_medical_panels_summary_off">Se muestran paneles médicos</string>
+ <string name="revanced_hide_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_playables_title">Ocultar reproducibles</string>
+ <string name="revanced_hide_playables_summary_on">Los reproductores están ocultos</string>
+ <string name="revanced_hide_playables_summary_off">Se muestran los reproductores</string>
+ <string name="revanced_hide_quick_actions_title">Ocultar acciones rápidas en pantalla completa</string>
+ <string name="revanced_hide_quick_actions_summary_on">Las acciones rápidas están ocultas</string>
+ <string name="revanced_hide_quick_actions_summary_off">Se muestran acciones rápidas</string>
+ <string name="revanced_hide_related_videos_title">Ocultar vídeos relacionados en acciones rápidas</string>
+ <string name="revanced_hide_related_videos_summary_on">Vídeos relacionados están ocultos</string>
+ <string name="revanced_hide_related_videos_summary_off">Vídeos relacionados se muestran</string>
+ <string name="revanced_hide_image_shelf_title">Ocultar la imagen en los resultados de búsqueda</string>
+ <string name="revanced_hide_image_shelf_summary_on">El shelf de la imagen está oculto</string>
+ <string name="revanced_hide_image_shelf_summary_off">Pantalla de imagen mostrada</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ocultar últimos mensajes</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Los últimos mensajes están ocultos</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Se muestran los últimos mensajes</string>
+ <string name="revanced_hide_mix_playlists_title">Ocultar listas de mezcla</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Las listas de reproducción mixtas están ocultas</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mezclar listas de reproducción son mostradas</string>
+ <string name="revanced_hide_artist_cards_title">Ocultar tarjetas de artistas</string>
+ <string name="revanced_hide_artist_cards_summary_on">Las tarjetas de artistas están ocultas</string>
+ <string name="revanced_hide_artist_cards_summary_off">Se muestran las tarjetas del artista</string>
+ <string name="revanced_hide_chips_shelf_title">Ocultar shelf de fichas</string>
+ <string name="revanced_hide_chips_shelf_summary_on">La shelf de chips está oculta</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Se muestra la shelf de chips</string>
+ <string name="revanced_hide_attributes_section_title">Ocultar sección de atributos</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Lugares destacados\', Las secciones de juegos y música están ocultas</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Lugares destacados\', Se muestran las secciones de juegos y música</string>
+ <string name="revanced_hide_chapters_section_title">Ocultar sección de capítulos</string>
+ <string name="revanced_hide_chapters_section_summary_on">La sección de capítulos está oculta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Se muestra la sección de capítulos</string>
+ <string name="revanced_hide_podcast_section_title">Ocultar la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">La sección \'Explorar el podcast\' está oculta</string>
+ <string name="revanced_hide_podcast_section_summary_off">Se muestra la sección \'Explorar el podcast\'</string>
+ <string name="revanced_hide_info_cards_section_title">Ocultar sección de tarjetas de información</string>
+ <string name="revanced_hide_info_cards_section_summary_on">La sección de tarjetas de información está oculta</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Se muestra la sección de tarjetas de información</string>
+ <string name="revanced_hide_transcript_section_title">Ocultar sección de transcripción</string>
+ <string name="revanced_hide_transcript_section_summary_on">La sección transcripción está oculta</string>
+ <string name="revanced_hide_transcript_section_summary_off">Se muestra la sección transcripción</string>
+ <string name="revanced_hide_description_components_screen_title">Descripción del vídeo</string>
+ <string name="revanced_hide_description_components_screen_summary">Ocultar o mostrar componentes de descripción de vídeo</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizado</string>
+ <string name="revanced_custom_filter_screen_summary">Ocultar componentes usando filtros personalizados</string>
+ <string name="revanced_custom_filter_title">Activar filtro personalizado</string>
+ <string name="revanced_custom_filter_summary_on">Filtro personalizado activado</string>
+ <string name="revanced_custom_filter_summary_off">Filtro personalizado desactivado</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizado</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista de cadenas del constructor de rutas del componente para filtrar separadas por una nueva línea</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizado no válido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ocultar contenido de palabra clave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ocultar videos de búsqueda y feed usando filtros de palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_title">Ocultar videos domésticos por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Los videos en la pestaña de inicio son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Los videos en la pestaña de inicio no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ocultar vídeos de suscripción por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Los videos en la pestaña de suscripciones son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Los videos en la pestaña de suscripciones no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_title">Ocultar resultados de búsqueda por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Los resultados de la búsqueda son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Los resultados de la búsqueda no son filtrados por palabras clave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Palabras clave a ocultar</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Palabras clave y frases para ocultar, separadas por nuevas líneas\n\nLas palabras con letras mayúsculas en el centro deben ser ingresadas con la caja (por ejemplo: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Acerca del filtrado de palabras clave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Los resultados de inicio/suscripción/búsqueda se filtran para ocultar contenido que coincide con las frases de palabras clave\n\nLimitaciones\n• Algunos cortos pueden no estar ocultos\n• Algunos componentes de la interfaz pueden no estar ocultos\n• Buscar una palabra clave no puede mostrar resultados</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Clave inválida. No se puede usar \'%s\' como filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Clave inválida. \'%1$s\' es menor que %2$d caracteres</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">La palabra clave \'$s\' oculta todos los vídeos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ocultar anuncios generales</string>
+ <string name="revanced_hide_general_ads_summary_on">Los anuncios generales están ocultos</string>
+ <string name="revanced_hide_general_ads_summary_off">Se muestran anuncios generales</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ocultar anuncios a pantalla completa</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Los anuncios a pantalla completa están ocultos\n\nEsta función solo está disponible para dispositivos más antiguos</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Se muestran anuncios a pantalla completa</string>
+ <string name="revanced_hide_buttoned_ads_title">Ocultar anuncios botonados</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Los anuncios bloqueados están ocultos</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Se muestran anuncios botonados</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ocultar etiqueta de promoción de pago</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Etiqueta de promoción pagada está oculta</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Etiqueta de promoción pagada se muestra</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ocultar tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Las tarjetas autopatrocinadas están ocultas</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Se muestran las tarjetas autopatrocinadas</string>
+ <string name="revanced_hide_products_banner_title">Ocultar banner para ver los productos</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner oculto</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner mostrado</string>
+ <string name="revanced_hide_shopping_links_title">Ocultar enlaces de compras en la descripción de vídeo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Enlaces de compras están ocultos</string>
+ <string name="revanced_hide_shopping_links_summary_off">Se muestran enlaces de compras</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ocultar el botón \'Visitar tienda\' en las páginas del canal</string>
+ <string name="revanced_hide_visit_store_button_summary_on">El botón está oculto</string>
+ <string name="revanced_hide_visit_store_button_summary_off">El botón de muestra</string>
+ <string name="revanced_hide_web_search_results_title">Ocultar resultados de búsqueda web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Los resultados de búsqueda web están ocultos</string>
+ <string name="revanced_hide_web_search_results_summary_off">Se muestran los resultados de la búsqueda web</string>
+ <string name="revanced_hide_merchandise_banners_title">Ocultar banners de mercandise</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Los banners de mercadería están ocultos</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Se muestran los banners de Mercandise</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ocultar anuncios a pantalla completa sólo funciona con dispositivos antiguos</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ocultar promociones de YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Las promociones de YouTube Premium en el reproductor de vídeo están ocultas</string>
+ <string name="revanced_hide_get_premium_summary_off">Se muestran las promociones de YouTube Premium en el reproductor de vídeo</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ocultar video anuncios</string>
+ <string name="revanced_hide_video_ads_summary_on">Los anuncios de vídeo están ocultos</string>
+ <string name="revanced_hide_video_ads_summary_off">Los anuncios de vídeo se muestran</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiada al portapapeles</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL con marca de tiempo copiada</string>
+ <string name="revanced_copy_video_url_title">Mostrar botón URL de copia de vídeo</string>
+ <string name="revanced_copy_video_url_summary_on">El botón se muestra. Toque para copiar la URL del vídeo. Mantenga pulsado para copiar la URL del vídeo con la marca de tiempo</string>
+ <string name="revanced_copy_video_url_summary_off">El botón no se muestra</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostrar botón URL de la marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">El botón se muestra. Toque para copiar la URL del vídeo con la marca de tiempo. Toque y mantenga pulsado para copiar el vídeo sin marca de tiempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Eliminar diálogo de discreción del visor</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Se eliminará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Se mostrará el diálogo</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Esto no pasa por alto la restricción de edad, sino que simplemente la acepta automáticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Descarga externa</string>
+ <string name="revanced_external_downloader_screen_summary">Configuración para el uso de un descargador externo</string>
+ <string name="revanced_external_downloader_title">Mostrar botón externo de descarga</string>
+ <string name="revanced_external_downloader_summary_on">Botón de descarga mostrado en el reproductor</string>
+ <string name="revanced_external_downloader_summary_off">Botón de descarga no mostrado en el reproductor</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Reemplazar el botón de descarga</string>
+ <string name="revanced_external_downloader_action_button_summary_on">El botón de descarga abre su descarga externa</string>
+ <string name="revanced_external_downloader_action_button_summary_off">El botón de descarga abre el descargador nativo en la aplicación</string>
+ <string name="revanced_external_downloader_name_title">Nombre del paquete del descargado</string>
+ <string name="revanced_external_downloader_name_summary">Nombre del paquete de su aplicación de descarga externa instalada, como NewPipe o Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s no está instalado. Instálalo.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Desactivar gesto de búsqueda preciso</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">El gesto está desactivado</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto habilitado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Habilitar toque en la barra de búsqueda</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar toping está habilitado</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar toping está desactivado</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Activar gesto de brillo</string>
+ <string name="revanced_swipe_brightness_summary_on">Deslizar brillo está habilitado</string>
+ <string name="revanced_swipe_brightness_summary_off">Deslizar brillo está desactivado</string>
+ <string name="revanced_swipe_volume_title">Activar gesto de volumen</string>
+ <string name="revanced_swipe_volume_summary_on">Deslizar volumen está habilitado</string>
+ <string name="revanced_swipe_volume_summary_off">Deslizar volumen está desactivado</string>
+ <string name="revanced_swipe_press_to_engage_title">Activar gesto de pulsar para deslizar</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pulsar para deslizar está habilitado</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pulsar para deslizar está desactivado</string>
+ <string name="revanced_swipe_haptic_feedback_title">Activar respuesta háptica</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Comentarios hápticos habilitados</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Respuesta háptica deshabilitada</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Guardar y restaurar brillo</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Guardar y restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">No guardar ni restaurar brillo al salir o entrar en pantalla completa</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Activar gesto de brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Deslizar hacia abajo hasta el valor más bajo del gesto de brillo permite el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Deslizar hacia abajo hasta el valor más bajo no habilita el brillo automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Auto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tiempo de espera del deslizado</string>
+ <string name="revanced_swipe_overlay_timeout_summary">La cantidad de milisegundos que la superposición es visible</string>
+ <string name="revanced_swipe_text_overlay_size_title">Deslizar tamaño de texto superpuesto</string>
+ <string name="revanced_swipe_text_overlay_size_summary">El tamaño del texto para la capa de deslizamiento</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Deslizar visibilidad de fondo</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Visibilidad del fondo del deslizamiento</string>
+ <string name="revanced_swipe_threshold_title">Umbral de magnitud del deslizamiento</string>
+ <string name="revanced_swipe_threshold_summary">La cantidad de umbral para que se desliza</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Desactivar auto subtítulos</string>
+ <string name="revanced_auto_captions_summary_on">Los títulos automáticos están desactivados</string>
+ <string name="revanced_auto_captions_summary_off">Los títulos automáticos están habilitados</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Botones de acción</string>
+ <string name="revanced_hide_buttons_screen_summary">Ocultar o mostrar botones en videos</string>
+ <string name="revanced_hide_like_dislike_button_title">Ocultar me gusta y no me gusta</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Botones \"Me gusta\" y \"no me gusta\" están ocultos</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Se muestran botones \"Me gusta\" y \"no me gusta\"</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ocultar Compartir</string>
+ <string name="revanced_hide_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_share_button_summary_off">Se muestra el botón Compartir</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ocultar informe</string>
+ <string name="revanced_hide_report_button_summary_on">El botón Reportar está oculto</string>
+ <string name="revanced_hide_report_button_summary_off">Se muestra el botón Reportar</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ocultar Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ocultar descarga</string>
+ <string name="revanced_hide_download_button_summary_on">El botón de descarga está oculto</string>
+ <string name="revanced_hide_download_button_summary_off">Se muestra el botón de descarga</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ocultar Gracias</string>
+ <string name="revanced_hide_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">El botón del clip está oculto</string>
+ <string name="revanced_hide_clip_button_summary_off">Se muestra el botón de clip</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ocultar Guardar en lista</string>
+ <string name="revanced_hide_playlist_button_summary_on">El botón Guardar a la lista de reproducción está oculto</string>
+ <string name="revanced_hide_playlist_button_summary_off">Mostrar el botón Guardar a la lista</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ocultar botón de reproducción automática</string>
+ <string name="revanced_hide_autoplay_button_summary_on">El botón de reproducción automática está oculto</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Se muestra el botón de reproducción automática</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ocultar botón de subtítulos</string>
+ <string name="revanced_hide_captions_button_summary_on">Botón de subtítulos oculto</string>
+ <string name="revanced_hide_captions_button_summary_off">Botón de subtítulos mostrado</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ocultar botón de reparto</string>
+ <string name="revanced_hide_cast_button_summary_on">El botón de trasmitir se encuentra oculto</string>
+ <string name="revanced_hide_cast_button_summary_off">El botón de trasmitir está visible</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ocultar o cambiar botones en la barra de navegación</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ocultar Inicio</string>
+ <string name="revanced_hide_home_button_summary_on">El botón de inicio está oculto</string>
+ <string name="revanced_hide_home_button_summary_off">Se muestra el botón de inicio</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ocultar breves</string>
+ <string name="revanced_hide_shorts_button_summary_on">Botón corto oculto</string>
+ <string name="revanced_hide_shorts_button_summary_off">Se muestra el botón de breves</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ocultar Crear</string>
+ <string name="revanced_hide_create_button_summary_on">El botón Crear está oculto</string>
+ <string name="revanced_hide_create_button_summary_off">Se muestra el botón de crear</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ocultar suscripciones</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">El botón de suscripciones está oculto</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Se muestra el botón de suscripciones</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Cambiar Create con notificaciones</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">El botón Crear cambia con el botón de Notificaciones\n\nNota: Activar esto también oculta anuncios de vídeo por la fuerza</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">El botón Crear no se cambia con el botón de notificaciones</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ocultar etiquetas de botón de navegación</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Las etiquetas están ocultas</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Las etiquetas se muestran</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Ocultar o mostrar elementos del menú de vuelo del jugador</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ocultar leyendas</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Menú de subtítulos oculto</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menú de subtítulos mostrado</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ocultar ajustes adicionales</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Menú de configuración adicional oculto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Se muestra el menú de configuración adicional</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ocultar video de bucle</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">El menú de video Loop está oculto</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">El menú de Loop video se muestra</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ocultar modo ambiente</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menú de modo ambiente oculto</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Se muestra el menú de modo ambiente</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ocultar Ayuda & Comentarios</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">El menú de ayuda & comentarios está oculto</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Se muestra el menú Ayuda & comentarios</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ocultar velocidad de reproducción</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menú de velocidad de reproducción oculto</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Mostrar menú de velocidad de reproducción</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ocultar más información</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">El menú de más información está oculto</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Se muestra el menú de más información</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ocultar pantalla de bloqueo</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">El menú de la pantalla de bloqueo está oculto</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Se muestra el menú de pantalla de bloqueo</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ocultar pista de audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">El menú de pista de audio está oculto</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">El menú de pista de audio se muestra</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ocultar reloj en VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Ver en el menú VR está oculto</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Ver en el menú VR se muestra</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ocultar botones de vídeo anteriores & siguiente</string>
+ <string name="revanced_hide_player_buttons_summary_on">Los botones están ocultos</string>
+ <string name="revanced_hide_player_buttons_summary_off">Los botones se muestran</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ocultar álbumes</string>
+ <string name="revanced_hide_album_cards_summary_on">Las tarjetas de álbum están ocultas</string>
+ <string name="revanced_hide_album_cards_summary_off">Se muestran las tarjetas de álbum</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentarios</string>
+ <string name="revanced_comments_screen_summary">Ocultar o mostrar los componentes de sección de comentarios</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ocultar encabezado \'Comentarios por miembros\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">El encabezado \'Comentarios por miembros\' está oculto</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">La cabecera \'Comentarios por miembros\' se muestra</string>
+ <string name="revanced_hide_comments_section_title">Ocultar sección de comentarios</string>
+ <string name="revanced_hide_comments_section_summary_on">La sección de comentarios está oculta</string>
+ <string name="revanced_hide_comments_section_summary_off">Sección de comentarios mostrada</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ocultar botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">El botón \'Crear un corto\' está oculto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Se muestra el botón \'Crear un corto\'</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ocultar comentario de vista previa</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">El comentario de la vista previa está oculto</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Vista previa del comentario se muestra</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ocultar botón de gracias</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">El botón de gracias está oculto</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Se muestra el botón de gracias</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ocultar botones de hora y emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Botones Timestamp y emoji están ocultos</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Se muestran los botones Timestamp y emoji</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ocultar caja de recaudación</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">La caja de Crowdfunding está oculta</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Se muestra la caja de Crowdfunding</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ocultar tarjetas de pantalla final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Las tarjetas de pantalla de fin están ocultas</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Se muestran las tarjetas de la pantalla final</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra de filtros</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ocultar o mostrar la barra de filtros en el feed, la búsqueda y vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ocultar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Escondido en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Mostrar en el feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ocultar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Oculto en la búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Mostrar en búsqueda</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ocultar en vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Escondido en videos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Mostrar en vídeos relacionados</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ocultar botón de micrófono flotante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Botón de micrófono oculto</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Botón del micrófono mostrado</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Desactivar el modo ambiente en pantalla completa</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modo ambiente desactivado</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modo ambiente activado</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ocultar tarjetas de información</string>
+ <string name="revanced_hide_info_cards_summary_on">Las tarjetas de información están ocultas</string>
+ <string name="revanced_hide_info_cards_summary_off">Se muestran las tarjetas de información</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Desactivar animaciones de número de rodamiento</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Los números de registro no están animados</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Los números de registro son animados</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ocultar barra de búsqueda en el reproductor de vídeo</string>
+ <string name="revanced_hide_seekbar_summary_on">La barra de búsqueda del reproductor de vídeo está oculta</string>
+ <string name="revanced_hide_seekbar_summary_off">La barra de búsqueda del reproductor de vídeo se muestra</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ocultar barra de búsqueda en miniaturas de vídeo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">La barra de búsqueda de miniaturas está oculta</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">La barra de búsqueda de miniaturas se muestra</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ocultar breves en el feed de inicio</string>
+ <string name="revanced_hide_shorts_home_summary_on">Los cortos en la alimentación de inicio están ocultos</string>
+ <string name="revanced_hide_shorts_home_summary_off">Se muestran los cortos en la alimentación de inicio</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ocultar breves en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Los cortos en el feed de suscripción están ocultos</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Se muestran los cortos en el feed de suscripción</string>
+ <string name="revanced_hide_shorts_search_title">Ocultar breves en los resultados de búsqueda</string>
+ <string name="revanced_hide_shorts_search_summary_on">Los breves resultados de búsqueda están ocultos</string>
+ <string name="revanced_hide_shorts_search_summary_off">Se muestran breves en los resultados de búsqueda</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ocultar botón de unirse</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Botón de unión oculto</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Se muestra el botón de unirse</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ocultar botón de suscripción</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">El botón de suscripción está oculto</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Se muestra el botón de suscripción</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ocultar botones de superposición en pausa</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Los botones de superposición pausados están ocultos</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Se muestran los botones de superposición pausados</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ocultar botón de tienda</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">El botón de la tienda está oculto</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Se muestra el botón de la tienda</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ocultar botón de súper gracias</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">El botón de súper gracias está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Se muestra el botón de supergracias</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ocultar productos etiquetados</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Los productos etiquetados están ocultos</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Los productos etiquetados se muestran</string>
+ <string name="revanced_hide_shorts_location_label_title">Ocultar etiqueta de ubicación</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Etiqueta de ubicación oculta</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Etiqueta de ubicación mostrada</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ocultar sonido guardado al botón de lista de reproducción</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Guardar sonido en lista de reproducción está oculto</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Guardar sonido en la lista de reproducción se muestra</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ocultar sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Las sugerencias de búsqueda están ocultas</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Se muestran sugerencias de búsqueda</string>
+ <string name="revanced_hide_shorts_like_button_title">Ocultar botón me gusta</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">El botón Me gusta está oculto</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Se muestra el botón Me Gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ocultar botón no me gusta</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">El botón no me gusta está oculto</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">El botón no me gusta se muestra</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ocultar botón de comentarios</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">El botón de comentarios está oculto</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Se muestra el botón de comentarios</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ocultar botón de remezcla</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">El botón Remix está oculto</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Se muestra el botón Remix</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ocultar botón Compartir</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">El botón Compartir está oculto</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Se muestra el botón Compartir</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ocultar panel de información</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Panel de información oculto</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Se muestra el panel de información</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ocultar barra de canal</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Barra de canales oculta</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra de canales mostrada</string>
+ <string name="revanced_hide_shorts_video_title_title">Ocultar título de vídeo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">El título está oculto</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">El título se muestra</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ocultar etiqueta de metadatos de sonido</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etiqueta de metadatos oculta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etiqueta de metadatos mostrada</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ocultar etiqueta de enlace de vídeo completo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etiqueta de enlace de vídeo oculto</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etiqueta de enlace de vídeo mostrada</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ocultar botón de sonido</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Botón de sonido oculto</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Se muestra el botón de sonido</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ocultar barra de navegación</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Barra de navegación oculta</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Se muestra la barra de navegación</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Desactivar pantalla de final de vídeo sugerida</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Vídeos sugeridos serán desactivados</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Se mostrarán vídeos sugeridos</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ocultar fecha y hora de vídeo</string>
+ <string name="revanced_hide_timestamp_summary_on">Marca de tiempo oculta</string>
+ <string name="revanced_hide_timestamp_summary_off">Marca de tiempo mostrada</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ocultar paneles emergentes del jugador</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Los paneles emergentes del jugador están ocultos</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Se muestran paneles emergentes del jugador</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacidad de superposición del jugador</string>
+ <string name="revanced_player_overlay_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacidad de superposición del jugador debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">No me gusta no disponibles temp. (API expirada)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Dislikes no disponibles (estado %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">No me gusta no disponibles (límite de API alcanzado)</string>
+ <string name="revanced_ryd_failure_generic">Dislikes no disponibles (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recargar vídeo para votar usando Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikes son mostrados</string>
+ <string name="revanced_ryd_enable_summary_off">No se muestran Dislikes</string>
+ <string name="revanced_ryd_shorts_title">Mostrar no me gusta en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikes mostrados en Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikes mostrados en Cortos\n\nLimitación: Las Dislikes no pueden aparecer en modo incógnito</string>
+ <string name="revanced_ryd_shorts_summary_off">Dislikes ocultos en Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Desliza como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikes mostrados como porcentaje</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikes mostrados como número</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Botón de compacto</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Botón \"Me gusta\" para el ancho mínimo</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Botón \"Me gusta\" para una mejor apariencia</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast no se muestra si Devolución de YouTube Dislike no está disponible</string>
+ <string name="revanced_ryd_about">Acerca de</string>
+ <string name="revanced_ryd_attribution_summary">Los datos son proporcionados por la API de Retorno de YouTube. Pulse aquí para aprender más</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Devuelve las estadísticas de la API de este dispositivo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tiempo de respuesta de la API, promedio</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tiempo de respuesta de API, mínimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tiempo de respuesta de la API, máximo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tiempo de respuesta API, último vídeo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes temporalmente no disponible - Límite de tasa de cliente API en efecto</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Votaciones de la API, número de llamadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">No hay llamadas de red</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Llamadas de red %d realizadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Votos de búsqueda de API, número de tiempos de espera</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">No hay llamadas de red agotadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Tiempo de espera de llamadas de red %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Límites de velocidad del cliente API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">No se encontraron límites de tasa de clientes</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Límite de tasa de cliente encontrado %d veces</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisegundos</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Habilitar barra de búsqueda ancha</string>
+ <string name="revanced_wide_searchbar_summary_on">Barra de búsqueda ancha habilitada</string>
+ <string name="revanced_wide_searchbar_summary_off">Barra de búsqueda ancha desactivada</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurar antiguas miniaturas de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Las miniaturas de la barra de búsqueda aparecerán por encima de la barra de búsqueda</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Las miniaturas de Seekbar aparecerán en pantalla completa</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Activar SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock es un sistema de fuentes múltiples para omitir partes molestas de vídeos de YouTube</string>
+ <string name="revanced_sb_appearance_category">Apariencia</string>
+ <string name="revanced_sb_enable_voting">Mostrar botón de voto</string>
+ <string name="revanced_sb_enable_voting_sum_on">Se muestra el botón de voto del segmento</string>
+ <string name="revanced_sb_enable_voting_sum_off">El botón de voto del segmento no se muestra</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Usar botón compacto de saltar</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Omitir botón con estilo para el ancho mínimo</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Omitir botón con estilo para la mejor apariencia</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ocultar automáticamente el botón omitir</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Omitir botón se oculta después de unos segundos</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Saltar botón mostrado para todo el segmento</string>
+ <string name="revanced_sb_general_skiptoast">Mostrar un brindis al saltar automáticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast se muestra cuando un segmento se omite automáticamente. Pulse aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast no se muestra. Toque aquí para ver un ejemplo</string>
+ <string name="revanced_sb_general_time_without">Mostrar longitud de vídeo sin segmentos</string>
+ <string name="revanced_sb_general_time_without_sum_on">Longitud del vídeo menos todos los segmentos, mostrados en paréntesis junto a la longitud completa del vídeo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Longitud completa del vídeo mostrada</string>
+ <string name="revanced_sb_create_segment_category">Creando nuevos segmentos</string>
+ <string name="revanced_sb_enable_create_segment">Mostrar botón crear nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">No se muestra el botón de crear un nuevo segmento</string>
+ <string name="revanced_sb_general_adjusting">Ajustar nuevo paso de segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Número de milisegundos que los botones de ajuste de tiempo se mueven al crear nuevos segmentos</string>
+ <string name="revanced_sb_general_adjusting_invalid">El valor debe ser un número positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Ver pautas</string>
+ <string name="revanced_sb_guidelines_preference_sum">Las directrices contienen reglas y consejos para crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_title">Siga las pautas</string>
+ <string name="revanced_sb_guidelines_popup_content">Lee las directrices de SponsorBlock antes de crear nuevos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Ya leido</string>
+ <string name="revanced_sb_guidelines_popup_open">Muéstrame</string>
+ <string name="revanced_sb_general">General</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast no se muestra si SponsorBlock no está disponible</string>
+ <string name="revanced_sb_general_skipcount">Habilitar rastreo del conteo de saltos</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Permite que la tabla de clasificación de SponsorBlock sepa cuánto tiempo se ha ahorrado. Un mensaje se envía al tablero de clasificación cada vez que se omite un segmento</string>
+ <string name="revanced_sb_general_skipcount_sum_off">El rastreo del conteo de saltos no está habilitado</string>
+ <string name="revanced_sb_general_min_duration">Duración mínima del segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">Los segmentos más cortos que este valor (en segundos) no se mostrarán o se omitirán</string>
+ <string name="revanced_sb_general_uuid">Tu id de usuario privado</string>
+ <string name="revanced_sb_general_uuid_sum">Esto debería mantenerse en privado. Esto es como una contraseña y no debe ser compartido con nadie. Si alguien tiene esto, puede suplantarte</string>
+ <string name="revanced_sb_general_uuid_invalid">El id de usuario privado debe tener al menos 30 caracteres</string>
+ <string name="revanced_sb_general_api_url">Cambiar URL API</string>
+ <string name="revanced_sb_general_api_url_sum">La dirección que SponsorBlock utiliza para hacer llamadas al servidor</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">La URL de API no es válida</string>
+ <string name="revanced_sb_api_url_changed">URL de API cambiada</string>
+ <string name="revanced_sb_settings_ie">Importar / Exportar ajustes</string>
+ <string name="revanced_sb_settings_copy">Copiar</string>
+ <string name="revanced_sb_settings_ie_sum">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Su configuración JSON de SponsorBlock que puede importarse/exportarse a ReVanced y otras plataformas SponsorBlock. Esto incluye tu id de usuario privado. Asegúrate de compartirlo sabiamente</string>
+ <string name="revanced_sb_settings_import_successful">Configuración importada correctamente</string>
+ <string name="revanced_sb_settings_import_failed">Error al importar: %s</string>
+ <string name="revanced_sb_settings_export_failed">Error al exportar: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Tu configuración contiene un usuario privado de SponsorBlock.\n\nTu id de usuario es como una contraseña y nunca debe ser compartida.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">No mostrar de nuevo</string>
+ <string name="revanced_sb_diff_segments">Cambiar comportamiento del segmento</string>
+ <string name="revanced_sb_segments_sponsor">Patrocinador</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoción pagada, referencias pagadas y anuncios directos. No para autopromoción o gritos gratuitos a causas/creadores/sitios web/productos que les gustan</string>
+ <string name="revanced_sb_segments_selfpromo">Promover no pagado/autoestima</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Similar a \'Patrocinador\' excepto por falta de pago o autopromoción. Incluye secciones sobre meritud, donaciones o información sobre con quién colaboraron</string>
+ <string name="revanced_sb_segments_interaction">Recordatorio de interacción (enviar)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un pequeño recordatorio para gustar, suscribirse o seguirlos en medio del contenido. Si es largo o sobre algo específico, debería estar bajo autopromoción</string>
+ <string name="revanced_sb_segments_highlight">Resaltar</string>
+ <string name="revanced_sb_segments_highlight_sum">La parte del vídeo que la mayoría de la gente está buscando</string>
+ <string name="revanced_sb_segments_intro">Intermisión/Animación de introducción</string>
+ <string name="revanced_sb_segments_intro_sum">Un intervalo sin contenido real. Podría ser una pausa, marco estático o animación de repetición. No incluye transiciones que contengan información</string>
+ <string name="revanced_sb_segments_outro">Tarjetas/Créditos</string>
+ <string name="revanced_sb_segments_outro_sum">Créditos o cuando aparecen las tarjetas finales de YouTube. No para conclusiones con información</string>
+ <string name="revanced_sb_segments_preview">Vista previa/Recapitular/Juego</string>
+ <string name="revanced_sb_segments_preview_sum">Colección de clips que muestran lo que viene o lo que pasó en el vídeo o en otros videos de una serie, donde toda la información se repite en otro lugar</string>
+ <string name="revanced_sb_segments_filler">Rellenar tangente/chistes</string>
+ <string name="revanced_sb_segments_filler_sum">Escenas tangenciales añadidas sólo para relleno o humor que no están obligadas a entender el contenido principal del vídeo. No incluye segmentos proporcionando detalles de contexto o fondo</string>
+ <string name="revanced_sb_segments_nomusic">Música: Sección no musical</string>
+ <string name="revanced_sb_segments_nomusic_sum">Sólo para usar en vídeos de música. Secciones de vídeos de música sin música, que no están cubiertas por otra categoría</string>
+ <string name="revanced_sb_skip_button_compact">Saltar</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Resaltar</string>
+ <string name="revanced_sb_skip_button_sponsor">Saltar patrocinador</string>
+ <string name="revanced_sb_skip_button_selfpromo">Saltar promoción</string>
+ <string name="revanced_sb_skip_button_interaction">Saltar interacción</string>
+ <string name="revanced_sb_skip_button_highlight">Omitir a resaltado</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Saltar intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_intro_end">Omitir intermisión</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_middle">Saltar vista previa</string>
+ <string name="revanced_sb_skip_button_preview_end">Saltar resumen</string>
+ <string name="revanced_sb_skip_button_filler">Saltar relleno</string>
+ <string name="revanced_sb_skip_button_nomusic">Omitir no música</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Saltar segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Patrocinador omitido</string>
+ <string name="revanced_sb_skipped_selfpromo">Autopromoción omitida</string>
+ <string name="revanced_sb_skipped_interaction">Recordatorio omitido</string>
+ <string name="revanced_sb_skipped_highlight">Saltado a destacar</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro omitido</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_intro_end">Intermisión omitida</string>
+ <string name="revanced_sb_skipped_outro">Saltar outro</string>
+ <string name="revanced_sb_skipped_preview_beginning">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_middle">Vista previa omitida</string>
+ <string name="revanced_sb_skipped_preview_end">Resumen omitido</string>
+ <string name="revanced_sb_skipped_filler">Relleno omitido</string>
+ <string name="revanced_sb_skipped_nomusic">Se omitió una sección de no-música</string>
+ <string name="revanced_sb_skipped_unsubmitted">Se omitió el segmento no enviado</string>
+ <string name="revanced_sb_skipped_multiple_segments">Se omitieron varios segmentos</string>
+ <string name="revanced_sb_skip_automatically">Saltar automáticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Saltar automáticamente una vez</string>
+ <string name="revanced_sb_skip_showbutton">Mostrar un botón saltar</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostrar en la barra de búsqueda</string>
+ <string name="revanced_sb_skip_ignore">Desactivar</string>
+ <string name="revanced_sb_submit_failed_invalid">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock está temporalmente abajo</string>
+ <string name="revanced_sb_submit_failed_unknown_error">No se puede enviar el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">No se puede enviar el segmento.\nTasa limitada (demasiados usuarios o IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">No se puede enviar el segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">No se puede enviar el segmento.\nYa existe</string>
+ <string name="revanced_sb_submit_succeeded">Segmento enviado correctamente</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporalmente no está disponible (API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporalmente no disponible (estado %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporalmente no está disponible</string>
+ <string name="revanced_sb_vote_failed_timeout">No se puede votar por el segmento (API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">No se puede votar por el segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">No se puede votar por el segmento: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Bajar voto</string>
+ <string name="revanced_sb_vote_category">Cambiar categoría</string>
+ <string name="revanced_sb_vote_no_segments">No hay segmentos para votar</string>
+ <string name="revanced_sb_new_segment_choose_category">Elegir la categoría del segmento</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categoría desactivada en ajustes. Activa categoría para enviar.</string>
+ <string name="revanced_sb_new_segment_title">Nuevo segmento de SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Establecer %1$02d:%2$02d:%3$03d como inicio o final de un nuevo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">empezar</string>
+ <string name="revanced_sb_new_segment_mark_end">fin</string>
+ <string name="revanced_sb_new_segment_now">ahora</string>
+ <string name="revanced_sb_new_segment_time_start">Tiempo que el segmento comienza en</string>
+ <string name="revanced_sb_new_segment_time_end">Tiempo que el segmento termina en</string>
+ <string name="revanced_sb_new_segment_confirm_title">¿Son correctos los tiempos?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">El segmento es desde\n\n%1$s\nhasta\n%2$s\n\n(%3$s)\n\n¿Listo para enviarlo?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Inicio debe ser antes del final</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marca dos ubicaciones en barra de tiempo</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Previsualizar el segmento y asegurarse de que se salta sin problemas</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Editar temporización del segmento manualmente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">¿Quiere editar el cronograma para el inicio o fin del segmento?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Tiempo dado no válido</string>
+ <string name="revanced_sb_stats">Estadísticas</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Estadísticas temporalmente no disponibles (API está caída)</string>
+ <string name="revanced_sb_stats_loading">Cargando...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock está desactivado</string>
+ <string name="revanced_sb_stats_username">Tu nombre de usuario: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Pulsa aquí para cambiar tu nombre de usuario</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">No se puede cambiar el nombre de usuario: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nombre de usuario cambiado correctamente</string>
+ <string name="revanced_sb_stats_reputation">Tu reputación es <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Has creado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">Tabla de clasificación de SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Has salvado personas de segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Pulsa aquí para ver las estadísticas globales y los mejores colaboradores</string>
+ <string name="revanced_sb_stats_saved_sum">Eso es <b>%s</b> de sus vidas.<br>Toca aquí para ver la tabla de clasificación</string>
+ <string name="revanced_sb_stats_self_saved">Te has saltado segmentos <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_sum">Eso es <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">¿Restablecer contador de segmentos saltados?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s horas %2$s minutos</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutos %2$s segundos</string>
+ <string name="revanced_sb_stats_saved_second_format">%s segundos</string>
+ <string name="revanced_sb_color_dot_label">Color:</string>
+ <string name="revanced_sb_color_changed">Color cambiado</string>
+ <string name="revanced_sb_color_reset">Reinicio de color</string>
+ <string name="revanced_sb_color_invalid">Código de color inválido</string>
+ <string name="revanced_sb_reset_color">Reiniciar color</string>
+ <string name="revanced_sb_reset">Reiniciar</string>
+ <string name="revanced_sb_about">Acerca de</string>
+ <string name="revanced_sb_about_api_sum">Los datos son proporcionados por la API de SponsorBlock. Pulsa aquí para aprender más y ver las descargas de otras plataformas</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versión de la aplicación Spoof</string>
+ <string name="revanced_spoof_app_version_summary_on">Versión falseada</string>
+ <string name="revanced_spoof_app_version_summary_off">Versión no falseada</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">La versión de la aplicación será suplantada por una versión anterior de YouTube.\n\nEsto cambiará la apariencia y las funciones de la aplicación, pero pueden ocurrir efectos secundarios desconocidos.\n\nSi luego se desactiva, se recomienda borrar los datos de la aplicación para prevenir errores de interfaz de usuario.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Destino de versión de la aplicación Spoof</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurar RYD en modo incógnito cortos</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurar la velocidad de vídeo ancha & menú de calidad</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurar pestaña de biblioteca</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurar la vieja lista de reproducción shelf</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurar la disposición antigua de la interfaz de usuario</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Establecer página de inicio</string>
+ <string name="revanced_start_page_entry_0">Por defecto</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Inicio</string>
+ <string name="revanced_start_page_entry_2">Buscar</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Suscripciones</string>
+ <string name="revanced_start_page_entry_4">Explorar</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Pestaña</string>
+ <string name="revanced_start_page_entry_7">Vídeos gustados</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historial</string>
+ <string name="revanced_start_page_entry_9">Tendencias</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Desactivar reanudación del reproductor</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">El reproductor corto no se reanudará al iniciar la aplicación</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">El reproductor corto se reanudará al iniciar la aplicación</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Habilitar diseño de tablet</string>
+ <string name="revanced_tablet_layout_summary_on">Diseño de tablet habilitado</string>
+ <string name="revanced_tablet_layout_summary_off">Diseño de tablet deshabilitado</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Los mensajes de la comunidad no se muestran en los diseños de tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijugador</string>
+ <string name="revanced_miniplayer_screen_summary">Cambiar el estilo del reproductor minimizado de la aplicación</string>
+ <string name="revanced_miniplayer_type_title">Tipo de minijugador</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Teléfono</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderna 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderna 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderna 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ocultar botones de expansión y cierre</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Los botones están ocultos\n(desliza el minijugador para expandir o cerrar)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Mostrar los botones de ampliación y cierre</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ocultar subtextos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Los subtextos están ocultos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Los subtextos se muestran</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ocultar botones de omitir hacia adelante y atrás</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Saltar adelante y atrás están ocultos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Saltar adelante y atrás se muestran</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valor de potencia entre 0-100, donde 0 es transparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">La opacidad de superposición del Miniplayer debe estar entre 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Activar la pantalla de carga del degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_on">La pantalla de carga tendrá un fondo de degradado</string>
+ <string name="revanced_gradient_loading_screen_summary_off">La pantalla de carga tendrá un fondo sólido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Activar el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Se muestra el color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Se muestra el color original de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_title">Color personalizado de la barra de búsqueda</string>
+ <string name="revanced_seekbar_custom_color_value_summary">El color de la barra de ajustes</string>
+ <string name="revanced_seekbar_custom_color_invalid">Color de barra de b. inválido. Usando por defecto.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Pestaña</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Pestaña de suscripción</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Pestaña</string>
+ <string name="revanced_alt_thumbnail_player_title">Listas de reproducción, recomendaciones</string>
+ <string name="revanced_alt_thumbnail_search_title">Resultados de búsqueda</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Deflecha & miniaturas originales</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Flecha & Todavía capturas</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Sigue capturando</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeFlecha proporciona miniaturas de origen crowd para vídeos de YouTube. Estas uñas suelen ser más relevantes que las proporcionadas por YouTube\n\nSi están activadas, las URL de vídeo se enviarán al servidor API y no se enviarán otros datos. Si un video no tiene miniaturas de Flecha Deprimida, entonces las capturas originales o todavía se muestran\n\nPulsa aquí para aprender más sobre DeFlecha</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Mostrar un brindis si la API no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast no se muestra si DeFlecha no está disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">La URL del final de la caché en miniatura de DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Todavía captura de vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Las capturas se toman desde el principio/medio/final de cada vídeo. Estas imágenes están incorporadas en YouTube y no se utiliza ninguna API externa</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usar capturas aún rápidas</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Usar captura de calidad media todavía. Las miniaturas se cargarán más rápido, pero streams en vivo, no liberados o vídeos muy antiguos pueden mostrar miniaturas en blanco</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Usando capturas de alta calidad</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tiempo de vídeo desde el que tomar aún las capturas</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Inicio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Medio del vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fin del vídeo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow temporalmente no disponible (código estado: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeFlecha temporalmente no disponible</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Mostrar anuncios revalorizados</string>
+ <string name="revanced_announcements_summary_on">Los anuncios se muestran al iniciar</string>
+ <string name="revanced_announcements_summary_off">Los anuncios no se muestran al iniciar</string>
+ <string name="revanced_announcements_enabled_summary">Mostrar anuncios al iniciar</string>
+ <string name="revanced_announcements_connection_failed">Error al conectar con el proveedor de anuncios</string>
+ <string name="revanced_announcements_dialog_dismiss">Descartar</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Activar autorepetición</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-repetición habilitada</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-repetición desactivada</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Dimensiones del dispositivo</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensiones del dispositivo falseadas\n\nCalidad de vídeo más alta puede ser desbloqueada, pero puede experimentar la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensiones del dispositivo no falseadas\n\nHabilitar esto puede desbloquear mayores calidades de vídeo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Activar esto puede causar retraso en la reproducción de vídeo, peor duración de la batería y efectos secundarios desconocidos.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Ajustes de GmsCore</string>
+ <string name="microg_settings_summary">Configuración de GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Redirecciones URL Bypass</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Se omiten las redirecciones URL</string>
+ <string name="revanced_bypass_url_redirects_summary_off">No se omiten las redirecciones URL</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Abrir enlaces en el navegador</string>
+ <string name="revanced_external_browser_summary_on">Abriendo enlaces externamente</string>
+ <string name="revanced_external_browser_summary_off">Abrir enlaces en la aplicación</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Reproducción en segundo plano</string>
+ <string name="revanced_background_playback_summary">Esta configuración se puede encontrar en Ajustes -> Fondo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Quitar parámetro de consulta de rastreo</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parámetro de la consulta de seguimiento se elimina de los enlaces</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parámetro de la consulta de seguimiento no se elimina de los enlaces</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Desactivar hábitos de zoom</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hápticas desactivadas</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics están habilitados</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Calidad automática</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Recordar cambios de calidad de vídeo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Los cambios de calidad se aplican a todos los vídeos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Los cambios de calidad sólo se aplican al vídeo actual</string>
+ <string name="revanced_video_quality_default_wifi_title">Calidad de vídeo predeterminada en la red Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Calidad de vídeo predeterminada en la red móvil</string>
+ <string name="revanced_remember_video_quality_mobile">móvil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Cambió la calidad predeterminada %1$s a: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostrar botón de diálogo de velocidad</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">El botón de muestra</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">El botón no se muestra</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocidades de reproducción personalizadas</string>
+ <string name="revanced_custom_playback_speeds_summary">Añadir o cambiar las velocidades de reproducción disponibles</string>
+ <string name="revanced_custom_playback_speeds_invalid">Velocidades personalizadas deben ser inferiores a %s. Usando predets.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Vels. de rep. personalizadas inválidas. Usando predets.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Recordar cambios de velocidad de reproducción</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Los cambios de velocidad de reproducción se aplican a todos los vídeos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Los cambios de velocidad de reproducción sólo se aplican al vídeo actual</string>
+ <string name="revanced_playback_speed_default_title">Velocidad de reproducción por defecto</string>
+ <string name="revanced_remember_playback_speed_toast">Cambió la velocidad predeterminada a: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurar menú de calidad de vídeo antiguo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Se muestra el antiguo menú de calidad de vídeo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">El antiguo menú de calidad de vídeo no se muestra</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Habilitar diapositiva para buscar</string>
+ <string name="revanced_slide_to_seek_summary_on">Deslizar para buscar está activado</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide to seek no está habilitado</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_screen_summary">Fusiona al cliente para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_client_title">Cliente Spoof</string>
+ <string name="revanced_spoof_client_summary_on">Cliente falseado</string>
+ <string name="revanced_spoof_client_summary_off">El cliente no está falsificado\n\nEs posible que la reproducción de vídeo no funcione</string>
+ <string name="revanced_spoof_client_user_dialog_message">Desactivar esta configuración puede causar problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof cliente a iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">El cliente está actualmente falseado a iOS\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Es posible que el historial del reloj no funcione\n• Puede que falten más calidad de vídeo\n• Los streams en vivo no pueden reproducirse como audio solo\n• streams en vivo no disponibles en Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">El cliente está actualmente falseado a Android VR\n\nLos efectos laterales incluyen:\n• No hay vídeo HDR\n• Los vídeos para niños no se reproducirán\n• Los vídeos en pausa pueden reanudarse aleatoriamente\n• Las miniaturas de barras cortas de baja calidad\n• El botón de descarga siempre está oculto\n• Las tarjetas de la pantalla final siempre están ocultas</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Las miniaturas del cliente de Spoof no están disponibles (API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Las miniaturas del cliente Spoof temporalmente no están disponibles: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Espoya la firma de la aplicación para evitar problemas de reproducción</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Firma de aplicación Spoof</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">La firma de la aplicación falseada\n\nLos efectos laterales incluyen:\n• La tasa de bits mejorada no está disponible\n• Los vídeos no se pueden descargar\n• No hay miniaturas en la barra de búsqueda para vídeos pagados</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">La firma de la aplicación no está falseada\n\nLa reproducción de vídeo puede no funcionar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Desactivar esta configuración causará problemas de reproducción de vídeo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof firma de aplicación en el feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">La firma de la aplicación está falseada\n\nLos efectos laterales incluyen:\n• Los vídeos alimentarios no tienen subtítulos\n• Los vídeos reproducidos automáticamente se mostrarán en tu historial de relojes</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Firma de la aplicación no simulada para videos de feed\n\nLos vídeos alimentarios se reproducirán durante menos de 1 minuto antes de encontrar problemas de reproducción</string>
+ <string name="revanced_spoof_storyboard_title">Cuadro de historias</string>
+ <string name="revanced_spoof_storyboard_summary_on">Cuadro de historias falseado</string>
+ <string name="revanced_spoof_storyboard_summary_off">El storyboard no está falseado\n\nLos efectos laterales incluyen:\n• Sin modo ambiente\n• Las miniaturas de la barra de búsqueda están ocultas</string>
+ <string name="revanced_spoof_storyboard_timeout">El storyboard espía no está disponible temporalmente (API)</string>
+ <string name="revanced_spoof_storyboard_io_exception">El storyboard espía no está disponible temporalmente: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Activar brillo HDR automático</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Brillo automático HDR está habilitado</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Brillo automático HDR está desactivado</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquear anuncios de audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anuncios de audio bloqueados</string>
+ <string name="revanced_block_audio_ads_summary_off">Anuncios de audio desbloqueados</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s no está disponible. Los anuncios pueden mostrarse. Intenta cambiar a otro bloqueador en ajustes.</string>
+ <string name="revanced_embedded_ads_service_failed">El servidor %s devolvió un error. Puede haber anuncios. Intenta cambiar a otro bloqueador en la configuración.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquear anuncios de vídeo incrustados</string>
+ <string name="revanced_block_embedded_ads_entry_1">Desactivado</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy luminoso</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy MoradoAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquear anuncios de vídeo</string>
+ <string name="revanced_block_video_ads_summary_on">Los anuncios de vídeo están bloqueados</string>
+ <string name="revanced_block_video_ads_summary_off">Los anuncios de vídeo están desbloqueados</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mensaje eliminado</string>
+ <string name="revanced_show_deleted_messages_title">Mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_1">No mostrar mensajes borrados</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ocultar mensajes eliminados detrás de un spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostrar mensajes borrados como texto cruzado</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Reclamar automáticamente los puntos de canal</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Los puntos de canal se reclaman automáticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Los puntos de canal no se reclaman automáticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Activar modo de depuración de Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">El modo de depuración de Twitch está habilitado (no recomendado)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">El modo de depuración de Twitch está desactivado</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Ajustes de ReVanced</string>
+ <string name="revanced_ads_screen_title">Anuncios</string>
+ <string name="revanced_ads_screen_summary">Ajustes de bloqueo de anuncios</string>
+ <string name="revanced_chat_screen_title">Chatear</string>
+ <string name="revanced_chat_screen_summary">Ajustes del chat</string>
+ <string name="revanced_misc_screen_title">Otros</string>
+ <string name="revanced_misc_screen_summary">Ajustes multifuncionales</string>
+ <string name="revanced_general_category_title">Ajustes generales</string>
+ <string name="revanced_other_category_title">Otros ajustes</string>
+ <string name="revanced_client_ads_category_title">Anuncios del cliente</string>
+ <string name="revanced_surestream_ads_category_title">Anuncios del lado del servidor</string>
+ <string name="revanced_twitch_debug_title">Registro de depuración</string>
+ <string name="revanced_twitch_debug_summary_on">Los registros de depuración están activados</string>
+ <string name="revanced_twitch_debug_summary_off">Los registros de depuración están desactivados</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-et-rEE/strings.xml b/src/main/resources/addresources/values-et-rEE/strings.xml
new file mode 100644
index 0000000000..dff7daba7f
--- /dev/null
+++ b/src/main/resources/addresources/values-et-rEE/strings.xml
@@ -0,0 +1,271 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Lähtesta</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Teave</string>
+ <string name="revanced_settings_screen_11_misc_title">Muud</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Infokaardid on peidetud</string>
+ <string name="revanced_hide_info_cards_summary_off">Infokaardid on nähtaval</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Teave</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Välimus</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Laen...</string>
+ <string name="revanced_sb_reset">Lähtesta</string>
+ <string name="revanced_sb_about">Teave</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Vaikimisi</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Loobu</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Väljas</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_misc_screen_title">Muud</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-eu-rES/strings.xml b/src/main/resources/addresources/values-eu-rES/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-eu-rES/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-fa-rIR/strings.xml b/src/main/resources/addresources/values-fa-rIR/strings.xml
new file mode 100644
index 0000000000..21f37534c2
--- /dev/null
+++ b/src/main/resources/addresources/values-fa-rIR/strings.xml
@@ -0,0 +1,267 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">تنظیم مجدد</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_header">لینک های رسمی</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">درباره ما</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">درباره ما</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">ظاهر</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">درحال بارگذاری...</string>
+ <string name="revanced_sb_reset">تنظیم مجدد</string>
+ <string name="revanced_sb_about">درباره ما</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">پیشفرض</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">غیرفعال شده</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-fi-rFI/strings.xml b/src/main/resources/addresources/values-fi-rFI/strings.xml
new file mode 100644
index 0000000000..00f8f86330
--- /dev/null
+++ b/src/main/resources/addresources/values-fi-rFI/strings.xml
@@ -0,0 +1,1199 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Haluatteko te jatkaa sitä?</string>
+ <string name="revanced_settings_reset">Palauta</string>
+ <string name="revanced_settings_restart_title">Päivitä ja käynnistä uudelleen</string>
+ <string name="revanced_settings_restart">Käynnistä Uudelleen</string>
+ <string name="revanced_settings_import">Tuo</string>
+ <string name="revanced_settings_import_copy">Kopioi</string>
+ <string name="revanced_settings_import_reset">Peruutetut asetukset nollattu oletukseksi</string>
+ <string name="revanced_settings_import_success">Tuotu %d asetukset</string>
+ <string name="revanced_settings_import_failure_parse">Tuonti epäonnistui: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore ei ole asennettu. Asenna se.</string>
+ <string name="gms_core_dialog_title">Tarvittavat toimet</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCorella ei ole oikeutta ajaa taustalla.\n\nNoudata puhelimeesi \"Älä tapa sovellustani\" -opasta ja käytä ohjeita MicroG-asennukseen.\n\nTämä on tarpeen, jotta sovellus toimisi.</string>
+ <string name="gms_core_dialog_open_website_text">Avaa sivusto</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore akun optimointi on estettävä ongelmien välttämiseksi.\n\nNapauta jatkonäppäintä ja poista akun optimointi käytöstä.</string>
+ <string name="gms_core_dialog_continue_text">Jatka</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Käytät ReVanced Patches versiota <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Huomautus</string>
+ <string name="revanced_settings_about_links_dev_body">Tämä versio on pre-release ja voit kokea odottamattomia ongelmia</string>
+ <string name="revanced_settings_about_links_header">Viralliset linkit</string>
+ <string name="revanced_pref_import_export_title">Tuo / Vie</string>
+ <string name="revanced_pref_import_export_summary">Tuo / vie peruutetut asetukset</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Tietoja</string>
+ <string name="revanced_settings_screen_01_ads_title">Mainokset</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Vaihtoehtoiset pikkukuvat</string>
+ <string name="revanced_settings_screen_03_feed_title">Syöte</string>
+ <string name="revanced_settings_screen_04_player_title">Pelaaja</string>
+ <string name="revanced_settings_screen_05_general_title">Yleinen asettelu</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shortsit</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Seekbar</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Pyyhkäisyohjaimet</string>
+ <string name="revanced_settings_screen_11_misc_title">Sekalaiset</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Vianselvitys</string>
+ <string name="revanced_debug_screen_summary">Ota käyttöön tai poista käytöstä vianetsintäasetukset</string>
+ <string name="revanced_debug_title">Vianetsintä lokiin</string>
+ <string name="revanced_debug_summary_on">Vianjäljityslokit ovat käytössä</string>
+ <string name="revanced_debug_summary_off">Vianjäljityslokit ovat pois päältä</string>
+ <string name="revanced_debug_protobuffer_title">Loki protokollan puskuri</string>
+ <string name="revanced_debug_protobuffer_summary_on">Vianjäljityslokit sisältävät proto-puskurin</string>
+ <string name="revanced_debug_protobuffer_summary_off">Virheenkorjauslokit eivät sisällä proto-puskuria</string>
+ <string name="revanced_debug_stacktrace_title">Loki pinojäljet</string>
+ <string name="revanced_debug_stacktrace_summary_on">Debug lokit sisältävät pino jälki</string>
+ <string name="revanced_debug_stacktrace_summary_off">Debug lokit eivät sisällä pino jälki</string>
+ <string name="revanced_debug_toast_on_error_title">Näytä paahtoleipä, kun peruutettu virhe</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast näkyy, jos virhe tapahtuu</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toastia ei näytä, jos tapahtui virhe</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Virhe poistamalla paastot piilottaa kaikki peruutetut virheilmoitukset.\n\nSinulle ei ilmoiteta odottamattomista tapahtumista.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Poista käytöstä kuten / tilaus-painike hehku</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Tykkää- ja tilauspainike ei hehku kun mainittu</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Tykkää ja tilaus painike hehkuu kun mainittu</string>
+ <string name="revanced_hide_gray_separator_title">Piilota harmaa erotin</string>
+ <string name="revanced_hide_gray_separator_summary_on">Harmaa erottimet on piilotettu</string>
+ <string name="revanced_hide_gray_separator_summary_off">Harmaa erottimet näytetään</string>
+ <string name="revanced_hide_channel_watermark_title">Piilota kanavan vesileima</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Vesileima on piilotettu</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vesileima näytetään</string>
+ <string name="revanced_hide_horizontal_shelves_title">Piilota vaakasuorat hyllyt</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Hyllyt, kuten seuraavat, on piilotettu:\n• Uusimmat uutiset\n• Jatka katselua\n• Etsi lisää kanavia\n• Ostokset\n• Katsele uudelleen</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Hyllyt näytetään</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Piilota \'Liity\' -painike</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Painike on piilotettu</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Painike näytetään</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Piilota \'Sinulle\' hylly kanavan sivulla</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Hylly on piilotettu</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Kestohylly näytetään</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Piilota \'Ilmoita minulle\' -painike</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Painike on piilotettu</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Painike näytetään</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Piilota \'Ihmiset myös katselevat\' suosituksia</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Suositukset on piilotettu</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Suositukset esitetään</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Piilota \'Näytä lisää\' painike</string>
+ <string name="revanced_hide_show_more_button_summary_on">Painike on piilotettu</string>
+ <string name="revanced_hide_show_more_button_summary_off">Painike näytetään</string>
+ <string name="revanced_hide_timed_reactions_title">Piilota ajoitetut reaktiot</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Ajoitetut reaktiot on piilotettu</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Ajoitetut reaktiot on esitetty</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Piilota hakutuloksen hyllyn otsikko</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Hyllyn ylätunniste on piilotettu</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Hyllyn otsake näytetään</string>
+ <string name="revanced_hide_channel_guidelines_title">Piilota kanavan ohjeet</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanavan ohjeet on piilotettu</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanavan ohjeet näytetään</string>
+ <string name="revanced_hide_expandable_chip_title">Piilota laajennettava siru videoiden alla</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Laajennettavat pelimerkit on piilotettu</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Laajennettavat pelimerkit näytetään</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Piilota videon laatuvalikon alatunniste</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Videon laatu valikon alatunniste on piilotettu</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Videon laatu valikon alatunniste näytetään</string>
+ <string name="revanced_hide_community_posts_title">Piilota yhteisön viestit</string>
+ <string name="revanced_hide_community_posts_summary_on">Yhteisön virat on piilotettu</string>
+ <string name="revanced_hide_community_posts_summary_off">Yhteisön virat näytetään</string>
+ <string name="revanced_hide_compact_banner_title">Piilota pienikokoiset mainospalkit</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakti mainospalkit on piilotettu</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakti mainospalkit näytetään</string>
+ <string name="revanced_hide_movies_section_title">Piilota elokuvien osio</string>
+ <string name="revanced_hide_movies_section_summary_on">Elokuvien osio on piilotettu</string>
+ <string name="revanced_hide_movies_section_summary_off">Elokuvien osio on esitetty</string>
+ <string name="revanced_hide_feed_survey_title">Piilota rehututkimukset</string>
+ <string name="revanced_hide_feed_survey_summary_on">Syöttötutkimukset ovat piilotettuja</string>
+ <string name="revanced_hide_feed_survey_summary_off">Rehututkimukset on esitetty</string>
+ <string name="revanced_hide_community_guidelines_title">Piilota yhteisön ohjeet</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Yhteisön suuntaviivat on piilotettu</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Yhteisön suuntaviivat esitetään</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Piilota tilaajien yhteisön ohjeet</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Tilaajat yhteisön ohjeet on piilotettu</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Tilaajat yhteisön ohjeet näytetään</string>
+ <string name="revanced_hide_channel_member_shelf_title">Piilota kanavan jäsenen hylly</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanavan jäsen hylly on piilotettu</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanavan jäsenen hylly näytetään</string>
+ <string name="revanced_hide_emergency_box_title">Piilota hätälaatikot</string>
+ <string name="revanced_hide_emergency_box_summary_on">Hätätilanteet on piilotettu</string>
+ <string name="revanced_hide_emergency_box_summary_off">Hätätilanteet näytetään</string>
+ <string name="revanced_hide_info_panels_title">Piilota infopaneelit</string>
+ <string name="revanced_hide_info_panels_summary_on">Tietopaneelit on piilotettu</string>
+ <string name="revanced_hide_info_panels_summary_off">Tietopaneelit näytetään</string>
+ <string name="revanced_hide_medical_panels_title">Piilota lääketieteelliset paneelit</string>
+ <string name="revanced_hide_medical_panels_summary_on">Lääketieteelliset paneelit on piilotettu</string>
+ <string name="revanced_hide_medical_panels_summary_off">Lääkinnälliset paneelit on esitetty</string>
+ <string name="revanced_hide_channel_bar_title">Piilota kanavapalkki</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanavapalkki on piilotettu</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanavapalkki näytetään</string>
+ <string name="revanced_hide_playables_title">Piilota Soittoesineet</string>
+ <string name="revanced_hide_playables_summary_on">Soittovälineet on piilotettu</string>
+ <string name="revanced_hide_playables_summary_off">Soittovälineet näytetään</string>
+ <string name="revanced_hide_quick_actions_title">Piilota pikatoiminnot koko näytössä</string>
+ <string name="revanced_hide_quick_actions_summary_on">Nopeat toiminnot on piilotettu</string>
+ <string name="revanced_hide_quick_actions_summary_off">Nopeat toiminnot näytetään</string>
+ <string name="revanced_hide_related_videos_title">Piilota liittyvät videot nopeissa toiminnoissa</string>
+ <string name="revanced_hide_related_videos_summary_on">Liittyvät videot on piilotettu</string>
+ <string name="revanced_hide_related_videos_summary_off">Liittyvät videot näytetään</string>
+ <string name="revanced_hide_image_shelf_title">Piilota kuvan hylly hakutuloksissa</string>
+ <string name="revanced_hide_image_shelf_summary_on">Kuvan hylly on piilotettu</string>
+ <string name="revanced_hide_image_shelf_summary_off">Kuvan hylly näytetään</string>
+ <string name="revanced_hide_latest_posts_ads_title">Piilota uusimmat viestit</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Viimeisimmät viestit on piilotettu</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Viimeisimmät viestit näytetään</string>
+ <string name="revanced_hide_mix_playlists_title">Piilota sekoitussoittolistat</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Sekoita soittolistoja piilotettu</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Sekoita soittolistoja näytetään</string>
+ <string name="revanced_hide_artist_cards_title">Piilota esittäjän kortit</string>
+ <string name="revanced_hide_artist_cards_summary_on">Artistin kortit on piilotettu</string>
+ <string name="revanced_hide_artist_cards_summary_off">Esittäjän kortit näytetään</string>
+ <string name="revanced_hide_chips_shelf_title">Piilota sirut</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips hylly on piilotettu</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips hylly on näkyvissä</string>
+ <string name="revanced_hide_attributes_section_title">Piilota attribuuttien osio</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Esillä olevia paikkoja\', Pelit ja Musiikin osat on piilotettu</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Suositeltuja paikkoja\', Pelit ja Musiikki osiot näytetään</string>
+ <string name="revanced_hide_chapters_section_title">Piilota luvun osio</string>
+ <string name="revanced_hide_chapters_section_summary_on">Luvun osio on piilotettu</string>
+ <string name="revanced_hide_chapters_section_summary_off">Lukujen jakso näytetään</string>
+ <string name="revanced_hide_podcast_section_title">Piilota \'Tutki podcast\' -osio</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Tutki podcast\' -osiota on piilotettu</string>
+ <string name="revanced_hide_podcast_section_summary_off">\'Tutki podcast\' -osiota näytetään</string>
+ <string name="revanced_hide_info_cards_section_title">Piilota infokorttien osio</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Tietokorttien osio on piilotettu</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Tietoa korteista -osio näytetään</string>
+ <string name="revanced_hide_transcript_section_title">Piilota Transkriptiosio</string>
+ <string name="revanced_hide_transcript_section_summary_on">Transkriptiosio on piilotettu</string>
+ <string name="revanced_hide_transcript_section_summary_off">Transkriptiosio näytetään</string>
+ <string name="revanced_hide_description_components_screen_title">Videon kuvaus</string>
+ <string name="revanced_hide_description_components_screen_summary">Piilota tai näytä videon kuvauskomponentit</string>
+ <string name="revanced_custom_filter_screen_title">Mukautettu suodatin</string>
+ <string name="revanced_custom_filter_screen_summary">Piilota komponentit käyttämällä mukautettuja suodattimia</string>
+ <string name="revanced_custom_filter_title">Käytä mukautettua suodatinta</string>
+ <string name="revanced_custom_filter_summary_on">Mukautettu suodatin on käytössä</string>
+ <string name="revanced_custom_filter_summary_off">Mukautettu suodatin on pois käytöstä</string>
+ <string name="revanced_custom_filter_strings_title">Mukautettu suodatin</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Luettelo komponentin polun rakentajan merkkijonoista suodatettavaksi uudella rivillä erotettuna</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Virheellinen mukautettu suodatin: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Piilota avainsanan sisältö</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Piilota haku- ja syötevideot avainsanasuodattimilla</string>
+ <string name="revanced_hide_keyword_content_home_title">Piilota kotivideot avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Koti-välilehdessä olevat videot suodatetaan avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Koti-välilehdessä olevat videot eivät ole avainsanojen mukaan suodatettuja</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Piilota tilausvideot avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Tilausten välilehdessä olevat videot suodatetaan avainsanojen avulla</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Tilausten välilehdessä olevat videot eivät ole avainsanojen mukaan suodatettuja</string>
+ <string name="revanced_hide_keyword_content_search_title">Piilota hakutulokset avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Hakutulokset suodatetaan avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Hakutuloksia ei suodateta avainsanojen mukaan</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Piilotetut avainsanat</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Piilotettavia avainsanoja ja lauseita, erotettuna uusilla riveillä\n\nKeskellä olevat isot kirjaimet on syötettävä kotelon kanssa (esim. iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Tietoja avainsanan suodatuksesta</string>
+ <string name="revanced_hide_keyword_content_about_summary">Etusivu/Tilaus / Hakutulokset suodatetaan piilottaaksesi sisällön, joka vastaa avainsanalausekkeita\n\nRajoitukset\n• Joitakin Shortteja ei välttämättä ole piilotettu\n• Joitakin käyttöliittymän komponentteja ei välttämättä ole piilotettu\n• Hakusanan haku ei välttämättä näytä tuloksia</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Virheellinen avainsana. Ei voida käyttää: \'%s\' suodattimena</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Virheellinen avainsana. \'%1$s\' on pienempi kuin %2$d merkkiä</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Avainsana \'$s\' piilottaa kaikki videot</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Piilota yleiset mainokset</string>
+ <string name="revanced_hide_general_ads_summary_on">Yleiset mainokset on piilotettu</string>
+ <string name="revanced_hide_general_ads_summary_off">Yleiset mainokset näytetään</string>
+ <string name="revanced_hide_fullscreen_ads_title">Piilota koko näytön mainokset</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Koko näytön mainokset on piilotettu\n\nTämä ominaisuus on käytettävissä vain vanhemmille laitteille</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Koko näytön mainokset näytetään</string>
+ <string name="revanced_hide_buttoned_ads_title">Piilota painettavat mainokset</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Painatut mainokset on piilotettu</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Painatut mainokset näytetään</string>
+ <string name="revanced_hide_paid_promotion_label_title">Piilota maksullinen kampanjan etiketti</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Maksullinen edistäminen merkki on piilotettu</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Maksullinen myynninedistämismerkintä on esitetty</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Piilota itse sponsoroidut kortit</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Itse sponsoroitu kortit ovat piilotettuja</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Itse sponsoroidut kortit näytetään</string>
+ <string name="revanced_hide_products_banner_title">Piilota mainospalkki nähdäksesi tuotteet</string>
+ <string name="revanced_hide_products_banner_summary_on">Banneri on piilotettu</string>
+ <string name="revanced_hide_products_banner_summary_off">Mainospalkki näytetään</string>
+ <string name="revanced_hide_shopping_links_title">Piilota ostos-linkit videon kuvauksessa</string>
+ <string name="revanced_hide_shopping_links_summary_on">Ostoslinkit on piilotettu</string>
+ <string name="revanced_hide_shopping_links_summary_off">Ostoslinkit näytetään</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Piilota \'Vieraile kaupassa\' -painike kanavien sivuilla</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Painike on piilotettu</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Painike näytetään</string>
+ <string name="revanced_hide_web_search_results_title">Piilota web-hakutulokset</string>
+ <string name="revanced_hide_web_search_results_summary_on">Web-hakutulokset on piilotettu</string>
+ <string name="revanced_hide_web_search_results_summary_off">Web-hakutulokset on esitetty</string>
+ <string name="revanced_hide_merchandise_banners_title">Piilota mainospalkit</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Merkkimainospalkit on piilotettu</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Myymälämainospalkit näytetään</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Piilota koko näytön mainokset toimivat vain vanhempien laitteiden kanssa</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Piilota YouTube Premium-tarjoukset</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium -kampanjat videosoittimen alla on piilotettu</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium -kampanjat videosoittimen alla näytetään</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Piilota videomainokset</string>
+ <string name="revanced_hide_video_ads_summary_on">Videomainokset on piilotettu</string>
+ <string name="revanced_hide_video_ads_summary_off">Videomainokset näytetään</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL kopioitu leikepöydälle</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL aikaleimalla kopioitu</string>
+ <string name="revanced_copy_video_url_title">Näytä kopio videon URL-osoite painike</string>
+ <string name="revanced_copy_video_url_summary_on">Painike on näkyvissä. Paina kopioidaksesi videon URL-osoitteen. Voit kopioida videon URL-osoitetta painamalla aikaleima</string>
+ <string name="revanced_copy_video_url_summary_off">Painikkeita ei näytetä</string>
+ <string name="revanced_copy_video_url_timestamp_title">Näytä kopion aikaleima URL painike</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Painike on näkyvissä. Paina kopioidaksesi videon URL-osoitteen aikaleimalla. Kopioi video ilman aikaleimaa napauttamalla ja pitämällä pohjassa</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Painikkeita ei näytetä</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Poista katsojan harkinta-valintaikkuna</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialogi poistetaan</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialogi näytetään</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Tämä ei ohita ikärajoitusta. Se hyväksyy sen automaattisesti.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Ulkoiset lataukset</string>
+ <string name="revanced_external_downloader_screen_summary">Asetukset ulkoisen lataajan käyttämiselle</string>
+ <string name="revanced_external_downloader_title">Näytä ulkoinen latauspainike</string>
+ <string name="revanced_external_downloader_summary_on">Lataa painike näytetään soittimessa</string>
+ <string name="revanced_external_downloader_summary_off">Lataa-painiketta ei näytetä soittimessa</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Ohita lataustoiminto painike</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Lataa-painike avaa ulkoisen lataajan</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Lataa-painike avaa natiivin sovelluksen sisäisen lataajan</string>
+ <string name="revanced_external_downloader_name_title">Lataajan paketin nimi</string>
+ <string name="revanced_external_downloader_name_summary">Paketin nimi asennetulle ulkoiselle lataussovelluksellesi, kuten NewPipe tai Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s ei ole asennettu. Asenna se.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Poista tarkka haku ele käytöstä</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Eleet on poistettu käytöstä</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Ele on käytössä</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Ota käyttöön seekbar napautus</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar napautus on käytössä</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbarin napauttaminen pois käytöstä</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Ota kirkkauden ele käyttöön</string>
+ <string name="revanced_swipe_brightness_summary_on">Kirkkauden pyyhkäisy on käytössä</string>
+ <string name="revanced_swipe_brightness_summary_off">Kirkkauden pyyhkäisy pois päältä</string>
+ <string name="revanced_swipe_volume_title">Ota äänenvoimakkuus käyttöön</string>
+ <string name="revanced_swipe_volume_summary_on">Äänenvoimakkuuden pyyhkäisy on käytössä</string>
+ <string name="revanced_swipe_volume_summary_off">Äänenvoimakkuuden pyyhkäisy pois päältä</string>
+ <string name="revanced_swipe_press_to_engage_title">Ota käyttöön painallus-pyyhkäisy ele</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pyyhkäisy painamalla on käytössä</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pyyhkäisy painamalla pois päältä</string>
+ <string name="revanced_swipe_haptic_feedback_title">Ota haptinen palaute käyttöön</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptinen palaute on käytössä</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptinen palaute on poistettu käytöstä</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Tallenna ja palauta kirkkaus</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Tallenna ja palauta kirkkaus kokoruututilaan poistuttaessa tai siirryttäessä</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Älä tallenna tai palauta kirkkautta kokoruututilaan poistuttaessa tai siirryttäessä</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Ota käyttöön automaattinen kirkkauden ele</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Automaattinen kirkkaus otetaan käyttöön pyyhkäisemällä alhaisimpaan arvoon</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Pienimpään arvoon alas pyyhkäiseminen ei ota käyttöön automaattista kirkkautta</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automaattinen</string>
+ <string name="revanced_swipe_overlay_timeout_title">Pyyhkäise peittoalueen aikakatkaisu</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Mllisekuntien määrä on näkyvissä</string>
+ <string name="revanced_swipe_text_overlay_size_title">Pyyhkäise peittokuvan tekstin koko</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Tekstin koko pyyhkäisemällä peittokuva</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Taustan näkyvyys pyyhkäisemällä</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Pyyhkäisyn peittoalueen taustan näkyvyys</string>
+ <string name="revanced_swipe_threshold_title">Pyyhkäise suuruusluokka</string>
+ <string name="revanced_swipe_threshold_summary">Pyyhkäisyä varten tarvittavan kynnyksen määrä</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Poista automaattiset kuvatekstit käytöstä</string>
+ <string name="revanced_auto_captions_summary_on">Automaattiset kuvatekstit pois käytöstä</string>
+ <string name="revanced_auto_captions_summary_off">Automaattiset kuvatekstit ovat käytössä</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Toiminnon painikkeet</string>
+ <string name="revanced_hide_buttons_screen_summary">Piilota tai näytä painikkeet videoiden alla</string>
+ <string name="revanced_hide_like_dislike_button_title">Piilota Tykkää ja vastenmielistä</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Tykkää ja tykkääkää painikkeista on piilotettu</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Tykkää ja pidä painikkeista näytetään</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Piilota Jaa</string>
+ <string name="revanced_hide_share_button_summary_on">Jaa-painike on piilotettu</string>
+ <string name="revanced_hide_share_button_summary_off">Jakamispainike näytetään</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Piilota Raportti</string>
+ <string name="revanced_hide_report_button_summary_on">Raporttipainike on piilotettu</string>
+ <string name="revanced_hide_report_button_summary_off">Raporttipainike näytetään</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Piilota Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix-painike on piilotettu</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix-painike näytetään</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Piilota Lataus</string>
+ <string name="revanced_hide_download_button_summary_on">Lataa-painike on piilotettu</string>
+ <string name="revanced_hide_download_button_summary_off">Lataa-painike näytetään</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Piilota Kiitos</string>
+ <string name="revanced_hide_thanks_button_summary_on">Kiitos painike on piilotettu</string>
+ <string name="revanced_hide_thanks_button_summary_off">Kiitos painike näytetään</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Clip painike on piilotettu</string>
+ <string name="revanced_hide_clip_button_summary_off">Clip painike näytetään</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Piilota Tallenna soittolistalle</string>
+ <string name="revanced_hide_playlist_button_summary_on">Tallenna soittolista-painikkeeseen on piilotettu</string>
+ <string name="revanced_hide_playlist_button_summary_off">Tallenna soittolista-painike näytetään</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Piilota automaattinen toisto painike</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Automaattisen toiston painike on piilotettu</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Automaattisen toiston painike näytetään</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Piilota kuvatekstien painike</string>
+ <string name="revanced_hide_captions_button_summary_on">Tekstityspainike on piilotettu</string>
+ <string name="revanced_hide_captions_button_summary_off">Kuvatekstien painike näytetään</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Piilota cast painike</string>
+ <string name="revanced_hide_cast_button_summary_on">Cast painike on piilotettu</string>
+ <string name="revanced_hide_cast_button_summary_off">Suora-painiketta näytetään</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Piilota tai vaihda painikkeita navigointipalkissa</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Piilota Koti</string>
+ <string name="revanced_hide_home_button_summary_on">Kotinäppäin on piilotettu</string>
+ <string name="revanced_hide_home_button_summary_off">Kotinäppäin näytetään</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Piilota Shortsit</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shortsit painike on piilotettu</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shortsit painike näytetään</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Piilota Luo</string>
+ <string name="revanced_hide_create_button_summary_on">Luo painike on piilotettu</string>
+ <string name="revanced_hide_create_button_summary_off">Luo painike näytetään</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Piilota Tilaukset</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Tilauksen painike on piilotettu</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Tilaukset painike näytetään</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Vaihda Luo ilmoituksilla</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Luo painike on vaihdettu Ilmoituspainikkeella\n\nHuom: Tämän käyttöönotto kätkee myös video-mainokset väkisin</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Luo painike ei ole vaihdettu Ilmoituspainikkeella</string>
+ <string name="revanced_hide_navigation_button_labels_title">Piilota navigointipainikkeiden otsikot</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Tunnisteet piilotettu</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Tunnisteet näytetään</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Piilota tai näytä pelaaja lentää valikkonimikkeet</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Piilota Kuvatekstit</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Kuvatekstivalikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Kuvatekstivalikko näytetään</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Piilota lisäasetukset</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Lisäasetukset-valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Lisäasetukset-valikko näytetään</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Piilota silmukkavideo</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Toisen videon valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Videovalikko on näkyvissä</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Piilota Ambient-tila</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Ambient-tila valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Ambient-tila -valikko näytetään</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Piilota & palaute</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Ohje & palautevalikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Ohje & palautevalikko näytetään</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Piilota soiton nopeus</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Toiston nopeusvalikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Toiston nopeusvalikko näytetään</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Piilota lisätiedot</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Lisätietoja valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Lisätietoja valikko on näkyvissä</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Piilota lukitusnäyttö</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Lukitusnäytön valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Lukitusnäytön valikko näytetään</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Piilota ääniraita</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Ääniraita valikko on piilotettu</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Ääniraidan valikko näytetään</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Piilota Tarkkaileminen VR-tilassa</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Kello VR-valikossa on piilotettu</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Kello VR-valikossa on näkyvissä</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Piilota edellinen & seuraavat video-painikkeet</string>
+ <string name="revanced_hide_player_buttons_summary_on">Painikkeet on piilotettu</string>
+ <string name="revanced_hide_player_buttons_summary_off">Painikkeet näytetään</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Piilota albumin kortit</string>
+ <string name="revanced_hide_album_cards_summary_on">Albumin kortit on piilotettu</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumin kortit näytetään</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Kommentit</string>
+ <string name="revanced_comments_screen_summary">Piilota tai näytä kommenttiosion komponentit</string>
+ <string name="revanced_hide_comments_by_members_header_title">Piilota \'Kommentit jäsenten kohdalta\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Jäsenten kommentit\' otsikko on piilotettu</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Jäsenten otsikon kommentit näytetään</string>
+ <string name="revanced_hide_comments_section_title">Piilota kommenttiosio</string>
+ <string name="revanced_hide_comments_section_summary_on">Kommenttiosio on piilotettu</string>
+ <string name="revanced_hide_comments_section_summary_off">Kommentit osio on esitetty</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Piilota \'Luo pikanäppäin</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Luo pikanäppäin on piilotettu</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">\'Luo pikanäppäin -painike näytetään</string>
+ <string name="revanced_hide_comments_preview_comment_title">Piilota esikatselun kommentti</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Esikatselu kommentti on piilotettu</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Esikatsele kommentti näytetään</string>
+ <string name="revanced_hide_comments_thanks_button_title">Piilota kiitos painike</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Kiitos painike on piilotettu</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Kiitos painike näytetään</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Piilota aikaleima ja emoji painikkeet</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Aikaleima ja emoji painikkeet on piilotettu</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Aikaleima ja emoji painikkeet näkyvät</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Piilota joukkorahoitus laatikko</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Joukkorahoituslaatikko on piilotettu</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Joukkorahoitus laatikko on esitetty</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Piilota lopulliset näytöt</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Näytön loppu kortit on piilotettu</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Näytettävät loppunäytöt näytetään</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Suodata palkki</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Piilota tai näytä suodatinpalkki syötteessä, haussa ja siihen liittyvissä videoissa</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Piilota syötteessä</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Piilotettu syötteessä</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Näytetään syötteessä</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Piilota haussa</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Piilotettu haussa</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Näytetään haussa</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Piilota asiaan liittyvissä videoissa</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Piilotettu aiheeseen liittyvissä videoissa</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Näytetään aiheeseen liittyvissä videoissa</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Piilota kelluva mikrofoni painike</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofonin painike piilotettu</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofonin painike näytetään</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Poista ympäristötila käytöstä kokoruututilassa</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Ambient-tila pois käytöstä</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Ambient-tila käytössä</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Piilota infokortit</string>
+ <string name="revanced_hide_info_cards_summary_on">Tietokortit on piilotettu</string>
+ <string name="revanced_hide_info_cards_summary_off">Tiedot kortit näytetään</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Poista vierintänumeron animaatiot käytöstä</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Vierivät numerot eivät ole animoituja</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rolling numerot ovat animoituja</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Piilota seekbar videosoittimessa</string>
+ <string name="revanced_hide_seekbar_summary_on">Videosoittimen seekbar on piilotettu</string>
+ <string name="revanced_hide_seekbar_summary_off">Videosoittimen hakupalkki näytetään</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Piilota seekbar videon pienoiskuvissa</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Pikkukuvan hakupalkki on piilotettu</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Pikkukuvan hakupalkki näytetään</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Piilota Shortsit kotisyötteessä</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shortsit kodin syötteessä ovat piilotettuja</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shortsit kodin syötteessä näytetään</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Piilota Shortsit tilaussyötteessä</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shortsit tilaussyötteessä ovat piilossa</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Tilaussyötteen shortsit näytetään</string>
+ <string name="revanced_hide_shorts_search_title">Piilota Shortsit hakutuloksissa</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shortsit hakutuloksissa on piilotettu</string>
+ <string name="revanced_hide_shorts_search_summary_off">Hakutulosten shortsit on esitetty</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Piilota liittymispainike</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Liittymispainike on piilotettu</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Liity painike näytetään</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Piilota tilauspainike</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Tilaus painike on piilotettu</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Tilaa painike näytetään</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Piilota pysäytetyt peittokuvapainikkeet</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Pysäytetyt peittokuva-painikkeet on piilotettu</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Pysäytetyt peittokuva-painikkeet näytetään</string>
+ <string name="revanced_hide_shorts_shop_button_title">Piilota kauppa painike</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Kaupan painike on piilotettu</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Kaupan painike näytetään</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Piilota \"superkiitos\" -painike</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">\"Superkiitos\" -painike on piilotettu</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">\"Superkiitos\" painike on näkyvissä</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Piilota tunnistetut tuotteet</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Tagit tuotteet on piilotettu</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Tunnisteet tuotteet näytetään</string>
+ <string name="revanced_hide_shorts_location_label_title">Piilota sijainnin nimi</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Sijainnin etiketti on piilotettu</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Sijainnin etiketti näytetään</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Piilota tallennettava ääni soittolistapainikkeeseen</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Tallenna ääni soittolistalle on piilotettu</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Tallenna ääni soittolistalle näytetään</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Piilota hakuehdotukset</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Hakuehdotukset on piilotettu</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Hakuehdotukset näytetään</string>
+ <string name="revanced_hide_shorts_like_button_title">Piilota tykkää-painike</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Tykkä-painike on piilotettu</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Tykkää painiketta näytetään</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Piilota vastenmielinen painike</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Poista tykkää-painike on piilotettu</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Näkyy vastenmielinen painike</string>
+ <string name="revanced_hide_shorts_comments_button_title">Piilota kommentit painike</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Kommentit painike on piilotettu</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Kommentit painike näytetään</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Piilota remix-painike</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remix-painike on piilotettu</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remix-painike näytetään</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Piilota jakopainike</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Jaa-painike on piilotettu</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Jakamispainike näytetään</string>
+ <string name="revanced_hide_shorts_info_panel_title">Piilota infopaneeli</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Tietopaneeli on piilotettu</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Tietopaneeli näytetään</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Piilota kanavapalkki</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanavapalkki on piilotettu</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanavapalkki näytetään</string>
+ <string name="revanced_hide_shorts_video_title_title">Piilota videon otsikko</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Otsikko on piilotettu</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Otsikko näytetään</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Piilota äänen metadatan otsikko</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metadata etiketti on piilotettu</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metadata etiketti näytetään</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Piilota koko videon linkin nimi</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Videolinkkien etiketti on piilotettu</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Videolinkkien nimi näytetään</string>
+ <string name="revanced_hide_shorts_sound_button_title">Piilota äänipainike</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Äänipainike on piilotettu</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Äänipainike näytetään</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Piilota navigointipalkki</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigointipalkki on piilotettu</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigointipalkki näytetään</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Poista ehdotettu videon loppunäyttö käytöstä</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Ehdotetut videot poistetaan käytöstä</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Ehdotetut videot näytetään</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Piilota videon aikaleima</string>
+ <string name="revanced_hide_timestamp_summary_on">Aikaleima on piilotettu</string>
+ <string name="revanced_hide_timestamp_summary_off">Aikaleima näytetään</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Piilota pelaajien ponnahdusikkunat</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Pelaajan ponnahdusikkuna on piilotettu</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Pelaajien ponnahdusikkunat näytetään</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Pelaajan peittoalueen läpinäkyvyys</string>
+ <string name="revanced_player_overlay_opacity_summary">Läpinäkyvyysarvo välillä 0–100, jossa 0 on läpinäkyvä</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Pelaajan päällyksen läpinäkyvyyden on oltava välillä 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Alapeukutus ei ole tilapäisesti käytettävissä</string>
+ <string name="revanced_ryd_failure_connection_status_code">Eivät tykkää ei saatavilla (tila %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Ei tykkää (asiakkaan API-raja saavutettu)</string>
+ <string name="revanced_ryd_failure_generic">Ei käytettävissä (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Lataa video uudelleen äänestääksesi käyttäen Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Näkymät näytetään</string>
+ <string name="revanced_ryd_enable_summary_off">Esteitä ei näytetä</string>
+ <string name="revanced_ryd_shorts_title">Näytä ei-tykkäät pikavalinnoissa</string>
+ <string name="revanced_ryd_shorts_summary_on">Ei tykkää näytetyistä Shortsista</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Ei tykkää Shorts\n\nLimitation: Distrans ei välttämättä näy incognito-tilassa</string>
+ <string name="revanced_ryd_shorts_summary_off">Ei tykkää piilotetuista Shortsista</string>
+ <string name="revanced_ryd_dislike_percentage_title">Ei tykkää prosentteina</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Prosentteina näytetyt tykkäät</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Ei tykkää näytetään numerona</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakti kaltainen painike</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Tykkää näppäintä tyyliteltynä minimileveydelle</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Tykkää painike tyyliteltynä parhaaseen ulkonäköön</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Näytä paahtoleipä, jos API ei ole käytettävissä</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Ponnahdus näytetään, jos Return YouTube Dislike ei ole käytettävissä</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toastia ei näytetä, jos Return YouTube Dislike ei ole käytettävissä</string>
+ <string name="revanced_ryd_about">Tietoja</string>
+ <string name="revanced_ryd_attribution_summary">Tiedot on toimittanut Return YouTube Dislike API. Napauta tästä lukeaksesi lisää</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API tilastot tämän laitteen</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API-vasteaika, keskiarvo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API:n vasteaika, minimi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API vasteaika, maksimi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API vasteaika, viimeinen video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Ei ole tilapäisesti käytettävissä - Asiakkaan API-rajaa voimassa</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API noutaa äänet, puhelujen määrä</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Verkkopuheluja ei ole soitettu</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d verkkopuhelut soitettu</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API noutaa äänet, aikataulujen määrä</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Verkkopuheluita ei ole aikakatkaistu</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d verkkopuhelua aikakatkaistiin</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API:n asiakashintojen raja-arvot</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Asiakasmäärän rajoja ei havaittu</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Asiakkaan hintaraja kohdistettu %d kertaa</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisekuntia</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Ota käyttöön laaja hakupalkki</string>
+ <string name="revanced_wide_searchbar_summary_on">Laaja hakupalkki on käytössä</string>
+ <string name="revanced_wide_searchbar_summary_off">Laaja hakupalkki on poistettu käytöstä</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Palauta vanhat seekbar pikkukuvat</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Seekbar pikkukuvat näkyvät seekbar yläpuolella</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Seekbar pikkukuvat näkyvät koko näytössä</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Ota SponsorBlock Käyttöön</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock on joukkoon hankittu järjestelmä ärsyttävien YouTube-videoiden osien ohittamiseen</string>
+ <string name="revanced_sb_appearance_category">Ulkoasu</string>
+ <string name="revanced_sb_enable_voting">Näytä äänestyspainike</string>
+ <string name="revanced_sb_enable_voting_sum_on">Segmentin äänestyspainike näytetään</string>
+ <string name="revanced_sb_enable_voting_sum_off">Segmentin äänestyspainiketta ei näytetä</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Käytä kompaktista ohituspainiketta</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Ohita painike, joka on tyylitelty pienimmän leveyden vuoksi</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Ohita painike tyyliteltynä parhaan ulkonäön vuoksi</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Piilota ohituspainike automaattisesti</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Ohita painike piilottaa muutaman sekunnin kuluttua</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Ohita koko segmentin painike</string>
+ <string name="revanced_sb_general_skiptoast">Näytä paahtoleipä ohitettaessa automaattisesti</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast näytetään, kun segmentti ohitetaan automaattisesti. Napauta tästä nähdäksesi esimerkin</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toastia ei näytetä. Napauta tästä nähdäksesi esimerkin</string>
+ <string name="revanced_sb_general_time_without">Näytä videon pituus ilman segmenttejä</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videon pituus miinus kaikki segmentit, näytetään suluissa koko videon pituuden vieressä</string>
+ <string name="revanced_sb_general_time_without_sum_off">Videon koko pituus näytetty</string>
+ <string name="revanced_sb_create_segment_category">Uusien segmenttien luominen</string>
+ <string name="revanced_sb_enable_create_segment">Näytä uusi segmenttipainike</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Luo uusi segmentti-painike näytetään</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Luo uusi segmentti-painike ei näy</string>
+ <string name="revanced_sb_general_adjusting">Säädä uutta segmenttivaihetta</string>
+ <string name="revanced_sb_general_adjusting_sum">Mllisekuntien määrä liikkuu ajan säätöpainikkeiden luotaessa uusia segmenttejä</string>
+ <string name="revanced_sb_general_adjusting_invalid">Arvon on oltava positiivinen luku</string>
+ <string name="revanced_sb_guidelines_preference_title">Näytä ohjeet</string>
+ <string name="revanced_sb_guidelines_preference_sum">Ohjeet sisältävät sääntöjä ja vinkkejä uusien segmenttien luomiseen</string>
+ <string name="revanced_sb_guidelines_popup_title">Noudata ohjeita</string>
+ <string name="revanced_sb_guidelines_popup_content">Lue SponsorBlock ohjeet ennen uusien segmenttien luomista</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Luettu jo</string>
+ <string name="revanced_sb_guidelines_popup_open">Näytä minulle</string>
+ <string name="revanced_sb_general">Yleiset</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Näytä paahtoleipä, jos API ei ole käytettävissä</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Ponnahdus näytetään, jos SponsorBlock ei ole käytettävissä</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toastia ei näytetä, jos SponsorBlock ei ole käytettävissä</string>
+ <string name="revanced_sb_general_skipcount">Ota ohituslukujen seuranta käyttöön</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Lets the SponsorBlock leaderboard know how much time is saved. A message is sent to the leaderboard every time a segment is skipped</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Ohitusten lukumäärän seuranta ei ole käytössä</string>
+ <string name="revanced_sb_general_min_duration">Segmentin vähimmäiskesto</string>
+ <string name="revanced_sb_general_min_duration_sum">Tämän arvon lyhyempiä segmenttejä (sekunteina) ei näytetä tai ohiteta</string>
+ <string name="revanced_sb_general_uuid">Yksityinen käyttäjätunnuksesi</string>
+ <string name="revanced_sb_general_uuid_sum">Tämä pitäisi pitää yksityisenä. Tämä on kuin salasana eikä sitä pitäisi jakaa kenellekään. Jos jollakulla on tämä, hän voi tehdä sinulle tyhjäksi</string>
+ <string name="revanced_sb_general_uuid_invalid">Yksityisen käyttäjätunnuksen on oltava vähintään 30 merkkiä pitkä</string>
+ <string name="revanced_sb_general_api_url">Vaihda API URL-osoite</string>
+ <string name="revanced_sb_general_api_url_sum">Osoite SponsorBlock käyttää soittaakseen puheluita palvelimelle</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">API URL on virheellinen</string>
+ <string name="revanced_sb_api_url_changed">API URL-osoite muutettu</string>
+ <string name="revanced_sb_settings_ie">Tuo/Vienti asetukset</string>
+ <string name="revanced_sb_settings_copy">Kopioi</string>
+ <string name="revanced_sb_settings_ie_sum">SponsorBlock JSON konfiguraatio, joka voidaan tuoda/viedä peruuttamattomiin ja muihin SponsorBlock alustoihin</string>
+ <string name="revanced_sb_settings_ie_sum_warning">SponsorBlock JSON konfiguraatio, joka voidaan tuoda/viedä peruuttamattomiin ja muihin SponsorBlock alustoihin. Tämä sisältää yksityisen käyttäjätunnuksen. Muista jakaa tämä viisaasti</string>
+ <string name="revanced_sb_settings_import_successful">Asetukset tuotu onnistuneesti</string>
+ <string name="revanced_sb_settings_import_failed">Tuonti epäonnistui: %s</string>
+ <string name="revanced_sb_settings_export_failed">Vienti epäonnistui: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Asetuksesi sisältävät yksityisen SponsorBlock käyttäjän.\n\nKäyttäjätunnuksesi on kuin salasana ja sitä ei pitäisi koskaan jakaa.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Älä näytä uudelleen</string>
+ <string name="revanced_sb_diff_segments">Muuta segmentin käyttäytymistä</string>
+ <string name="revanced_sb_segments_sponsor">Sponsori</string>
+ <string name="revanced_sb_segments_sponsor_sum">Maksettu myynninedistäminen, maksetut lausuntopyynnöt ja suorat mainokset. Ei itseedistämistä tai ilmaisia huutoja aiheuttajille/luojille/verkkosivustoille/tuotteille, joita he pitävät</string>
+ <string name="revanced_sb_segments_selfpromo">Maksamaton/Itsensä Edistäminen</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Samankaltainen \'Sponsor\' paitsi maksamaton tai itse ylennys. Sisältää osioita kauppatavaraa, lahjoituksia tai tietoa siitä, kenen kanssa he ovat tehneet yhteistyötä</string>
+ <string name="revanced_sb_segments_interaction">Vuorovaikutusmuistutus (Tilaus)</string>
+ <string name="revanced_sb_segments_interaction_sum">Lyhyt muistutus tykkäämään, tilaamaan tai seuraamaan niitä sisällön keskellä. Jos se on pitkä tai jotain erityistä, sen sijaan pitäisi olla itsensä edistäminen</string>
+ <string name="revanced_sb_segments_highlight">Korostus</string>
+ <string name="revanced_sb_segments_highlight_sum">Se osa video, että useimmat ihmiset etsivät</string>
+ <string name="revanced_sb_segments_intro">Väli/Johdon Animaatio</string>
+ <string name="revanced_sb_segments_intro_sum">Aikaväli ilman varsinaista sisältöä. Voi olla tauko, staattinen kehys tai toistuva animaatio. Ei sisällä siirtymiä, jotka sisältävät tietoa</string>
+ <string name="revanced_sb_segments_outro">Loppukortit/Tekijät</string>
+ <string name="revanced_sb_segments_outro_sum">Tekijät tai kun YouTube-loppukortit näkyvät. Ei johtopäätöksiä joissa on tietoa</string>
+ <string name="revanced_sb_segments_preview">Esikatselu/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Kokoelma leikkeitä, jotka osoittavat, mitä on tulossa tai mitä tapahtui videossa tai muissa videoita sarja, kun kaikki tiedot toistetaan muualla</string>
+ <string name="revanced_sb_segments_filler">Filler Tangent/Jokes</string>
+ <string name="revanced_sb_segments_filler_sum">Tangential kohtauksia lisätään vain täyteainetta tai huumoria, joita ei tarvitse ymmärtää pääsisällön video. Ei sisällä segmenttejä, jotka tarjoavat konteksteja tai taustatietoja</string>
+ <string name="revanced_sb_segments_nomusic">Musiikki: Muu Osio</string>
+ <string name="revanced_sb_segments_nomusic_sum">Vain käytettäväksi musiikkivideoissa. Musiikkivideoiden osiot ilman musiikkia, jotka eivät jo kuulu toiseen kategoriaan</string>
+ <string name="revanced_sb_skip_button_compact">Ohita</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Korostus</string>
+ <string name="revanced_sb_skip_button_sponsor">Ohita sponsori</string>
+ <string name="revanced_sb_skip_button_selfpromo">Ohita kampanja</string>
+ <string name="revanced_sb_skip_button_interaction">Ohita vuorovaikutus</string>
+ <string name="revanced_sb_skip_button_highlight">Ohita korostus</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Ohita intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Ohita väliaika</string>
+ <string name="revanced_sb_skip_button_intro_end">Ohita väliaika</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Ohita esikatselu</string>
+ <string name="revanced_sb_skip_button_preview_middle">Ohita esikatselu</string>
+ <string name="revanced_sb_skip_button_preview_end">Ohita kertaus</string>
+ <string name="revanced_sb_skip_button_filler">Ohita täyte</string>
+ <string name="revanced_sb_skip_button_nomusic">Ohita ei-musiikki</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Ohita segmentti</string>
+ <string name="revanced_sb_skipped_sponsor">Ohitettu sponsori</string>
+ <string name="revanced_sb_skipped_selfpromo">Ohitettu itsensä ylennys</string>
+ <string name="revanced_sb_skipped_interaction">Ohitettu ärsyttävä muistutus</string>
+ <string name="revanced_sb_skipped_highlight">Ohitettu korostettavaksi</string>
+ <string name="revanced_sb_skipped_intro_beginning">Ohitettu johdanto</string>
+ <string name="revanced_sb_skipped_intro_middle">Ohitettu väliaika</string>
+ <string name="revanced_sb_skipped_intro_end">Ohitettu väliaika</string>
+ <string name="revanced_sb_skipped_outro">Ohitettu ulkoasu</string>
+ <string name="revanced_sb_skipped_preview_beginning">Ohitettu esikatselu</string>
+ <string name="revanced_sb_skipped_preview_middle">Ohitettu esikatselu</string>
+ <string name="revanced_sb_skipped_preview_end">Ohitettu palautus</string>
+ <string name="revanced_sb_skipped_filler">Ohitettu täyte</string>
+ <string name="revanced_sb_skipped_nomusic">Ohitettu ei-musiikki osio</string>
+ <string name="revanced_sb_skipped_unsubmitted">Ohitettu lähettämätön segmentti</string>
+ <string name="revanced_sb_skipped_multiple_segments">Ohitettu useita segmenttejä</string>
+ <string name="revanced_sb_skip_automatically">Ohita automaattisesti</string>
+ <string name="revanced_sb_skip_automatically_once">Ohita automaattisesti kerran</string>
+ <string name="revanced_sb_skip_showbutton">Näytä ohituspainike</string>
+ <string name="revanced_sb_skip_seekbaronly">Näytä hakupalkissa</string>
+ <string name="revanced_sb_skip_ignore">Poista Käytöstä</string>
+ <string name="revanced_sb_submit_failed_invalid">Segmenttiä ei voitu lähettää: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock on väliaikaisesti alas</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Segmenttiä ei voitu lähettää (tila: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Ei voida lähettää segmenttiä.\nRate Limited (liian monta samaa käyttäjää tai IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Segmenttiä ei voi lähettää: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Segmenttiä ei voi lähettää.\non jo olemassa</string>
+ <string name="revanced_sb_submit_succeeded">Segmentti lähetetty onnistuneesti</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock ei ole tilapäisesti käytettävissä</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock ei tilapäisesti ole käytettävissä (tila %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock tilapäisesti ei ole käytettävissä</string>
+ <string name="revanced_sb_vote_failed_timeout">Segmenttiä ei voitu äänestää (API aikakatkaistu)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Segmenttiä ei voitu äänestää (tila: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Segmenttiä ei voitu äänestää: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Alaäänestys</string>
+ <string name="revanced_sb_vote_category">Vaihda kategoria</string>
+ <string name="revanced_sb_vote_no_segments">Ei ole segmenttejä, joista äänestäisi</string>
+ <string name="revanced_sb_new_segment_choose_category">Valitse segmentin kategoria</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategoria ei ole käytössä asetuksissa. Salli kategoria lähettääksesi.</string>
+ <string name="revanced_sb_new_segment_title">Uusi SponsorBlock segmentti</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Set %1$02d:%2$02d:%3$03d kuin the new segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">aloita</string>
+ <string name="revanced_sb_new_segment_mark_end">loppu</string>
+ <string name="revanced_sb_new_segment_now">nyt</string>
+ <string name="revanced_sb_new_segment_time_start">Aika jolloin segmentti alkaa</string>
+ <string name="revanced_sb_new_segment_time_end">Aika kun segmentti päättyy</string>
+ <string name="revanced_sb_new_segment_confirm_title">Ovatko ajat oikein?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmentti on\n\n%1$s\n\n%2$s\n\n(%3$s)\n\nValmiina lähettää?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Aloitus on oltava ennen loppua</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Merkitse ensin kaksi sijaintia aikapalkissa</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Esikatsele segmenttiä ja varmista, että se ohitetaan sujuvasti</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Muokkaa segmentin ajoitusta manuaalisesti</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Haluatko muokata ajoitusta segmentin alkua tai loppua varten?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Virheellinen aika</string>
+ <string name="revanced_sb_stats">Tilastot</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Tilastot eivät tilapäisesti ole käytettävissä (API on alhaalla)</string>
+ <string name="revanced_sb_stats_loading">Ladataan...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock on poistettu käytöstä</string>
+ <string name="revanced_sb_stats_username">Käyttäjänimesi: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Vaihda käyttäjänimeä napauttamalla tästä</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Käyttäjänimeä ei voitu muuttaa: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Käyttäjätunnuksen vaihto onnistui</string>
+ <string name="revanced_sb_stats_reputation">Maineesi on <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Olet luonut <b>%s</b> segmentit</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock leaderboard</string>
+ <string name="revanced_sb_stats_saved">Olet tallentanut ihmisiä <b>%s</b> -segmenteistä</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Napauta tästä nähdäksesi globaalit tilastot ja ylimmät avustajat</string>
+ <string name="revanced_sb_stats_saved_sum">Tuo on <b>%s</b> heidän elämästään.<br>Napauta tästä nähdäksesi leaderboard</string>
+ <string name="revanced_sb_stats_self_saved">Olet ohittanut <b>%s</b> osiota</string>
+ <string name="revanced_sb_stats_self_saved_sum">Tuo <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Palautetaanko ohitettujen segmenttien laskuri?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s tuntia %2$s minuuttia</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minuuttia %2$s sekuntia</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekuntia</string>
+ <string name="revanced_sb_color_dot_label">Väri:</string>
+ <string name="revanced_sb_color_changed">Väri vaihdettu</string>
+ <string name="revanced_sb_color_reset">Värin nollaus</string>
+ <string name="revanced_sb_color_invalid">Virheellinen värikoodi</string>
+ <string name="revanced_sb_reset_color">Nollaa väri</string>
+ <string name="revanced_sb_reset">Palauta</string>
+ <string name="revanced_sb_about">Tietoja</string>
+ <string name="revanced_sb_about_api_sum">SponsorBlock API tarjoaa tiedot. Napauta tästä saadaksesi lisää tietoa ja katso lataukset muille alustoille.</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof app versio</string>
+ <string name="revanced_spoof_app_version_summary_on">Versio spoofed</string>
+ <string name="revanced_spoof_app_version_summary_off">Versiota ei spoofed</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Sovelluksen versio poistetaan YouTuben vanhemmasta versiosta.\n\nTämä muuttaa sovelluksen ulkonäköä ja ominaisuuksia, mutta tuntemattomia haittavaikutuksia saattaa esiintyä.\n\nJos myöhemmin pois päältä, on suositeltavaa tyhjentää sovellustiedot käyttöliittymän vikojen estämiseksi.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app version kohde</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restore RYD Shorts incognito-tilassa</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Palauta laaja videonopeus & laatu valikko</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Kirjaston palautus</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Vanhan soittolistan hyllyn palauttaminen</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - UI:n vanhan asettelun palauttaminen</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Aseta aloitussivu</string>
+ <string name="revanced_start_page_entry_0">Oletus</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Koti</string>
+ <string name="revanced_start_page_entry_2">Etsi</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Tilaukset</string>
+ <string name="revanced_start_page_entry_4">Tutki</string>
+ <string name="revanced_start_page_entry_5">Shortsit</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Sinä välilehti</string>
+ <string name="revanced_start_page_entry_7">Tykätty videot</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historia</string>
+ <string name="revanced_start_page_entry_9">Nousussa</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Poista Shorts-pelaajan jatkaminen käytöstä</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shortsit pelaaja ei jatka sovelluksen käynnistyessä</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shortsit pelaaja jatkaa sovelluksen käynnistyessä</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Ota tablet-asettelu käyttöön</string>
+ <string name="revanced_tablet_layout_summary_on">Tablet-laitteen asettelu käytössä</string>
+ <string name="revanced_tablet_layout_summary_off">Tablet-laitteen asettelu pois päältä</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Yhteisön viestit eivät näy tablet-asetteluissa</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Miniplayer</string>
+ <string name="revanced_miniplayer_screen_summary">Muuta sovelluksen tyyliä pienennettynä pelaajalla</string>
+ <string name="revanced_miniplayer_type_title">Pienoissoittimen tyyppi</string>
+ <string name="revanced_miniplayer_type_entry_1">Alkuperäinen</string>
+ <string name="revanced_miniplayer_type_entry_2">Puhelin</string>
+ <string name="revanced_miniplayer_type_entry_3">Tabletti</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderni 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderni 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderni 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Piilota laajenna ja sulje painikkeet</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Painikkeet ovat piilossa\n(minipelaaja pyyhkäisemään laajentaaksesi tai sulkeaksesi)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Laajenna ja sulje painikkeet näkyvät</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Piilota alatekstit</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Alatekstit ovat piilotettuja</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Alatekstit näytetään</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Piilota ohita etu- ja takapainikkeet</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Ohita eteenpäin ja takaisin on piilotettu</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Ohita eteenpäin ja takaisin näytetään</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Läpinäkyvyysarvo välillä 0–100, jossa 0 on läpinäkyvä</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Miniplayer peittokuvan läpinäkyvyyden on oltava välillä 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Ota kaltevuuden latausnäyttö käyttöön</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Näytön lataaminen sisältää kaltevuuden taustan</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Näytön lataus on kiinteä tausta</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Ota käyttöön oma seekbarin väri</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Mukautettu seekbar väri näytetään</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Alkuperäinen seekbarin väri näytetään</string>
+ <string name="revanced_seekbar_custom_color_value_title">Mukautetun seekbarin väri</string>
+ <string name="revanced_seekbar_custom_color_value_summary">The color of the seekbar</string>
+ <string name="revanced_seekbar_custom_color_invalid">Virheellinen seekbarin väriarvo. Käytetään oletusarvoa.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Etusivu välilehti</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Tilauksen välilehti</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Sinä välilehti</string>
+ <string name="revanced_alt_thumbnail_player_title">Pelaajien soittolistat ja suositukset</string>
+ <string name="revanced_alt_thumbnail_search_title">Haun tulokset</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Alkuperäiset pikkukuvat</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow- ja Still-kaappaukset</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Kaappaa edelleen</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow tarjoaa joukkoon hankittuja pikkukuvia YouTube-videoille. Nämä pikkukuvat ovat usein merkityksellisempiä kuin YouTube\n\nJos käytössä, videon URL-osoitteet lähetetään API-palvelimelle, eikä muita tietoja ole lähetetty. Jos videossa ei ole DeArrow pikkukuvia, sitten alkuperäiset tai vielä kaappaukset näytetään\n\nNapauta tästä saadaksesi lisätietoja DeArrowista</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Näytä paahtoleipä, jos API ei ole käytettävissä</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast näytetään, jos DeArrow ei ole käytettävissä</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toastia ei näytetä, jos DeArrow ei ole käytettävissä</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrow thumbnail -välimuistin päätepisteen URL</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Yhä videon kaappaukset</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Still kaappaukset otetaan jokaisen videon alusta, keskeltä / lopusta. Nämä kuvat on rakennettu YouTubeen, eikä ulkoista APIa käytetä.</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Käytä nopeasti vielä kaappauksia</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Käyttämällä keskilaatua edelleen kaappauksia. Pikkukuvat latautuvat nopeammin, mutta live-virrat, julkaisemattomat tai hyvin vanhat videot voivat näyttää tyhjiä pikkukuvia</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Käyttämällä korkea laatu vielä kaappauksia</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Videon aika ottaa vielä kaappauksia</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Videon alku</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Videon keski</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Videon loppu</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Dearrow tilapäisesti ei ole käytettävissä (tilakoodi: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Dearrow tilapäisesti ei ole käytettävissä</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Näytä peruutetut ilmoitukset</string>
+ <string name="revanced_announcements_summary_on">Ilmoitukset näytetään käynnistettäessä</string>
+ <string name="revanced_announcements_summary_off">Ilmoituksia ei näytetä käynnistettäessä</string>
+ <string name="revanced_announcements_enabled_summary">Näytä ilmoitukset käynnistettäessä</string>
+ <string name="revanced_announcements_connection_failed">Yhteyden muodostaminen ilmoitusten tarjoajaan epäonnistui</string>
+ <string name="revanced_announcements_dialog_dismiss">Sulje</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Ota automaattinen toisto käyttöön</string>
+ <string name="revanced_auto_repeat_summary_on">Automaattinen toisto käytössä</string>
+ <string name="revanced_auto_repeat_summary_off">Automaattinen toisto on poistettu käytöstä</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Huijauslaitteen mitat</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Laitteen mitat mitattu\n\nKorkeammat videoominaisuudet saattavat olla avattuja, mutta voit kokea videon toistoa, huonompaa akun käyttöikää ja tuntemattomia sivuvaikutuksia</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Laitteen mittoja ei spoofed\n\nTämän käyttöönotto voi avata korkeampia videon ominaisuuksia</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Tämän ottaminen käyttöön voi aiheuttaa videon toistoa sotkeutumista, akun keston heikkenemistä ja tuntemattomia sivuvaikutuksia.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Asetukset</string>
+ <string name="microg_settings_summary">GmsCoren asetukset</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Ohita URL-osoitteen uudelleenohjaus</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL-uudelleenohjaukset on ohitettu</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL-uudelleenohjauksia ei ole ohitettu</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Avaa linkit selaimessa</string>
+ <string name="revanced_external_browser_summary_on">Avataan linkkejä ulkoisesti</string>
+ <string name="revanced_external_browser_summary_off">Avataan linkkejä sovelluksessa</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Taustan toisto</string>
+ <string name="revanced_background_playback_summary">Tämä asetus löytyy asetuksista -> Tausta</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Poista seurantakyselyn parametri</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Seurantakyselyn parametri on poistettu linkeistä</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Seurantakyselyn parametria ei poisteta linkeistä</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Poista zoom haptiikka käytöstä</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptiot pois päältä</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics käytössä</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automaattinen laatu</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Muista videon laadun muutokset</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Laatumuutokset koskevat kaikkia videoita</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Laadun muutokset koskevat vain nykyistä videota</string>
+ <string name="revanced_video_quality_default_wifi_title">Videon oletuslaatu Wi-Fi-verkossa</string>
+ <string name="revanced_video_quality_default_mobile_title">Videon oletuslaatu matkapuhelinverkossa</string>
+ <string name="revanced_remember_video_quality_mobile">mobiili</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Muutettu oletus %1$s laatu: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Näytä nopeusikkuna painike</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Painike näytetään</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Painikkeita ei näytetä</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Mukautetut toiston nopeudet</string>
+ <string name="revanced_custom_playback_speeds_summary">Lisää tai muuta käytettävissä olevia soiton nopeuksia</string>
+ <string name="revanced_custom_playback_speeds_invalid">Mukautettujen nopeuksien on oltava alle %s. Oletusarvojen käyttäminen.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Virheelliset mukautetut soiton nopeudet. Käytä oletusarvoja.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Muista toiston nopeuden muutokset</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Toiston nopeuden muutokset koskevat kaikkia videoita</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Toiston nopeuden muutokset koskevat vain nykyistä videota</string>
+ <string name="revanced_playback_speed_default_title">Toiston oletusnopeus</string>
+ <string name="revanced_remember_playback_speed_toast">Muutettu oletusnopeus muotoon: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Palauta vanhan videon laatuvalikko</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Vanha videon laatuvalikko näytetään</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Vanhaa videon laatuvalikkoa ei näytetä</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Ota dia käyttöön etsiäksesi</string>
+ <string name="revanced_slide_to_seek_summary_on">Liu\'uta etsiäksesi on käytössä</string>
+ <string name="revanced_slide_to_seek_summary_off">Liu\'uta etsiäksesi ei ole käytössä</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof asiakas</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof asiakas estää toiston ongelmia</string>
+ <string name="revanced_spoof_client_title">Spoof asiakas</string>
+ <string name="revanced_spoof_client_summary_on">Asiakas on spoofed</string>
+ <string name="revanced_spoof_client_summary_off">Asiakas ei ole spoofed\n\nVideon toisto ei ehkä toimi</string>
+ <string name="revanced_spoof_client_user_dialog_message">Tämän asetuksen poistaminen käytöstä voi aiheuttaa videon toiston ongelmia.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof asiakas iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Asiakas on tällä hetkellä hemmoteltu Android VR\n\nSivuefektejä ovat:\n• Ei HDR video\n• Lapset videot eivät toista\n• Keskeytetty videot voivat jatkaa satunnaisesti\n• Huonolaatuiset Shorts seekbar pikkukuvat\n• Lataa toimintapainike on aina piilotettu\n• Päätä näytöt ovat aina piilossa</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Spoof asiakkaan pikkukuvat ei ole käytettävissä (API ajastettu)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Spoof asiakkaan pikkukuvat tilapäisesti ei käytettävissä: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Hämärä sovelluksen allekirjoitus</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Ota sovelluksen allekirjoitus haltuun estääksesi toiston ongelmia</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Hämärä sovelluksen allekirjoitus</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Sovelluksen allekirjoitus pilaantunut\n\nSivutehosteita ovat:\n• Parannettu bitrate ei ole käytettävissä\n• Videoita ei voi ladata\n• Ei seekbar pikkukuvia maksullisille videoille</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Sovelluksen allekirjoitus ei ole pilaantunut\n\nVideon toisto ei ehkä toimi</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Tämän asetuksen poistaminen käytöstä aiheuttaa videon toiston ongelmia.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Hämärä sovelluksen allekirjoitus syötteessä</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Sovelluksen allekirjoitus pilkottu\n\nSivutehosteet ovat:\n• Syötteen videot puuttuvat tekstitykset\n• Automaattisesti soitettu syöte videot näkyvät katsella historian</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Sovelluksen allekirjoitus ei haju syötevideoille\n\nSyötevideot pelaavat alle 1 minuutin ennen toisto-ongelmien kohtaamista</string>
+ <string name="revanced_spoof_storyboard_title">Huijaus tarinalauta</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard spoofed</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard ei spoofed\n\nSivutehosteita ovat:\n• Ei ympäröivää tilaa\n• Seekbar pikkukuvat on piilotettu</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard tilapäisesti ei ole käytettävissä (API aikakatkaistu)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Spoof storyboard väliaikaisesti ei käytettävissä: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Ota käyttöön automaattinen HDR-kirkkaus</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automaattinen HDR-kirkkaus on käytössä</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automaattinen HDR-kirkkaus pois päältä</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Estä äänimainokset</string>
+ <string name="revanced_block_audio_ads_summary_on">Ääni mainokset on estetty</string>
+ <string name="revanced_block_audio_ads_summary_off">Ääni mainokset on estetty</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s ei ole käytettävissä. Mainokset voivat näkyä. Kokeile vaihtaa toiseen mainoslohkopalveluun asetuksista.</string>
+ <string name="revanced_embedded_ads_service_failed">%s palvelin palautti virheen. Mainokset voivat näkyä. Kokeile vaihtaa toiseen mainoslohkopalveluun asetuksista.</string>
+ <string name="revanced_block_embedded_ads_title">Estä upotetut videomainokset</string>
+ <string name="revanced_block_embedded_ads_entry_1">Poistettu käytöstä</string>
+ <string name="revanced_block_embedded_ads_entry_2">Valoisa välityspalvelin</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlockin välityspalvelin</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Estä videomainokset</string>
+ <string name="revanced_block_video_ads_summary_on">Videomainokset on estetty</string>
+ <string name="revanced_block_video_ads_summary_off">Videomainokset on estetty</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">viesti poistettu</string>
+ <string name="revanced_show_deleted_messages_title">Näytä poistetut viestit</string>
+ <string name="revanced_show_deleted_messages_entry_1">Älä näytä poistetut viestit</string>
+ <string name="revanced_show_deleted_messages_entry_2">Piilota poistetut viestit spoilerin takana</string>
+ <string name="revanced_show_deleted_messages_entry_3">Näytä poistetut viestit ristitettyinä teksteinä</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Lunasta kanava Pisteet automaattisesti</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanava pisteet lunastetaan automaattisesti</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanavapisteitä ei lunasteta automaattisesti</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Ota Twitch-vianetsintätila käyttöön</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch debug tila on käytössä (ei suositellut)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch-vianetsintätila on poistettu käytöstä</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Peruutetut Asetukset</string>
+ <string name="revanced_ads_screen_title">Mainokset</string>
+ <string name="revanced_ads_screen_summary">Mainosten esto asetukset</string>
+ <string name="revanced_chat_screen_title">Keskustelu</string>
+ <string name="revanced_chat_screen_summary">Keskustelun asetukset</string>
+ <string name="revanced_misc_screen_title">Sekalaiset</string>
+ <string name="revanced_misc_screen_summary">Sekalaiset asetukset</string>
+ <string name="revanced_general_category_title">Yleiset asetukset</string>
+ <string name="revanced_other_category_title">Muut asetukset</string>
+ <string name="revanced_client_ads_category_title">Asiakaspuolen mainokset</string>
+ <string name="revanced_surestream_ads_category_title">Palvelimen puolen surestream mainokset</string>
+ <string name="revanced_twitch_debug_title">Vianetsintä lokiin</string>
+ <string name="revanced_twitch_debug_summary_on">Vianjäljityslokit ovat käytössä</string>
+ <string name="revanced_twitch_debug_summary_off">Vianjäljityslokit ovat pois päältä</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-fil-rPH/strings.xml b/src/main/resources/addresources/values-fil-rPH/strings.xml
new file mode 100644
index 0000000000..71a2400424
--- /dev/null
+++ b/src/main/resources/addresources/values-fil-rPH/strings.xml
@@ -0,0 +1,284 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">I-reset</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Tungkol</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Swipe controls</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">Nakatago ang pindutan sa cast</string>
+ <string name="revanced_hide_cast_button_summary_off">Nakikita ang cast button</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_summary_on">Nakatago ang pindutan sa Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_off">Nakikita ang Shorts button</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Nakatago ang info cards</string>
+ <string name="revanced_hide_info_cards_summary_off">Nakalabas ang info cards</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Tungkol</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">I-enable ang SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">Hitsura</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_general">Pangkalahatan</string>
+ <string name="revanced_sb_general_min_duration">Minimum na tagal ng segment</string>
+ <string name="revanced_sb_general_uuid_sum">Gawin itong pribado. Ito ay gaya ng password na hindi dapat ibinabahagi sa iba. Kapag ito ay hawak ng iba, maaari ka nilang gayahin</string>
+ <string name="revanced_sb_settings_ie">Mga setting ng import/export</string>
+ <string name="revanced_sb_skipped_sponsor">Nilagpasang isponsor</string>
+ <string name="revanced_sb_skipped_selfpromo">Nilagpasang sariling promosyon</string>
+ <string name="revanced_sb_skipped_interaction">Nilagpasang sagabal na paalala</string>
+ <string name="revanced_sb_skipped_intro_beginning">Nilagpasang intro</string>
+ <string name="revanced_sb_skipped_outro">Nilagpasang wakas</string>
+ <string name="revanced_sb_skipped_nomusic">Nilaktawan ang isang seksyon na hindi musika</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Naglo-load...</string>
+ <string name="revanced_sb_reset">I-reset</string>
+ <string name="revanced_sb_about">Tungkol</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Kalimutan</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Hindi</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-fr-rFR/strings.xml b/src/main/resources/addresources/values-fr-rFR/strings.xml
new file mode 100644
index 0000000000..855def1b5d
--- /dev/null
+++ b/src/main/resources/addresources/values-fr-rFR/strings.xml
@@ -0,0 +1,1197 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Souhaitez-vous continuer ?</string>
+ <string name="revanced_settings_reset">Réinitialiser</string>
+ <string name="revanced_settings_restart_title">Actualiser et redémarrer</string>
+ <string name="revanced_settings_restart">Redémarrer</string>
+ <string name="revanced_settings_import">Importer</string>
+ <string name="revanced_settings_import_copy">Copier</string>
+ <string name="revanced_settings_import_reset">Réglages ReVanced réinitialisés à la valeur par défaut</string>
+ <string name="revanced_settings_import_success">%d paramètres importés</string>
+ <string name="revanced_settings_import_failure_parse">Échec de l\'importation : %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore n\'est pas installé. Installez-le.</string>
+ <string name="gms_core_dialog_title">Action requise </string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore n\'est pas autorisé à s\'exécuter en arrière-plan.\n\nSuivez le guide \"Ne pas tuer mon application\" sur votre téléphone et appliquez les instructions à votre installation de MicroG.\n\nCeci est nécessaire pour que l\'application fonctionne.</string>
+ <string name="gms_core_dialog_open_website_text">Ouvrir le site web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Les optimisations de batterie MicroG GmsCore doivent être désactivées pour éviter les problèmes.\n\nAppuyez sur le bouton continuer et désactivez les optimisations de batterie.</string>
+ <string name="gms_core_dialog_continue_text">Continuer</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Vous utilisez la version de ReVanced Patches <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Note</string>
+ <string name="revanced_settings_about_links_dev_body">Cette version est une pré-version et vous pourriez rencontrer des problèmes inattendus</string>
+ <string name="revanced_settings_about_links_header">Liens officiels</string>
+ <string name="revanced_pref_import_export_title">Importer / Exporter</string>
+ <string name="revanced_pref_import_export_summary">Importer / Exporter les paramètres ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">À propos</string>
+ <string name="revanced_settings_screen_01_ads_title">Publicités</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniatures alternatives</string>
+ <string name="revanced_settings_screen_03_feed_title">Flux</string>
+ <string name="revanced_settings_screen_04_player_title">Lecteur</string>
+ <string name="revanced_settings_screen_05_general_title">Disposition générale</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barre de progression</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Commandes de balayage</string>
+ <string name="revanced_settings_screen_11_misc_title">Divers</string>
+ <string name="revanced_settings_screen_12_video_title">Vidéo</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Débogage</string>
+ <string name="revanced_debug_screen_summary">Activer ou désactiver les options de débogage</string>
+ <string name="revanced_debug_title">Journal de débogage</string>
+ <string name="revanced_debug_summary_on">Les journaux de débogage sont activés</string>
+ <string name="revanced_debug_summary_off">Les journaux de débogage sont désactivés</string>
+ <string name="revanced_debug_protobuffer_title">Mémoire tampon du protocole de log</string>
+ <string name="revanced_debug_protobuffer_summary_on">Les journaux de débogage incluent le proto buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Les journaux de débogage n\'incluent pas le proto buffer</string>
+ <string name="revanced_debug_stacktrace_title">Loguer les traces de stack</string>
+ <string name="revanced_debug_stacktrace_summary_on">Les journaux de débogage incluent la trace de la pile</string>
+ <string name="revanced_debug_stacktrace_summary_off">Les journaux de débogage n\'incluent pas la trace de pile</string>
+ <string name="revanced_debug_toast_on_error_title">Afficher le toast en cas d\'erreur ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast affiché si une erreur se produit</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast non affiché si une erreur se produit</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Désactiver les toasts d\'erreur masque toutes les notifications d\'erreur ReVanced\n\nVous ne serez pas notifié des événements inattendus.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Désactiver la lueur du bouton \"J\'aime\" / \"S\'abonner\"</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Le bouton J\'aime et S\'abonner ne clignotera pas lorsque mentionné</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Le bouton J\'aime et S\'abonner clignotera lorsque mentionné</string>
+ <string name="revanced_hide_gray_separator_title">Masquer le séparateur gris</string>
+ <string name="revanced_hide_gray_separator_summary_on">Les séparateurs gris sont masqués</string>
+ <string name="revanced_hide_gray_separator_summary_off">Les séparateurs gris sont affichés</string>
+ <string name="revanced_hide_channel_watermark_title">Masquer le filigrane de la chaîne</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Le filigrane est masqué</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Le filigrane est affiché</string>
+ <string name="revanced_hide_horizontal_shelves_title">Masquer les tablettes horizontales</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Les étagères sont cachées telles que :\n• Breaking News\n• Continue watching\n• Explorer plus de canaux\n• Shopping\n• Regarder</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Les étagères sont affichées</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Cacher le bouton \'Rejoindre\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Le bouton est masqué</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Le bouton est affiché</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Cacher l\'étagère \'Pour vous\' dans la page du canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">L\'étagère est masquée</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">L\'étagère est affichée</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Cacher le bouton \'Notifier moi\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Le bouton est masqué</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Le bouton est affiché</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Cacher les recommandations \"Personnes également suivies\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Les recommandations sont masquées</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Les recommandations sont affichées</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Cacher le bouton \'Afficher plus\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Le bouton est masqué</string>
+ <string name="revanced_hide_show_more_button_summary_off">Le bouton est affiché</string>
+ <string name="revanced_hide_timed_reactions_title">Masquer les réactions en temps réel</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Les réactions en temps réel sont masquées</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Les réactions en temps réel sont affichées</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Masquer le tiroir d\'en-tête des résultats de recherche</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Le tiroir d\'en-tête est masqué</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Le tiroir d\'en-tête est affiché</string>
+ <string name="revanced_hide_channel_guidelines_title">Masquer les règlements de la chaîne</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Les règlements de la chaîne sont masqués</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Les règlements de la chaîne sont affichés</string>
+ <string name="revanced_hide_expandable_chip_title">Masquer les options extensibles sous les vidéos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Les puces extensibles sont masquées</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Les puces extensibles sont affichées</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Masquer le pied de page du menu de la qualité de la vidéo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Le pied de page du menu de la qualité de la vidéo est masqué</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Le pied de page du menu de la qualité de la vidéo est affiché</string>
+ <string name="revanced_hide_community_posts_title">Masquer les posts de la communauté</string>
+ <string name="revanced_hide_community_posts_summary_on">Les posts de la communauté sont masqués</string>
+ <string name="revanced_hide_community_posts_summary_off">Les posts de la communauté sont affichés</string>
+ <string name="revanced_hide_compact_banner_title">Masquer les bannières compactes</string>
+ <string name="revanced_hide_compact_banner_summary_on">Les bannières compactes sont masquées</string>
+ <string name="revanced_hide_compact_banner_summary_off">Les bannières compactes sont affichées</string>
+ <string name="revanced_hide_movies_section_title">Masquer la section films</string>
+ <string name="revanced_hide_movies_section_summary_on">La section films est masquée</string>
+ <string name="revanced_hide_movies_section_summary_off">La section films est affichée</string>
+ <string name="revanced_hide_feed_survey_title">Masquer les sondages dans les flux</string>
+ <string name="revanced_hide_feed_survey_summary_on">Les sondages dans les flux sont masqués</string>
+ <string name="revanced_hide_feed_survey_summary_off">Les sondages dans les flux sont affichés</string>
+ <string name="revanced_hide_community_guidelines_title">Masquer les règlements de la communauté</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Les règlements de la communauté sont masqués</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Les règlements de la communauté sont affichés</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Masquer les règlements de la communauté des abonnés</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Les règlements de la communauté des abonnés sont masqués</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Les règlements de la communauté des abonnés sont affichés</string>
+ <string name="revanced_hide_channel_member_shelf_title">Masquer le tiroir des membres de la chaîne</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Le tiroir des membres de la chaîne est masqué</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Le tiroir des membres de la chaîne est affiché</string>
+ <string name="revanced_hide_emergency_box_title">Masquer les boîtes d\'urgence</string>
+ <string name="revanced_hide_emergency_box_summary_on">Les boîtes d\'urgence sont masquées</string>
+ <string name="revanced_hide_emergency_box_summary_off">Les boîtes d\'urgence sont affichées</string>
+ <string name="revanced_hide_info_panels_title">Masquer les panneaux d\'information</string>
+ <string name="revanced_hide_info_panels_summary_on">Les panneaux d\'information sont masqués</string>
+ <string name="revanced_hide_info_panels_summary_off">Les panneaux d\'information sont affichés</string>
+ <string name="revanced_hide_medical_panels_title">Masquer les panneaux médicaux</string>
+ <string name="revanced_hide_medical_panels_summary_on">Les panneaux médicaux sont masqués</string>
+ <string name="revanced_hide_medical_panels_summary_off">Les panneaux médicaux sont affichés</string>
+ <string name="revanced_hide_channel_bar_title">Masquer la barre de la chaîne</string>
+ <string name="revanced_hide_channel_bar_summary_on">La barre de la chaîne est masquée</string>
+ <string name="revanced_hide_channel_bar_summary_off">La barre de la chaîne est affichée</string>
+ <string name="revanced_hide_playables_title">Cacher les Playables</string>
+ <string name="revanced_hide_playables_summary_on">Les jouables sont masqués</string>
+ <string name="revanced_hide_playables_summary_off">Les jouables sont affichés</string>
+ <string name="revanced_hide_quick_actions_title">Masquer les actions rapides en plein écran</string>
+ <string name="revanced_hide_quick_actions_summary_on">Les actions rapides en plein écran sont masquées</string>
+ <string name="revanced_hide_quick_actions_summary_off">Les actions rapides en plein écran sont affichées</string>
+ <string name="revanced_hide_related_videos_title">Masquer les vidéos associées dans les actions rapides</string>
+ <string name="revanced_hide_related_videos_summary_on">Les vidéos associées sont masquées</string>
+ <string name="revanced_hide_related_videos_summary_off">Les vidéos associées sont affichées</string>
+ <string name="revanced_hide_image_shelf_title">Masquer l\'étagère d\'image dans les résultats de recherche</string>
+ <string name="revanced_hide_image_shelf_summary_on">L\'étagère d\'image est masquée</string>
+ <string name="revanced_hide_image_shelf_summary_off">L\'étagère d\'image est affichée</string>
+ <string name="revanced_hide_latest_posts_ads_title">Masquer les derniers posts</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Les derniers posts sont masqués</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Les derniers posts sont affichés</string>
+ <string name="revanced_hide_mix_playlists_title">Masquer les playlists Mix</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Les playlists Mix sont masquées</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Les playlists Mix sont affichées</string>
+ <string name="revanced_hide_artist_cards_title">Masquer les cartes d\'artiste</string>
+ <string name="revanced_hide_artist_cards_summary_on">Les cartes d\'artiste sont masquées</string>
+ <string name="revanced_hide_artist_cards_summary_off">Les cartes d\'artiste sont affichées</string>
+ <string name="revanced_hide_chips_shelf_title">Masquer l\'étagère des puces</string>
+ <string name="revanced_hide_chips_shelf_summary_on">L\'étagère des puces est masquée</string>
+ <string name="revanced_hide_chips_shelf_summary_off">L\'étagère des puces est affichée</string>
+ <string name="revanced_hide_attributes_section_title">Masquer la section des attributs</string>
+ <string name="revanced_hide_attributes_section_summary_on">Les sections « Lieux en vedette », « Jeux » et « Musique » sont masquées</string>
+ <string name="revanced_hide_attributes_section_summary_off">Les sections « Lieux en vedette », « Jeux » et « Musique » sont affichées</string>
+ <string name="revanced_hide_chapters_section_title">Masquer la section des chapitres</string>
+ <string name="revanced_hide_chapters_section_summary_on">La section des chapitres est masquée</string>
+ <string name="revanced_hide_chapters_section_summary_off">La section des chapitres est affichée</string>
+ <string name="revanced_hide_podcast_section_title">Masquer la section « Explorer le podcast »</string>
+ <string name="revanced_hide_podcast_section_summary_on">La section « Explorer le podcast » est masquée</string>
+ <string name="revanced_hide_podcast_section_summary_off">La section « Explorer le podcast » est affichée</string>
+ <string name="revanced_hide_info_cards_section_title">Masquer les cartes d\'information</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Les cartes d\'information sont masquées</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Les cartes d\'information sont affichées</string>
+ <string name="revanced_hide_transcript_section_title">Masquer la section de transcription</string>
+ <string name="revanced_hide_transcript_section_summary_on">La section transcription est masquée</string>
+ <string name="revanced_hide_transcript_section_summary_off">La section transcription est affichée</string>
+ <string name="revanced_hide_description_components_screen_title">Description vidéo</string>
+ <string name="revanced_hide_description_components_screen_summary">Masquer ou afficher les composants de la description de la vidéo</string>
+ <string name="revanced_custom_filter_screen_title">Filtre personnalisé</string>
+ <string name="revanced_custom_filter_screen_summary">Masquer les composants utilisant des filtres personnalisés</string>
+ <string name="revanced_custom_filter_title">Activer le filtre personnalisé</string>
+ <string name="revanced_custom_filter_summary_on">Le filtre personnalisé est activé</string>
+ <string name="revanced_custom_filter_summary_off">Le filtre personnalisé est désactivé</string>
+ <string name="revanced_custom_filter_strings_title">Filtre personnalisé</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Liste de chaînes de caractères à filtrer, séparées par une nouvelle ligne</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtre personnalisé invalide : %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Masquer le contenu du mot-clé</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Masquer les recherches et les vidéos du flux à l\'aide de filtres par mots-clés</string>
+ <string name="revanced_hide_keyword_content_home_title">Masquer les vidéos de l\'onglet \"Accueil\" par mots-clés</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Les vidéos dans l\'onglet \"Accueil\" sont filtrées par mots-clés</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Les vidéos dans l\'onglet \"Accueil\" ne sont pas filtrées par mots-clés</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Masquer les vidéos de l\'onglet \"Abonnements\" par mots-clés</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Les vidéos de l\'onglet \"Abonnements\" sont filtrées par mots-clés</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Les vidéos de l\'onglet \"Abonnements\" ne sont pas filtrées par mots-clés</string>
+ <string name="revanced_hide_keyword_content_search_title">Masquer les résultats de recherche par mots-clés</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Les résultats de recherche sont filtrés par mots-clés</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Les résultats de recherche ne sont pas filtrés par mots-clés</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Mots-clés à cacher</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Mots-clés et phrases à cacher, séparés par de nouvelles lignes\n\nLes mots avec des lettres majuscules au milieu doivent être saisis en respectant la casse (ex : iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">À propos du filtrage par mots-clés</string>
+ <string name="revanced_hide_keyword_content_about_summary">Les onglets \"Accueil\" et \"Abonnements\" ainsi que les résultats de la recherche sont filtrés pour masquer le contenu correspondant à des phrases clés\n\nLimitations\n• Il se peut que certains Shorts ne soient pas masqués\n• Il se peut que certains composants de l\'interface utilisateur ne soient pas masqués\n• Les recherches par mots-clés ne pourraient pas donner de résultats</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Mot-clé invalide. Ne peut pas être utilisé : \'%s\' comme filtre</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Mot-clé invalide. \'%1$s\' contient moins de %2$d caractères</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Le mot-clé \'$s\' masquera toutes les vidéos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Masquer les pubs générales</string>
+ <string name="revanced_hide_general_ads_summary_on">Les pubs générales sont masquées</string>
+ <string name="revanced_hide_general_ads_summary_off">Les pubs générales sont affichées</string>
+ <string name="revanced_hide_fullscreen_ads_title">Masquer les publicités en plein écran</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Les publicités en plein écran sont masquées\n\nCette fonctionnalité est uniquement disponible pour les appareils plus anciens</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Les publicités en plein écran sont affichées</string>
+ <string name="revanced_hide_buttoned_ads_title">Masquer les boutons de publicité</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Les boutons de publicité sont masqués</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Les boutons de publicité sont affichés</string>
+ <string name="revanced_hide_paid_promotion_label_title">Masquer le libellé de la promotion payante</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Le libellé de la promotion payante est masqué</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Le libellé de la promotion payée est affiché</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Masquer les cartes auto-sponsorisées</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Les cartes auto-sponsorisées sont masquées</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Les cartes auto-sponsorisées sont affichées</string>
+ <string name="revanced_hide_products_banner_title">Masquer la bannière pour visualiser les produits</string>
+ <string name="revanced_hide_products_banner_summary_on">La bannière est masquée</string>
+ <string name="revanced_hide_products_banner_summary_off">La bannière est affichée</string>
+ <string name="revanced_hide_shopping_links_title">Masquer les liens d\'achat dans la description de la vidéo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Les liens d\'achat sont masqués</string>
+ <string name="revanced_hide_shopping_links_summary_off">Les liens d\'achat sont affichés</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Masquer le bouton \'Visiter la boutique\' sur les pages des canaux</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Le bouton est masqué</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Le bouton est affiché</string>
+ <string name="revanced_hide_web_search_results_title">Masquer les résultats de la recherche web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Les résultats de recherche sur le web sont masqués</string>
+ <string name="revanced_hide_web_search_results_summary_off">Les résultats de la recherche sur le web sont affichés</string>
+ <string name="revanced_hide_merchandise_banners_title">Cacher les bannières commerciales</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Les bannières de marchandise de la chaîne sont masquées</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Les bannières de marchandise sont affichées</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Masquer les publicités en plein écran ne fonctionne qu\'avec les appareils plus anciens</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Masquer les publicités YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Les publicités YouTube Premium sous le lecteur vidéo sont masquées.</string>
+ <string name="revanced_hide_get_premium_summary_off">Les publicités YouTube Premium sous le lecteur vidéo sont affichées</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Masquer les annonces vidéo</string>
+ <string name="revanced_hide_video_ads_summary_on">Les annonces vidéo sont masquées</string>
+ <string name="revanced_hide_video_ads_summary_off">Les annonces vidéo sont affichées</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiée dans le presse-papier</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL avec horodatage copiée</string>
+ <string name="revanced_copy_video_url_title">Afficher le bouton Copier l\'URL de la vidéo</string>
+ <string name="revanced_copy_video_url_summary_on">Le bouton est affiché. Appuyez pour copier l\'URL de la vidéo. Appuyez et maintenez pour copier l\'URL de la vidéo avec l\'horodatage</string>
+ <string name="revanced_copy_video_url_summary_off">Le bouton n\'est pas affiché</string>
+ <string name="revanced_copy_video_url_timestamp_title">Afficher le bouton copier l\'URL avec horodatage</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Le bouton est affiché. Appuyez pour copier l\'URL de la vidéo avec horodatage. Appuyez et maintenez enfoncé pour copier la vidéo sans horodatage</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Le bouton n\'est pas affiché</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Supprimer la boîte de dialogue de discrétion de la visionneuse</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">La boîte de dialogue sera supprimée</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">La boîte de dialogue sera affichée</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Cela ne contourne pas la restriction d\'âge. Il l\'accepte tout simplement automatiquement.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Téléchargements externes</string>
+ <string name="revanced_external_downloader_screen_summary">Paramètres pour utiliser un téléchargeur externe</string>
+ <string name="revanced_external_downloader_title">Afficher le bouton de téléchargement externe</string>
+ <string name="revanced_external_downloader_summary_on">Bouton de téléchargement affiché dans le lecteur</string>
+ <string name="revanced_external_downloader_summary_off">Bouton de téléchargement non affiché dans le lecteur</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Remplacer l\'action du bouton téléchargement</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Le bouton de téléchargement ouvre votre téléchargeur externe</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Le bouton de téléchargement ouvre le téléchargeur natif dans l\'application</string>
+ <string name="revanced_external_downloader_name_title">Nom du paquet du téléchargeur</string>
+ <string name="revanced_external_downloader_name_summary">Nom du paquet de votre application de téléchargement externe installée, comme NewPipe ou Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s n\'est pas installé. Veuillez l\'installer.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Désactiver le geste de recherche précise</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Geste désactivé</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Le geste est activé</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Activer le tapping de la barre de recherche</string>
+ <string name="revanced_seekbar_tapping_summary_on">Le tapping de la barre de recherche est activé</string>
+ <string name="revanced_seekbar_tapping_summary_off">Le tapotage de la barre de recherche est désactivé</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Activer le geste de luminosité</string>
+ <string name="revanced_swipe_brightness_summary_on">Le balayage de la luminosité est activé</string>
+ <string name="revanced_swipe_brightness_summary_off">Le balayage de la luminosité est désactivé</string>
+ <string name="revanced_swipe_volume_title">Activer le mouvement de volume</string>
+ <string name="revanced_swipe_volume_summary_on">Le balayage du volume est activé</string>
+ <string name="revanced_swipe_volume_summary_off">Le balayage du volume est désactivé</string>
+ <string name="revanced_swipe_press_to_engage_title">Activer le geste d\'appui pour glisser</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Appui pour glisser est activé</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Appui pour glisser est désactivé</string>
+ <string name="revanced_swipe_haptic_feedback_title">Activer le retour haptique</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Le retour tactile est activé</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Le retour tactile est désactivé</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Enregistrer et restaurer la luminosité</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Enregistrer et restaurer la luminosité en quittant ou en entrant en plein écran</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Ne pas enregistrer et restaurer la luminosité en quittant ou en entrant en plein écran</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Activer le geste de luminosité automatique</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Glisser vers le bas vers la valeur la plus basse du geste de luminosité active la luminosité automatique</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Glisser vers le bas vers la valeur la plus basse n\'active pas la luminosité automatique</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatique</string>
+ <string name="revanced_swipe_overlay_timeout_title">Délai d\'overlay du balayage</string>
+ <string name="revanced_swipe_overlay_timeout_summary">La quantité de millisecondes que la superposition est visible</string>
+ <string name="revanced_swipe_text_overlay_size_title">Glisser la taille du texte de la superposition</string>
+ <string name="revanced_swipe_text_overlay_size_summary">La taille du texte pour la superposition de balayage</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Visibilité de l\'arrière-plan en glissant</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">La visibilité de l\'arrière-plan de la superposition de balayage</string>
+ <string name="revanced_swipe_threshold_title">Seuil de magnitude de balayage</string>
+ <string name="revanced_swipe_threshold_summary">La quantité de seuil pour que le balayage se produise</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Désactiver les sous-titres automatiques</string>
+ <string name="revanced_auto_captions_summary_on">Les sous-titres automatiques sont désactivés</string>
+ <string name="revanced_auto_captions_summary_off">Les sous-titres automatiques sont activés</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Boutons d\'action</string>
+ <string name="revanced_hide_buttons_screen_summary">Masquer ou afficher les boutons sous les vidéos</string>
+ <string name="revanced_hide_like_dislike_button_title">Masquer J\'aime et je n\'aime pas</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Les boutons J\'aime et je n\'aime pas sont cachés</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Les boutons J\'aime et Je n\'aime pas sont affichés</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Cacher le partage</string>
+ <string name="revanced_hide_share_button_summary_on">Le bouton de partage est masqué</string>
+ <string name="revanced_hide_share_button_summary_off">Le bouton de partage est affiché</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Masquer le rapport</string>
+ <string name="revanced_hide_report_button_summary_on">Le bouton de rapport est caché</string>
+ <string name="revanced_hide_report_button_summary_off">Le bouton de rapport est affiché</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Masquer le remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Le bouton Remix est masqué</string>
+ <string name="revanced_hide_remix_button_summary_off">Le bouton Remix est affiché</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Masquer le téléchargement</string>
+ <string name="revanced_hide_download_button_summary_on">Le bouton de téléchargement est caché</string>
+ <string name="revanced_hide_download_button_summary_off">Le bouton de téléchargement est affiché</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Cacher les remerciements</string>
+ <string name="revanced_hide_thanks_button_summary_on">Le bouton de remerciement est caché</string>
+ <string name="revanced_hide_thanks_button_summary_off">Le bouton de remerciement est affiché</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Le bouton de clip est masqué</string>
+ <string name="revanced_hide_clip_button_summary_off">Le bouton de clip est affiché</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Cacher Enregistrer dans la playlist</string>
+ <string name="revanced_hide_playlist_button_summary_on">Le bouton Enregistrer dans la liste de lecture est masqué</string>
+ <string name="revanced_hide_playlist_button_summary_off">Le bouton Enregistrer dans la liste de lecture est affiché</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Masquer le bouton de lecture automatique</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Le bouton de lecture automatique est masqué</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Le bouton de lecture automatique est affiché</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Masquer le bouton des légendes</string>
+ <string name="revanced_hide_captions_button_summary_on">Le bouton des légendes est caché</string>
+ <string name="revanced_hide_captions_button_summary_off">Le bouton des légendes est affiché</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Cacher le bouton de diffusion</string>
+ <string name="revanced_hide_cast_button_summary_on">Le bouton de Cast est masqué</string>
+ <string name="revanced_hide_cast_button_summary_off">Le bouton de Cast est affiché</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Masquer ou modifier les boutons dans la barre de navigation</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Masquer la page d\'accueil</string>
+ <string name="revanced_hide_home_button_summary_on">Le bouton Accueil est caché</string>
+ <string name="revanced_hide_home_button_summary_off">Le bouton d\'accueil est affiché</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Cacher les shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">Le bouton Shorts est masqué</string>
+ <string name="revanced_hide_shorts_button_summary_off">Le bouton Shorts est affiché</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Cacher la création</string>
+ <string name="revanced_hide_create_button_summary_on">Le bouton de création est masqué</string>
+ <string name="revanced_hide_create_button_summary_off">Le bouton de création est affiché</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Cacher les abonnements</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Le bouton des abonnements est masqué</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Le bouton des abonnements est affiché</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Changer de création avec les notifications</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Le bouton de création est échangé avec le bouton de notifications\n\nNote: L\'activation de cette option masque également les publicités vidéo</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Le bouton Créer n\'est pas basculé avec le bouton Notifications</string>
+ <string name="revanced_hide_navigation_button_labels_title">Masquer les libellés des boutons de navigation</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Les libellés sont masquées</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Les libellés sont affichées</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Masquer ou afficher les éléments du menu Flyout du joueur</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Cacher les légendes</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Le menu des sous-titres est masqué</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Le menu des sous-titres est affiché</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Masquer les paramètres supplémentaires</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Le menu des paramètres supplémentaires est masqué</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Le menu des paramètres supplémentaires est affiché</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Masquer la vidéo en boucle</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Le menu vidéo en boucle est masqué</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Le menu vidéo en boucle est affiché</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Masquer le mode Veille</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Le menu du mode Veille est masqué</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Le menu du mode Veille s\'affiche</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Cacher les commentaires d\'Aide &</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Le menu d\'aide & de commentaires est masqué</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Le menu d\'aide & commentaires est affiché</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Cacher la vitesse de lecture</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Le menu de vitesse de lecture est masqué</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Le menu de vitesse de lecture s\'affiche</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Masquer plus d\'infos</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Plus d\'infos sur le menu est caché</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Plus d\'infos sur le menu est affiché</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Masquer l\'écran de verrouillage</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Le menu de verrouillage de l\'écran est masqué</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Le menu de l\'écran de verrouillage est affiché</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Masquer la piste audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Le menu de la piste audio est masqué</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Le menu de la piste audio est affiché</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Masquer Regarder en VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Le menu Regarder en VR est masqué</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Le menu Regarder en VR est affiché</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Masquer les boutons de la vidéo précédente & suivants</string>
+ <string name="revanced_hide_player_buttons_summary_on">Les boutons sont cachés</string>
+ <string name="revanced_hide_player_buttons_summary_off">Les boutons sont affichés</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Cacher les cartes d\'album</string>
+ <string name="revanced_hide_album_cards_summary_on">Les cartes d\'album sont cachées</string>
+ <string name="revanced_hide_album_cards_summary_off">Les cartes de l\'album sont affichées</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Commentaires</string>
+ <string name="revanced_comments_screen_summary">Masquer ou afficher les composants de la section commentaires</string>
+ <string name="revanced_hide_comments_by_members_header_title">Cacher l\'en-tête \'Commentaires par membres\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">L\'en-tête \'Commentaires par membres\' est masqué</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">L\'en-tête \'Commentaires par membres\' est affiché</string>
+ <string name="revanced_hide_comments_section_title">Cacher la section des commentaires</string>
+ <string name="revanced_hide_comments_section_summary_on">La section Commentaires est cachée</string>
+ <string name="revanced_hide_comments_section_summary_off">La section Commentaires est affichée</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Masquer le bouton « Créer un court »</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Le bouton « Créer un court » est masqué</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Le bouton « Créer un court » est affiché</string>
+ <string name="revanced_hide_comments_preview_comment_title">Masquer le commentaire de prévisualisation</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">L\'aperçu du commentaire est masqué</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">L\'aperçu du commentaire est affiché</string>
+ <string name="revanced_hide_comments_thanks_button_title">Masquer le bouton de remerciement</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Le bouton de remerciement est caché</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Le bouton de remerciement est affiché</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Masquer les boutons d\'horodatage et d\'émoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Les boutons d\'horodatage et d\'émoji sont cachés</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Les boutons d\'horodatage et d\'émoji sont affichés</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Masquer la boîte de financement participatif</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">La boîte de Crowdfunding est cachée</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">La boîte de financement participatif est affichée</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Masquer les cartes de fin d\'écran</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Les cartes de fin d\'écran sont masquées</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Les cartes de fin d\'écran sont affichées</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barre de filtre</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Masquer ou afficher la barre de filtre dans le flux, la recherche et les vidéos connexes</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Cacher dans le flux</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Caché dans le flux</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Affiché dans le flux</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Cacher dans la recherche</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Caché dans la recherche</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Affiché dans la recherche</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Cacher dans les vidéos liées</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Caché dans les vidéos liées</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Affiché dans des vidéos connexes</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Masquer le bouton de microphone flottant</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Bouton du microphone masqué</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Bouton du microphone affiché</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Désactiver le mode ambiant en plein écran</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Mode Veille désactivé</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Mode Veille activé</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Cacher les infos</string>
+ <string name="revanced_hide_info_cards_summary_on">Les fiches info sont masquées</string>
+ <string name="revanced_hide_info_cards_summary_off">Les fiches info sont affichées</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Désactiver les animations des numéros roulants</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Les numéros roulants ne sont pas animés</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Les numéros roulants sont animés</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Cacher la barre de recherche dans le lecteur vidéo</string>
+ <string name="revanced_hide_seekbar_summary_on">La barre de recherche du lecteur vidéo est masquée</string>
+ <string name="revanced_hide_seekbar_summary_off">La barre de recherche du lecteur vidéo est affichée</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Masquer la barre de recherche dans les vignettes vidéo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">La barre de recherche des miniatures est masquée</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">La barre de recherche des miniatures est affichée</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Cacher les Shorts dans la page d\'accueil</string>
+ <string name="revanced_hide_shorts_home_summary_on">Les courts dans le flux domestique sont cachés</string>
+ <string name="revanced_hide_shorts_home_summary_off">Les shorts dans le home feed sont affichés</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Cacher les Shorts dans le flux d\'abonnement</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Les courts dans le flux d\'abonnement sont masqués</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Les courts dans le flux d\'abonnement sont affichés</string>
+ <string name="revanced_hide_shorts_search_title">Cacher les Shorts dans les résultats de recherche</string>
+ <string name="revanced_hide_shorts_search_summary_on">Les courts dans les résultats de recherche sont masqués</string>
+ <string name="revanced_hide_shorts_search_summary_off">Les courts dans les résultats de recherche sont affichés</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Masquer le bouton de jointure</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Le bouton \"Rejoindre\" est masqué</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Le bouton d\'inscription est affiché</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Masquer le bouton d\'abonnement</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Le bouton d\'abonnement est masqué</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Le bouton d\'abonnement est affiché</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Masquer les boutons de superposition en pause</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Les boutons de superposition en pause sont masqués</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Les boutons de superposition en pause sont affichés</string>
+ <string name="revanced_hide_shorts_shop_button_title">Masquer le bouton de la boutique</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Le bouton de la boutique est caché</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Le bouton de la boutique est affiché</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Masquer le bouton de remerciement</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Le bouton Remerciements est caché</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Le bouton Super Remerciements est affiché</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Masquer les produits taggés</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Les produits taggés sont cachés</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Les produits taggés sont affichés</string>
+ <string name="revanced_hide_shorts_location_label_title">Masquer le libellé de l\'emplacement</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Le libellé de l\'emplacement est masqué</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Le libellé de l\'emplacement est affiché</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Masquer le bouton Enregistrer le son dans la liste de lecture</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Enregistrer le son dans la playlist est masqué</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Enregistrer le son dans la playlist est affiché</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Masquer les suggestions de recherche</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Les suggestions de recherche sont masquées</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Suggestions de recherche affichées</string>
+ <string name="revanced_hide_shorts_like_button_title">Masquer le bouton \"J\'aime\"</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Le bouton J\'aime est caché</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Le bouton J\'aime est affiché</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Cacher le bouton \"J\'aime\"</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Le bouton \"J\'aime\" est masqué</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Le bouton \"J\'aime\" est affiché</string>
+ <string name="revanced_hide_shorts_comments_button_title">Masquer le bouton de commentaires</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Le bouton Commentaires est masqué</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Le bouton des commentaires est affiché</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Masquer le bouton de remix</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Le bouton Remix est masqué</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Le bouton Remix est affiché</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Masquer le bouton de partage</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Le bouton de partage est masqué</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Le bouton de partage est affiché</string>
+ <string name="revanced_hide_shorts_info_panel_title">Masquer le panneau d\'information</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Le panneau d\'information est caché</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Le panneau d\'information est affiché</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Masquer la barre de la chaîne</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">La barre de la chaîne est masquée</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">La barre de la chaîne est affichée</string>
+ <string name="revanced_hide_shorts_video_title_title">Masquer le titre de vidéo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Le titre est caché</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Le titre est affiché</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Masquer le libellé des métadonnées du son</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Le libellé des métadonnées est masqué</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Le libellé des métadonnées est affiché</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Masquer l\'étiquette du lien vidéo complet</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">L\'étiquette du lien vidéo est masquée</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">L\'étiquette du lien vidéo est affichée</string>
+ <string name="revanced_hide_shorts_sound_button_title">Masquer le bouton de son</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Le bouton de son est caché</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Le bouton de son est affiché</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Masquer la barre de navigation</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">La barre de navigation est cachée</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">La barre de navigation est affichée</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Désactiver l\'écran de fin de la vidéo suggérée</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Les vidéos suggérées seront désactivées</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Les vidéos suggérées seront affichées</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Masquer l\'horodatage de la vidéo</string>
+ <string name="revanced_hide_timestamp_summary_on">L\'horodatage est caché</string>
+ <string name="revanced_hide_timestamp_summary_off">L\'horodatage est affiché</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Masquer les fenêtres pop-up du joueur</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Les fenêtres pop-up sont masquées</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Les fenêtres pop-up sont affichées</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacité de l\'overlay du joueur</string>
+ <string name="revanced_player_overlay_opacity_summary">Valeur d\'opacité entre 0 et 100, où 0 est transparent</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">L\'opacité de l\'overlay du joueur doit être comprise entre 0 et 100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Masqué</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">API des dislikes temporairement indisponible</string>
+ <string name="revanced_ryd_failure_connection_status_code">N\'aime pas disponible (statut %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Dislikes indisponibles (limite API atteinte)</string>
+ <string name="revanced_ryd_failure_generic">N\'aime pas (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recharger la vidéo pour voter en utilisant Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Les j\'n\'aime pas sont affichés</string>
+ <string name="revanced_ryd_enable_summary_off">Les n\'aiment pas ne sont pas affichés</string>
+ <string name="revanced_ryd_shorts_title">Afficher les \"J\'aime\" sur les courts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dissociations affichées sur les Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dissipation affichée sur Shorts\n\nLimitation : les J\'aime ne peuvent pas apparaître en mode incognito</string>
+ <string name="revanced_ryd_shorts_summary_off">N\'aime pas masqué sur les Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Ne pas aimer en pourcentage</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Ne pas aimer affiché en pourcentage</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Ne pas afficher comme nombre</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Bouton Compact like</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Bouton J\'aime stylé pour une largeur minimale</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Bouton J\'aime stylé pour une meilleure apparence</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Afficher un message si l\'API n\'est pas disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">La Toast est affichée si le retour YouTube n\'aime pas n\'est pas disponible</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Les toasts ne sont pas affichés si le retour YouTube n\'aime pas n\'est pas disponible</string>
+ <string name="revanced_ryd_about">À propos</string>
+ <string name="revanced_ryd_attribution_summary">Les données sont fournies par l\'API Return YouTube Dislike . Appuyez ici pour en savoir plus</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Retournez les statistiques de l\'API de cet appareil</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Temps de réponse de l\'API, moyenne</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Temps de réponse de l\'API, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Temps de réponse de l\'API, maximum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Temps de réponse de l\'API, dernière vidéo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">N\'aime pas temporairement non disponible - Limite de taux de l\'API client en vigueur</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API récupère les votes, nombre d\'appels</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Aucun appel réseau effectué</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Appels réseau %d effectués</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API récupère les votes, le nombre de délais</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Aucun appel réseau a expiré</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Les appels réseau %d ont expiré</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limites de débit de l\'API client</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Aucune limite de taux client rencontrée</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Limite de débit du client rencontrée %d fois</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisecondes</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Activer la barre de recherche large</string>
+ <string name="revanced_wide_searchbar_summary_on">La barre de recherche large est activée</string>
+ <string name="revanced_wide_searchbar_summary_off">La barre de recherche large est désactivée</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurer les anciennes miniatures de la barre de recherche</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Les vignettes de la barre de recherche apparaîtront au-dessus de la barre de recherche</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Les vignettes de la barre de recherche apparaîtront en plein écran</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Activer SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock est un système axé sur la foule pour sauter des parties ennuyeuses de vidéos YouTube</string>
+ <string name="revanced_sb_appearance_category">Apparence</string>
+ <string name="revanced_sb_enable_voting">Afficher le bouton de vote</string>
+ <string name="revanced_sb_enable_voting_sum_on">Le bouton de vote du segment est affiché</string>
+ <string name="revanced_sb_enable_voting_sum_off">Le bouton de vote du segment n\'est pas affiché</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Utiliser un bouton de saut compact</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Bouton sauter stylé pour une largeur minimale</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Ignorer le bouton stylé pour une meilleure apparence</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Masquer automatiquement le bouton ignorer</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Le bouton Ignorer se cache après quelques secondes</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Ignorer le bouton affiché pour tout le segment</string>
+ <string name="revanced_sb_general_skiptoast">Afficher une toast lors du saut automatique</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Les toasts sont affichés lorsqu\'un segment est automatiquement ignoré. Appuyez ici pour voir un exemple</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Les toasts ne sont pas affichés. Appuyez ici pour voir un exemple</string>
+ <string name="revanced_sb_general_time_without">Afficher la longueur de la vidéo sans segments</string>
+ <string name="revanced_sb_general_time_without_sum_on">Longueur de la vidéo moins tous les segments, affichés entre parenthèses à côté de la durée complète de la vidéo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Longueur de la vidéo complète affichée</string>
+ <string name="revanced_sb_create_segment_category">Création de nouveaux segments</string>
+ <string name="revanced_sb_enable_create_segment">Afficher le bouton créer un nouveau segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Le bouton Créer un nouveau segment est affiché</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Le bouton Créer un nouveau segment n\'est pas affiché</string>
+ <string name="revanced_sb_general_adjusting">Ajuster le nouveau segment</string>
+ <string name="revanced_sb_general_adjusting_sum">Nombre de millisecondes que les boutons de réglage se déplacent lors de la création de nouveaux segments</string>
+ <string name="revanced_sb_general_adjusting_invalid">La valeur doit être un nombre positif</string>
+ <string name="revanced_sb_guidelines_preference_title">Voir les directives</string>
+ <string name="revanced_sb_guidelines_preference_sum">Les directives contiennent des règles et des conseils pour créer de nouveaux segments</string>
+ <string name="revanced_sb_guidelines_popup_title">Suivez les directives</string>
+ <string name="revanced_sb_guidelines_popup_content">Lisez les directives du SponsorBlock avant de créer de nouveaux segments</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Déjà lu</string>
+ <string name="revanced_sb_guidelines_popup_open">Montrez-moi</string>
+ <string name="revanced_sb_general">Général</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Afficher un message si l\'API n\'est pas disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Le toast est affiché si le SponsorBlock n\'est pas disponible</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Les toasts ne sont pas affichés si SponsorBlock n\'est pas disponible</string>
+ <string name="revanced_sb_general_skipcount">Activer le suivi du nombre de sauts</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Fait savoir au classement du SponsorBlock combien de temps est enregistré. Un message est envoyé au classement chaque fois qu\'un segment est ignoré</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Le suivi du comptage des sauts n\'est pas activé</string>
+ <string name="revanced_sb_general_min_duration">Durée minimale du segment</string>
+ <string name="revanced_sb_general_min_duration_sum">Les segments plus courts que cette valeur (en secondes) ne seront pas affichés ou ignorés</string>
+ <string name="revanced_sb_general_uuid">Votre identifiant d\'utilisateur privé</string>
+ <string name="revanced_sb_general_uuid_sum">Cela doit rester confidentiel. Il a l\'équivalent un mot de passe et ne doit être partagé avec personne. Si quelqu\'un l\'obtient, il pourra se faire passer pour vous</string>
+ <string name="revanced_sb_general_uuid_invalid">L\'identifiant d\'utilisateur privé doit comporter au moins 30 caractères</string>
+ <string name="revanced_sb_general_api_url">Modifier l\'URL de l\'API</string>
+ <string name="revanced_sb_general_api_url_sum">L\'adresse que SponsorBlock utilise pour faire des appels vers le serveur</string>
+ <string name="revanced_sb_api_url_reset">Réinitialiser l\'URL de l\'API</string>
+ <string name="revanced_sb_api_url_invalid">L\'URL de l\'API n\'est pas valide</string>
+ <string name="revanced_sb_api_url_changed">L\'URL de l\'API a été modifiée</string>
+ <string name="revanced_sb_settings_ie">Paramètres d\'Importation/exportation</string>
+ <string name="revanced_sb_settings_copy">Copier</string>
+ <string name="revanced_sb_settings_ie_sum">Votre configuration de SponsorBlock JSON qui peut être importée/exportée vers ReVanced et d\'autres plateformes SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Votre configuration de SponsorBlock JSON qui peut être importée/exportée vers ReVanced et d\'autres plateformes SponsorBlock. Cela inclut votre identifiant utilisateur privé. Assurez-vous de partager ceci avec sagesse</string>
+ <string name="revanced_sb_settings_import_successful">Paramètres importés avec succès</string>
+ <string name="revanced_sb_settings_import_failed">Échec de l\'importation : %s</string>
+ <string name="revanced_sb_settings_export_failed">Échec de l\'exportation : %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Vos paramètres contiennent un utilisateur SponsorBlock.\n\nVotre identifiant d\'utilisateur est comme un mot de passe et ne doit jamais être partagé.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Ne plus afficher</string>
+ <string name="revanced_sb_diff_segments">Modifier le comportement du segment</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promotions payantes, parrainages payés et publicités directes. Pas pour l\'auto-promotion ou les cris gratuits aux causes, créateurs/sites Web / produits qu\'ils aiment</string>
+ <string name="revanced_sb_segments_selfpromo">Promotion non rémunérée/Auto-promotion</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Similaire à \'Sponsor\' à l\'exception de la promotion non payée ou de l\'auto-promotion. Inclut des sections sur la marchandise, les dons ou les informations sur la collaboration avec laquelle ils ont collaboré.</string>
+ <string name="revanced_sb_segments_interaction">Rappel d\'interaction (abonnement)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un court rappel de les aimer, s\'abonner ou les suivre au milieu du contenu. S\'il est long ou qu\'il s\'agit de quelque chose de spécifique, il devrait plutôt être sous auto-promotion</string>
+ <string name="revanced_sb_segments_highlight">Surligner</string>
+ <string name="revanced_sb_segments_highlight_sum">La partie de la vidéo que la plupart des gens recherchent</string>
+ <string name="revanced_sb_segments_intro">Entracte/Animation d\'intro</string>
+ <string name="revanced_sb_segments_intro_sum">Un intervalle sans contenu réel. Peut être une pause, une image statique ou une animation répétitive. N\'inclut pas les transitions contenant des informations</string>
+ <string name="revanced_sb_segments_outro">Écrans de fin/Crédits</string>
+ <string name="revanced_sb_segments_outro_sum">Crédits ou quand les cartes de terminaison YouTube apparaissent. Pas pour les conclusions avec des informations</string>
+ <string name="revanced_sb_segments_preview">Aperçu/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Collection de clips qui montrent ce qui est à venir ou ce qui s\'est passé dans la vidéo ou dans d\'autres vidéos d\'une série, où toutes les informations sont répétées ailleurs</string>
+ <string name="revanced_sb_segments_filler">Remplissage/Blagues</string>
+ <string name="revanced_sb_segments_filler_sum">Des scènes tangentielles ajoutées uniquement pour le remplissage ou l\'humour qui ne sont pas nécessaires pour comprendre le contenu principal de la vidéo. Ne comprend pas les segments fournissant des détails de contexte ou de fond</string>
+ <string name="revanced_sb_segments_nomusic">Musique : Segment non musical</string>
+ <string name="revanced_sb_segments_nomusic_sum">Uniquement pour utilisation dans les vidéos musicales. Les sections de vidéos de musique sans musique, qui ne sont pas déjà couvertes par une autre catégorie</string>
+ <string name="revanced_sb_skip_button_compact">Ignorer</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Surligner</string>
+ <string name="revanced_sb_skip_button_sponsor">Ignorer le sponsor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Passer la promotion</string>
+ <string name="revanced_sb_skip_button_interaction">Ignorer l\'interaction</string>
+ <string name="revanced_sb_skip_button_highlight">Passer en surbrillance</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Ignorer l\'intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Ignorer l\'intermission</string>
+ <string name="revanced_sb_skip_button_intro_end">Ignorer l\'intermission</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Ignorer l\'aperçu</string>
+ <string name="revanced_sb_skip_button_preview_middle">Ignorer l\'aperçu</string>
+ <string name="revanced_sb_skip_button_preview_end">Passer le récapitulatif</string>
+ <string name="revanced_sb_skip_button_filler">Sauter le remplissage</string>
+ <string name="revanced_sb_skip_button_nomusic">Ignorer la non-musique</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Passer le segment</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor ignoré</string>
+ <string name="revanced_sb_skipped_selfpromo">Auto-promotion ignorée</string>
+ <string name="revanced_sb_skipped_interaction">Rappel ennuyeux ignoré</string>
+ <string name="revanced_sb_skipped_highlight">Sauté en surbrillance</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro ignorée</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermission ignorée</string>
+ <string name="revanced_sb_skipped_intro_end">Intermission ignorée</string>
+ <string name="revanced_sb_skipped_outro">Outro ignorée</string>
+ <string name="revanced_sb_skipped_preview_beginning">Aperçu ignoré</string>
+ <string name="revanced_sb_skipped_preview_middle">Aperçu ignoré</string>
+ <string name="revanced_sb_skipped_preview_end">Récapitulatif ignoré</string>
+ <string name="revanced_sb_skipped_filler">Remplissage ignoré</string>
+ <string name="revanced_sb_skipped_nomusic">Section non-musicale ignorée</string>
+ <string name="revanced_sb_skipped_unsubmitted">Segment non soumis ignoré</string>
+ <string name="revanced_sb_skipped_multiple_segments">Sauté de plusieurs segments</string>
+ <string name="revanced_sb_skip_automatically">Passer automatiquement</string>
+ <string name="revanced_sb_skip_automatically_once">Ignorer automatiquement une fois</string>
+ <string name="revanced_sb_skip_showbutton">Afficher un bouton \"Passer\"</string>
+ <string name="revanced_sb_skip_seekbaronly">Afficher dans la barre de recherche</string>
+ <string name="revanced_sb_skip_ignore">Désactiver</string>
+ <string name="revanced_sb_submit_failed_invalid">Impossible de soumettre le segment : %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock est temporairement indisponible</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Impossible de soumettre le segment (statut: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Impossible de soumettre le segment.\nTaux Limité (trop de membres du même utilisateur ou de l\'IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Impossible de soumettre le segment : %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Impossible de soumettre le segment.\nÉxiste déjà</string>
+ <string name="revanced_sb_submit_succeeded">Segment soumis avec succès</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporairement indisponible (API expirée)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporairement indisponible (statut %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporairement indisponible</string>
+ <string name="revanced_sb_vote_failed_timeout">Impossible de voter pour le segment (API expirée)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Impossible de voter pour le segment (statut: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Impossible de voter pour le segment : %s</string>
+ <string name="revanced_sb_vote_upvote">Voter pour</string>
+ <string name="revanced_sb_vote_downvote">Voter contre</string>
+ <string name="revanced_sb_vote_category">Changer la catégorie</string>
+ <string name="revanced_sb_vote_no_segments">Il n\'y a pas de segments pour lesquels voter</string>
+ <string name="revanced_sb_new_segment_choose_category">Choisissez la catégorie du segment</string>
+ <string name="revanced_sb_new_segment_disabled_category">La catégorie est désactivée dans les paramètres. Activez la catégorie pour soumettre.</string>
+ <string name="revanced_sb_new_segment_title">Nouveau segment SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Utiliser %1$02d:%2$02d:%3$03d comme début ou fin d\'un nouveau segment ?</string>
+ <string name="revanced_sb_new_segment_mark_start">démarrer</string>
+ <string name="revanced_sb_new_segment_mark_end">fin</string>
+ <string name="revanced_sb_new_segment_now">maintenant</string>
+ <string name="revanced_sb_new_segment_time_start">Instant de début du segment</string>
+ <string name="revanced_sb_new_segment_time_end">Instant de fin du segment</string>
+ <string name="revanced_sb_new_segment_confirm_title">Est-ce que ces valeurs sont correctes?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Le segment est de\n\n%1$s\nà\n%2$s\n\n(%3$s)\n\nPrêt à soumettre ?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Le début doit être avant la fin</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marquez d\'abord deux emplacements sur la barre de temps</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Aperçu du segment, et s\'assurer qu\'il passe sans problème</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Modifier la durée du segment manuellement</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Voulez-vous modifier le début ou la fin du segment ?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Temps donné invalide</string>
+ <string name="revanced_sb_stats">Stats</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Stats temporairement indisponibles (API est en panne)</string>
+ <string name="revanced_sb_stats_loading">Chargement...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock est désactivé</string>
+ <string name="revanced_sb_stats_username">Votre nom d\'utilisateur <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Appuyez ici pour changer votre nom d\'utilisateur</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Impossible de changer le nom d\'utilisateur : Statut %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Changement de nom d’utilisateur effectué</string>
+ <string name="revanced_sb_stats_reputation">Votre réputation est <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Vous avez créé <b>%s</b> segments</string>
+ <string name="revanced_sb_stats_saved_zero">Classement du SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Vous avez sauvé des personnes des segments <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Appuyez ici pour voir les statistiques globales et les meilleurs contributeurs</string>
+ <string name="revanced_sb_stats_saved_sum">C\'est <b>%s</b> de leur vie.<br>Appuyez ici pour voir le classement</string>
+ <string name="revanced_sb_stats_self_saved">Vous avez ignoré <b>%s</b> segments</string>
+ <string name="revanced_sb_stats_self_saved_sum">C\'est <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Réinitialiser le compteur de segments ignorés ?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s heures %2$s minutes</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutes %2$s secondes</string>
+ <string name="revanced_sb_stats_saved_second_format">%s secondes</string>
+ <string name="revanced_sb_color_dot_label">Couleur:</string>
+ <string name="revanced_sb_color_changed">Couleur changée</string>
+ <string name="revanced_sb_color_reset">Couleur réinitialisée</string>
+ <string name="revanced_sb_color_invalid">Code de couleur invalide</string>
+ <string name="revanced_sb_reset_color">Réinitialiser la couleur</string>
+ <string name="revanced_sb_reset">Réinitialiser</string>
+ <string name="revanced_sb_about">À propos</string>
+ <string name="revanced_sb_about_api_sum">Les données sont fournies par l\'API SponsorBlock. Appuyez ici pour en savoir plus et voir les téléchargements pour d\'autres plates-formes</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof version de l\'application</string>
+ <string name="revanced_spoof_app_version_summary_on">Version falsifiée</string>
+ <string name="revanced_spoof_app_version_summary_off">Version non falsifiée</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">La version de l\'application sera falsifiée vers une ancienne version de YouTube.\n\nCela va changer l\'apparence et les fonctionnalités de l\'application, mais des effets secondaires inconnus peuvent se produire.\n\nSi la version ultérieure est désactivée, il est recommandé de supprimer les données de l\'application pour éviter les bogues de l\'interface utilisateur.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Falsifier la cible de version de l\'application</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurer RYD en mode incognito Shorts</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurer une grande vitesse vidéo & menu qualité</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurer l\'onglet bibliothèque</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurer l\'ancienne tablette de la liste de lecture</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurer l\'ancienne mise en page de l\'interface</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Définir la page de démarrage</string>
+ <string name="revanced_start_page_entry_0">Par défaut</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Domicile</string>
+ <string name="revanced_start_page_entry_2">Chercher</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonnements</string>
+ <string name="revanced_start_page_entry_4">Explorer</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Votre onglet</string>
+ <string name="revanced_start_page_entry_7">Vidéos aimées</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historique</string>
+ <string name="revanced_start_page_entry_9">Tendance</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Désactiver la reprise du joueur Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Le lecteur court ne reprendra pas au démarrage de l\'application</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Le lecteur court reprendra au démarrage de l\'application</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Activer la disposition de la tablette</string>
+ <string name="revanced_tablet_layout_summary_on">Mise en page de la tablette est activée</string>
+ <string name="revanced_tablet_layout_summary_off">La disposition de la tablette est désactivée</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Les messages de la communauté n\'apparaissent pas sur la disposition de la tablette</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijoueur</string>
+ <string name="revanced_miniplayer_screen_summary">Changer le style du lecteur réduit dans l\'application</string>
+ <string name="revanced_miniplayer_type_title">Type de Miniplayer</string>
+ <string name="revanced_miniplayer_type_entry_1">Originale</string>
+ <string name="revanced_miniplayer_type_entry_2">Téléphone</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablette</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderne 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderne 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderne 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Masquer les boutons d\'extension et de fermeture</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Les boutons sont cachés\n(glisser le minijoueur pour l\'expansion ou la fermeture)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Développer et fermer les boutons sont affichés</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Masquer les sous-textes</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Les sous-textes sont cachés</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Les sous-textes sont affichés</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Masquer les boutons avant et retour</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Sauter en avant et en arrière sont masqués</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Sauter en avant et en arrière sont affichés</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valeur d\'opacité entre 0 et 100, où 0 est transparent</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">L\'opacité de l\'overlay du Miniplayer doit être comprise entre 0 et 100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Activer l\'écran de chargement du dégradé</string>
+ <string name="revanced_gradient_loading_screen_summary_on">L\'écran de chargement aura un fond de dégradé</string>
+ <string name="revanced_gradient_loading_screen_summary_off">L\'écran de chargement aura un fond solide</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Activer la couleur personnalisée de la barre de recherche</string>
+ <string name="revanced_seekbar_custom_color_summary_on">La couleur personnalisée de la barre de recherche est affichée</string>
+ <string name="revanced_seekbar_custom_color_summary_off">La couleur originale de la barre de recherche est affichée</string>
+ <string name="revanced_seekbar_custom_color_value_title">Couleur personnalisée de la barre de recherche</string>
+ <string name="revanced_seekbar_custom_color_value_summary">La couleur de la barre de recherche</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valeur de couleur de la barre de recherche invalide.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Onglet d\'accueil</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Onglet d\'Abonnement</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Votre onglet</string>
+ <string name="revanced_alt_thumbnail_player_title">Listes de lecture du lecteur, recommandations</string>
+ <string name="revanced_alt_thumbnail_search_title">Résultats de la recherche</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Miniatures originales</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Miniatures originales</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & captures</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Captures</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow fournit des miniatures pour les vidéos YouTube. Ces vignettes sont souvent plus pertinentes que celles fournies par YouTube\n\nSi activé, les URLs vidéo seront envoyées au serveur API et aucune autre donnée n\'est envoyée. Si une vidéo n\'a pas de vignettes DeArrow, alors les captures originales ou encore sont affichées\n\nAppuyez ici pour en savoir plus sur DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Afficher un message si l\'API n\'est pas disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Message affiché si DeArrow n\'est pas disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Message non affiché si DeArrow n\'est pas disponible</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Point d\'API DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">L\'URL du cache de miniatures DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Captures vidéo</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Toujours des captures sont prises à partir du début/milieu/fin de chaque vidéo. Ces images sont intégrées dans YouTube et aucune API externe n\'est utilisée</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Utiliser des captures instantanées</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">En utilisant une qualité moyenne encore des captures. Les miniatures se chargeront plus vite, mais les flux en direct, non diffusés, ou les très vieilles vidéos peuvent afficher des miniatures vides</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Utiliser des captures encore de haute qualité</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Datation de la vidéo pour prendre des captures</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Début de la vidéo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Milieu de la vidéo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fin de la vidéo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow temporairement indisponible (code : %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow est temporairement indisponible</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Afficher les annonces ReVanced</string>
+ <string name="revanced_announcements_summary_on">Les annonces sont affichées au démarrage</string>
+ <string name="revanced_announcements_summary_off">Les annonces ne sont pas affichées au démarrage</string>
+ <string name="revanced_announcements_enabled_summary">Afficher les annonces au démarrage</string>
+ <string name="revanced_announcements_connection_failed">Échec de la connexion au fournisseur d\'annonces</string>
+ <string name="revanced_announcements_dialog_dismiss">Ignorer</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Activer la répétition automatique</string>
+ <string name="revanced_auto_repeat_summary_on">La répétition automatique est activée</string>
+ <string name="revanced_auto_repeat_summary_off">La répétition automatique est désactivée</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Falsifier les dimensions de l\'appareil</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Les dimensions de l\'appareil ont falsifié\n\ndes qualités vidéo plus élevées peuvent être débloquées mais vous risquez de rencontrer des difficultés de lecture vidéo, une mauvaise autonomie de la batterie et des effets secondaires inconnus</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Les dimensions de l\'appareil n\'ont pas étées falsifiées\n\nL\'activation de cette option peut débloquer des qualités vidéo plus élevées</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">L\'activation de cette option peut causer des problèmes de lecture vidéo, une dégradation de la durée de vie de la batterie et des effets secondaires inconnus.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Paramètres GmsCore</string>
+ <string name="microg_settings_summary">Paramètres pour GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Outrepasser les redirections d\'URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Les redirections d\'URL sont contournées</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Les redirections d\'URL ne sont pas contournées</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Ouvrir les liens dans le navigateur</string>
+ <string name="revanced_external_browser_summary_on">Ouverture des liens externes</string>
+ <string name="revanced_external_browser_summary_off">Ouverture des liens dans l\'application</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Lecture en arrière-plan</string>
+ <string name="revanced_background_playback_summary">Ce paramètre peut être trouvé dans Paramètres -> Arrière-plan</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Supprimer le paramètre de requête de suivi</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Le paramètre de requête de suivi est supprimé des liens</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Le paramètre de requête de suivi n\'est pas supprimé des liens</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Désactiver le zoom haptique</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptics sont désactivés</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics sont activés</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Qualité automatique</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Mémoriser les changements de qualité vidéo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Les changements de qualité s\'appliquent à toutes les vidéos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Les changements de qualité ne s\'appliquent qu\'à la vidéo actuelle</string>
+ <string name="revanced_video_quality_default_wifi_title">Qualité vidéo par défaut sur le réseau Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Qualité par défaut de la vidéo sur le réseau mobile</string>
+ <string name="revanced_remember_video_quality_mobile">mobile</string>
+ <string name="revanced_remember_video_quality_wifi">wi-fi</string>
+ <string name="revanced_remember_video_quality_toast">La qualité %1$s par défaut a été changée en : %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Afficher le bouton de la boîte de dialogue Vitesse</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Le bouton est affiché</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Le bouton n\'est pas affiché</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Vitesse de lecture personnalisée</string>
+ <string name="revanced_custom_playback_speeds_summary">Ajouter ou modifier les vitesses de lecture disponibles</string>
+ <string name="revanced_custom_playback_speeds_invalid">Les vitesses personnalisées doivent être inférieures à %s. Utiliser les valeurs par défaut.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Vitesses de lecture personnalisées invalides. Utilisation des valeurs par défaut.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Se souvenir des changements de vitesse de lecture</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Les changements de vitesse de lecture s\'appliquent à toutes les vidéos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Les changements de vitesse de lecture ne s\'appliquent qu\'à la vidéo actuelle</string>
+ <string name="revanced_playback_speed_default_title">Vitesse de lecture par défaut</string>
+ <string name="revanced_remember_playback_speed_toast">Vitesse par défaut changée en : %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurer l\'ancien menu qualité vidéo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">L\'ancien menu de qualité vidéo est affiché</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">L\'ancien menu de qualité vidéo n\'est pas affiché</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Activer la diapositive pour rechercher</string>
+ <string name="revanced_slide_to_seek_summary_on">Glisser pour chercher est activé</string>
+ <string name="revanced_slide_to_seek_summary_off">Glisser à chercher n\'est pas activé</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Tromper le client</string>
+ <string name="revanced_spoof_client_screen_summary">Tromper le client pour empêcher les problèmes de lecture</string>
+ <string name="revanced_spoof_client_title">Tromper le client</string>
+ <string name="revanced_spoof_client_summary_on">Le client est trompé </string>
+ <string name="revanced_spoof_client_summary_off">Le client n\'est pas trompé\n\nLa lecture de la vidéo peut ne pas fonctionner</string>
+ <string name="revanced_spoof_client_user_dialog_message">Désactiver ce paramètre peut causer des problèmes de lecture vidéo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Falsifier le client vers iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Le client est actuellement usurpé à Android VR\n\nEffets secondaires incluant:\n• Aucune vidéo HDR\n• Les vidéos des enfants ne lisent pas\n• Les vidéos en pause peuvent reprendre aléatoirement\n• Les Shorts de basse qualité sur les vignettes de la barre de recherche\n• Le bouton d\'action de téléchargement est toujours caché\n• Les cartes d\'écran de fin sont toujours cachées</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Tromper les vignettes du client non disponibles (API expirée)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Tromper les vignettes du client temporairement indisponibles : %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Falsifier la signature de l\'application</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Falsifier la signature de l\'application pour empêcher les problèmes de lecture</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Falsifier la signature de l\'application</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">La signature de l\'application falsifiée\n\nLes effets secondaires comprennent :\n• Le débit amélioré n\'est pas disponible\n• Les vidéos ne peuvent pas être téléchargées\n• Aucune vignette de barre de recherche pour les vidéos payantes</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">La signature de l\'application n\'a pas été falsifiée\n\nLa lecture de la vidéo peut ne pas fonctionner</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Désactiver ce paramètre causera des problèmes de lecture vidéo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Falsifier la signature de l\'application dans le flux</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">La signature de l\'application falsifiée\n\nLes effets secondaires comprennent :\n• Les vidéos des flux manquent de sous-titres\n• Les vidéos des flux automatiquement jouées apparaîtront dans votre historique de montre</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">La signature de l\'application n\'a pas été falsifiée pour les flux de vidéos\n\nLes vidéos en flux seront lues pendant moins d\'une minute avant de rencontrer des problèmes de lecture</string>
+ <string name="revanced_spoof_storyboard_title">Falsifier le storyboard</string>
+ <string name="revanced_spoof_storyboard_summary_on">Feuille de contes</string>
+ <string name="revanced_spoof_storyboard_summary_off">Le storyboard n\'a pas falsifié\n\nLes effets secondaires incluent :\n• Aucun mode ambiant\n• Les vignettes de Seekbar sont cachées</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard temporairement indisponible (API expirée)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Falsification de storyboard temporairement indisponible : %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Activer la luminosité automatique du HDR</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Luminosité HDR automatique activée</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Luminosité HDR automatique désactivée</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquer les publicités audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Les publicités audio sont bloquées</string>
+ <string name="revanced_block_audio_ads_summary_off">Les publicités audio sont débloquées</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s n\'est pas disponible. Les publicités peuvent s\'afficher. Essayez de passer à un autre service de blocage de publicités dans les paramètres.</string>
+ <string name="revanced_embedded_ads_service_failed">Le serveur %s a renvoyé une erreur. Les publicités peuvent s\'afficher. Essayez de passer à un autre service de blocage de publicités dans les paramètres.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquer les publicités vidéo intégrées</string>
+ <string name="revanced_block_embedded_ads_entry_1">Désactivé</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy lumineux</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquer les publicités vidéo</string>
+ <string name="revanced_block_video_ads_summary_on">Les publicités vidéo sont bloquées</string>
+ <string name="revanced_block_video_ads_summary_off">Les publicités vidéo sont débloquées</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">message supprimé</string>
+ <string name="revanced_show_deleted_messages_title">Afficher les messages supprimés</string>
+ <string name="revanced_show_deleted_messages_entry_1">Ne pas afficher les messages supprimés</string>
+ <string name="revanced_show_deleted_messages_entry_2">Masquer les messages supprimés derrière un spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Afficher les messages supprimés sous forme de texte croisé</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Réclamer automatiquement les points de la chaîne</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Les points de la chaîne sont automatiquement réclamés</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Les points de la chaîne ne sont pas réclamés automatiquement</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Activer le mode débogage Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Le mode débogage Twitch est activé (non recommandé)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Le mode débogage Twitch est désactivé</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Réglages ReVanced</string>
+ <string name="revanced_ads_screen_title">Publicités</string>
+ <string name="revanced_ads_screen_summary">Paramètres de blocage des publicités</string>
+ <string name="revanced_chat_screen_title">Discuter</string>
+ <string name="revanced_chat_screen_summary">Paramètres du chat</string>
+ <string name="revanced_misc_screen_title">Divers</string>
+ <string name="revanced_misc_screen_summary">Paramètres divers</string>
+ <string name="revanced_general_category_title">Paramètres généraux</string>
+ <string name="revanced_other_category_title">Autres paramètres</string>
+ <string name="revanced_client_ads_category_title">Annonces côté client</string>
+ <string name="revanced_surestream_ads_category_title">Annonces de surestream côté serveur</string>
+ <string name="revanced_twitch_debug_title">Journal de débogage</string>
+ <string name="revanced_twitch_debug_summary_on">Les journaux de débogage sont activés</string>
+ <string name="revanced_twitch_debug_summary_off">Les journaux de débogage sont désactivés</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-gl-rES/strings.xml b/src/main/resources/addresources/values-gl-rES/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-gl-rES/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-gu-rIN/strings.xml b/src/main/resources/addresources/values-gu-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-gu-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-hi-rIN/strings.xml b/src/main/resources/addresources/values-hi-rIN/strings.xml
new file mode 100644
index 0000000000..aead762812
--- /dev/null
+++ b/src/main/resources/addresources/values-hi-rIN/strings.xml
@@ -0,0 +1,267 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">रीसेट करें</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">विवरण</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">विवरण</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">स्वरूप</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">लोड हो रहा है...</string>
+ <string name="revanced_sb_reset">रीसेट करें</string>
+ <string name="revanced_sb_about">विवरण</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">डिफॉल्ट</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">बंद करें</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">निष्क्रिय</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-hr-rHR/strings.xml b/src/main/resources/addresources/values-hr-rHR/strings.xml
new file mode 100644
index 0000000000..5e6e63ffa5
--- /dev/null
+++ b/src/main/resources/addresources/values-hr-rHR/strings.xml
@@ -0,0 +1,270 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Ponovno postavljanje</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">O aplikaciji</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">Gumb za emitiranje je skriven</string>
+ <string name="revanced_hide_cast_button_summary_off">Gumb za emitiranje je prikazan</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Kartice informacija su skrivene</string>
+ <string name="revanced_hide_info_cards_summary_off">Kartice informacija su prikazane</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">O aplikaciji</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Izgled</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Učitavanje...</string>
+ <string name="revanced_sb_reset">Ponovno postavljanje</string>
+ <string name="revanced_sb_about">O aplikaciji</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Zadano</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Onemogućeno</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-hu-rHU/strings.xml b/src/main/resources/addresources/values-hu-rHU/strings.xml
new file mode 100644
index 0000000000..8cbdd286b6
--- /dev/null
+++ b/src/main/resources/addresources/values-hu-rHU/strings.xml
@@ -0,0 +1,1177 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Szeretné folytatni?</string>
+ <string name="revanced_settings_reset">Visszaállítás</string>
+ <string name="revanced_settings_restart_title">Frissítés és újraindítás</string>
+ <string name="revanced_settings_restart">Újraindítás</string>
+ <string name="revanced_settings_import">Importálás</string>
+ <string name="revanced_settings_import_copy">Másolás</string>
+ <string name="revanced_settings_import_reset">A ReVanced beállítások visszaállnak az alapértelmezettre</string>
+ <string name="revanced_settings_import_success">%d beállítás importálva</string>
+ <string name="revanced_settings_import_failure_parse">Sikertelen importálás: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore nincs telepítve. Telepítse.</string>
+ <string name="gms_core_dialog_title">Művelet szükséges</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">A MicroG GmsCore nem rendelkezik engedéllyel, hogy a háttérben futhasson.\n\nKövesse a \"Don\'t kill my app\" útmutatót a telefonjához és alkalmazza a leírtakat a MicroG telepítésre.\n\nEz szükséges az alkalmazás működéséhez.</string>
+ <string name="gms_core_dialog_open_website_text">Webhely megnyitása</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">A hibák megelőzése érdekében a MicroG GmsCore akkuoptimalizálását ki kell kapcsolni.\n\nKoppintson a folytatás gombra és kapcsolja ki az akkuoptimalizálást.</string>
+ <string name="gms_core_dialog_continue_text">Folytatás</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">A ReVanced Patchek <i>%s<i> verzióját használja</string>
+ <string name="revanced_settings_about_links_dev_header">Megjegyzés</string>
+ <string name="revanced_settings_about_links_dev_body">Ez a verzió egy előzetes kiadás, és nem kívánt hibákat tapasztalhat</string>
+ <string name="revanced_settings_about_links_header">Hivatalos linkek</string>
+ <string name="revanced_pref_import_export_title">Import / Export</string>
+ <string name="revanced_pref_import_export_summary">ReVanced beállítások importálása / exportálása</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Rólunk</string>
+ <string name="revanced_settings_screen_01_ads_title">Hirdetések</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternatív indexképek</string>
+ <string name="revanced_settings_screen_03_feed_title">Hírfolyam</string>
+ <string name="revanced_settings_screen_04_player_title">Lejátszó</string>
+ <string name="revanced_settings_screen_05_general_title">Általános elrendezés</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Keresősáv</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Csúsztatási vezérlők</string>
+ <string name="revanced_settings_screen_11_misc_title">Egyéb</string>
+ <string name="revanced_settings_screen_12_video_title">Videó</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Hibakeresés</string>
+ <string name="revanced_debug_screen_summary">Hibakeresési beállítások engedélyezése vagy letiltása</string>
+ <string name="revanced_debug_title">Hibakeresési naplózás</string>
+ <string name="revanced_debug_summary_on">A hibakeresési naplók engedélyezve vannak</string>
+ <string name="revanced_debug_summary_off">A hibakeresési naplók le vannak tiltva</string>
+ <string name="revanced_debug_protobuffer_title">Napló protokoll puffer</string>
+ <string name="revanced_debug_protobuffer_summary_on">A hibakeresési naplók protopuffert tartalmaznak</string>
+ <string name="revanced_debug_protobuffer_summary_off">A hibakeresési naplók nem tartalmaznak protopuffert</string>
+ <string name="revanced_debug_stacktrace_title">Naplóverem nyomai</string>
+ <string name="revanced_debug_stacktrace_summary_on">A hibakeresési naplók tartalmazzák a verem nyomkövetését</string>
+ <string name="revanced_debug_stacktrace_summary_off">A hibakeresési naplók nem tartalmazzák a verem nyomkövetését</string>
+ <string name="revanced_debug_toast_on_error_title">Üzenet megjelenítése ReVanced hiba esetén</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Üzenet jelenik meg, ha hiba történik</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Nem jelenik meg üzenet, ha hiba történik</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">A hibaüzenetek kikapcsolása elrejti az összes ReVanced hibaértesítést.\n\nNem kap értesítést semmilyen váratlan eseményről.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_hide_gray_separator_title">Szürke elválasztó elrejtése</string>
+ <string name="revanced_hide_gray_separator_summary_on">A szürke elválasztók el vannak rejtve</string>
+ <string name="revanced_hide_gray_separator_summary_off">A szürke elválasztók láthatóak</string>
+ <string name="revanced_hide_channel_watermark_title">Csatorna vízjel elrejtése</string>
+ <string name="revanced_hide_channel_watermark_summary_on">A vízjel el van rejtve</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vízjel látható</string>
+ <string name="revanced_hide_horizontal_shelves_title">Vízszintes polcok elrejtése</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">A polcok rejtve lesznek, mint a:\n• Rendkívüli hírek\n• Tovább néznéd?\n• Még több csatorna felfedezése\n• Vásárlás\n• Megnézem mégegyszer</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">A polcok láthatóak</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">\"Csatlakozás\" gomb elrejtése</string>
+ <string name="revanced_hide_join_membership_button_summary_on">A gomb rejtve van</string>
+ <string name="revanced_hide_join_membership_button_summary_off">A gomb megjelenik</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">\"Neked\" polc elrejtése a csatorna oldalon</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">A polc rejtett</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">A polc megjelenik</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\"Értesítést kérek\" gomb elrejtése</string>
+ <string name="revanced_hide_notify_me_button_summary_on">A gomb el van rejtve</string>
+ <string name="revanced_hide_notify_me_button_summary_off">A gomb megjelenik</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Mások ezt a videót is megnézték ajánlás elrejtése</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Az ajánlások rejtve vannak</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Az ajánlások megjelennek</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'Továbbiak megjelenítése\' gomb elrejtése</string>
+ <string name="revanced_hide_show_more_button_summary_on">A gomb el van rejtve</string>
+ <string name="revanced_hide_show_more_button_summary_off">A gomb megjelenik</string>
+ <string name="revanced_hide_timed_reactions_title">Időzített reakciók elrejtése</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Az időzített reakciók elrejtve</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Az időzített reakciók megjelenítve</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Keresési eredmények polcfejlécének elrejtése</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">A polcfejléc el van rejtve</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">A polcfejléc megjelenik</string>
+ <string name="revanced_hide_channel_guidelines_title">Csatornák irányelveinek elrejtése</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">A csatorna irányelvei elrejtve</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">A csatorna irányelvei megjelenítve</string>
+ <string name="revanced_hide_expandable_chip_title">Kiterjeszthető vágások elrejtése a videók alatt</string>
+ <string name="revanced_hide_expandable_chip_summary_on">A kiterjeszthető vágások el vannak rejtve</string>
+ <string name="revanced_hide_expandable_chip_summary_off">A kiterjeszthető vágások megjelennek</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">A videóminőség menü láblécének elrejtése</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">A videóminőség menü lábléce elrejtve</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">A videóminőség menü lábléce látható</string>
+ <string name="revanced_hide_community_posts_title">Közösségi posztok elrejtése</string>
+ <string name="revanced_hide_community_posts_summary_on">A közösségi posztok el vannak rejtve</string>
+ <string name="revanced_hide_community_posts_summary_off">A közösségi posztok meg fognak jelenni</string>
+ <string name="revanced_hide_compact_banner_title">Kompakt szalagképek elrejtése</string>
+ <string name="revanced_hide_compact_banner_summary_on">A kompakt szalagképek el vannak rejtve</string>
+ <string name="revanced_hide_compact_banner_summary_off">A kompakt szalagképek láthatók</string>
+ <string name="revanced_hide_movies_section_title">Filmek szakasz elrejtése</string>
+ <string name="revanced_hide_movies_section_summary_on">A filmek szakasz el van rejtve</string>
+ <string name="revanced_hide_movies_section_summary_off">A filmek szakasz látható</string>
+ <string name="revanced_hide_feed_survey_title">Feed felmérések elrejtése</string>
+ <string name="revanced_hide_feed_survey_summary_on">A feed felmérések rejtve vannak</string>
+ <string name="revanced_hide_feed_survey_summary_off">A feed felmérések láthatóak</string>
+ <string name="revanced_hide_community_guidelines_title">Közösségi irányelvek elrejtése</string>
+ <string name="revanced_hide_community_guidelines_summary_on">A közösségi irányelvek el vannak rejtve</string>
+ <string name="revanced_hide_community_guidelines_summary_off">A közösségi irányelvek láthatóak</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Feliratkozók közösségi irányelveinek elrejtése</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">A feliratkozók közösségi irányelvei rejtettek</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">A feliratkozók közösségi irányelvei megjelennek</string>
+ <string name="revanced_hide_channel_member_shelf_title">Csatornatag polc elrejtése</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">A csatornatagok polca rejtett</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">A csatornatagok polca megjelenik</string>
+ <string name="revanced_hide_emergency_box_title">Vészhelyzeti dobozok elrejtése</string>
+ <string name="revanced_hide_emergency_box_summary_on">A vészhelyzeti dobozok el vannak rejtve</string>
+ <string name="revanced_hide_emergency_box_summary_off">A vészhelyzeti dobozok láthatóak</string>
+ <string name="revanced_hide_info_panels_title">Információs panelek elrejtése</string>
+ <string name="revanced_hide_info_panels_summary_on">Az információs panelek el vannak rejtve</string>
+ <string name="revanced_hide_info_panels_summary_off">Az információs panelek meg fognak jelenni</string>
+ <string name="revanced_hide_medical_panels_title">Egészségügyi panel elrejtése</string>
+ <string name="revanced_hide_medical_panels_summary_on">Az egészségügyi panelek el vannak rejtve</string>
+ <string name="revanced_hide_medical_panels_summary_off">Az egészségügyi panelek láthatóak</string>
+ <string name="revanced_hide_channel_bar_title">Csatornasáv elrejtése</string>
+ <string name="revanced_hide_channel_bar_summary_on">A csatornasáv el van rejtve</string>
+ <string name="revanced_hide_channel_bar_summary_off">A csatornasáv megjelenik</string>
+ <string name="revanced_hide_playables_title">Lejátszható elemek elrejtése</string>
+ <string name="revanced_hide_playables_summary_on">A játékszoba rejtett</string>
+ <string name="revanced_hide_playables_summary_off">A játékszoba megjelenik</string>
+ <string name="revanced_hide_quick_actions_title">Gyorsműveletek elrejtése teljes képernyős módban</string>
+ <string name="revanced_hide_quick_actions_summary_on">A gyorsműveletek el vannak rejtve</string>
+ <string name="revanced_hide_quick_actions_summary_off">A gyorsműveletek megjelennek</string>
+ <string name="revanced_hide_related_videos_title">Kapcsolódó videók elrejtése a gyorsműveletekben</string>
+ <string name="revanced_hide_related_videos_summary_on">A kapcsolódó videók el vannak rejtve</string>
+ <string name="revanced_hide_related_videos_summary_off">A kapcsolódó videók láthatóak</string>
+ <string name="revanced_hide_image_shelf_title">Képek elrejtése a keresési eredményekben</string>
+ <string name="revanced_hide_image_shelf_summary_on">A képek el vannak rejtve</string>
+ <string name="revanced_hide_image_shelf_summary_off">A képek megjelennek</string>
+ <string name="revanced_hide_latest_posts_ads_title">Legutóbbi bejegyzések elrejtése</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">A legutóbbi bejegyzések rejtve vannak</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">A legutóbbi bejegyzések láthatóak</string>
+ <string name="revanced_hide_mix_playlists_title">Egyveleg lejátszási listák elrejtése</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Az egyveleg lejátszási listák el vannak rejtve</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Az egyveleg lejátszási listák megjelennek</string>
+ <string name="revanced_hide_artist_cards_title">Előadó kártyák elrejtése</string>
+ <string name="revanced_hide_artist_cards_summary_on">Az előadó kártyák rejtve vannak</string>
+ <string name="revanced_hide_artist_cards_summary_off">A előadó kártyák láthatók</string>
+ <string name="revanced_hide_chips_shelf_title">Vágások polc elrejtése</string>
+ <string name="revanced_hide_chips_shelf_summary_on">A vágások polc el van rejtve</string>
+ <string name="revanced_hide_chips_shelf_summary_off">A vágások polc megjelenik</string>
+ <string name="revanced_hide_attributes_section_title">Az attribútumok szakasz elrejtése</string>
+ <string name="revanced_hide_attributes_section_summary_on">A „Kiemelt helyek”, a Játékok és a Zene szakaszok el vannak rejtve</string>
+ <string name="revanced_hide_attributes_section_summary_off">Megjelennek a „Kiemelt helyek”, a Játékok és a Zene szakaszok</string>
+ <string name="revanced_hide_chapters_section_title">Fejezetek elrejtése</string>
+ <string name="revanced_hide_chapters_section_summary_on">A fejezetek szakasz el van rejtve</string>
+ <string name="revanced_hide_chapters_section_summary_off">Megjelenik a Fejezetek rész</string>
+ <string name="revanced_hide_podcast_section_title">A „Podcast felfedezése” szakasz elrejtése</string>
+ <string name="revanced_hide_podcast_section_summary_on">A „Podcast felfedezése” rész el van rejtve</string>
+ <string name="revanced_hide_podcast_section_summary_off">Megjelenik az „Explore the podcast” rész</string>
+ <string name="revanced_hide_info_cards_section_title">Infó kártyák rész elrejtése</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Az infó kártyák rész el van rejtve</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Az infó kártyák rész látható</string>
+ <string name="revanced_hide_transcript_section_title">Az Átirat szakasz elrejtése</string>
+ <string name="revanced_hide_transcript_section_summary_on">Az átirat rész el van rejtve</string>
+ <string name="revanced_hide_transcript_section_summary_off">Az átirat rész megjelenik</string>
+ <string name="revanced_hide_description_components_screen_title">Videóleírás</string>
+ <string name="revanced_hide_description_components_screen_summary">A videóleírás komponenseinek elrejtése vagy megjelenítése</string>
+ <string name="revanced_custom_filter_screen_title">Egyedi szűrő</string>
+ <string name="revanced_custom_filter_screen_summary">Komponensek elrejtése egyedi szűrők használatával</string>
+ <string name="revanced_custom_filter_title">Egyedi szűrők engedélyezése</string>
+ <string name="revanced_custom_filter_summary_on">Az egyedi szűrő engedélyezve van</string>
+ <string name="revanced_custom_filter_summary_off">Az egyedi szűrő ki van kapcsolva</string>
+ <string name="revanced_custom_filter_strings_title">Egyedi szűrő</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">A szűrendő összetevő útvonal építő karakterláncok listája új sorral elválasztva</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Érvénytelen egyedi szűrő: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Kulcsszó alapú tartalom elrejtés</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Kulcsszó alapú videó elrejtés keresésnél és a feedekben</string>
+ <string name="revanced_hide_keyword_content_home_title">Videók elrejtése a kezdőlapon kulcsszavak alapján</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">A videók a kezdőlapon kulcsszavak alapján szűrve</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">A videók a kezdőlapon nincsenek szűrve</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Videók elrejtése a feliratkozások lapon kulcsszavak alapján</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">A videók a feliratkozások lapon kulcsszavak alapján szűrve</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">A videók a feliratkozások lapon nincsenek szűrve</string>
+ <string name="revanced_hide_keyword_content_search_title">Keresési eredmények elrejtése kulcsszavak alapján</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">A keresési eredmények kulcsszavak alapján szűrve</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">A keresési eredmények nincsenek szűrve</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Elrejtendő kulcsszavak</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Elrejtendő kulcsszavak és kifejezések, új sorokkal elválasztva.\n\nA szóközépen nagy betűt tartalmazó szavaknál a kis- és nagybetűknek a megfelelő helyen kell lennie (pl: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">A kulcsszó alapú szűrésről</string>
+ <string name="revanced_hide_keyword_content_about_summary">A Kezdőlap/Feliratkozások/Keresés eredményei a kulcsszóval megegyező tartalom elrejtésére vannak szűrve\n\nKorlátozások\n• Néhány Shorts lehet, hogy nem lesz elrejtve\n• Néhány UI elem lehet, hogy nem lesz elrejtve\n• Előfordulhat, hogy a kulcsszó keresése nem hoz eredményt</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Érvénytelen kulcsszó.\'%s\'nem használható szűrőként</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Helytelen kulcsszó. \'%1$s\' kevesebb, mint %2$d karakter</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">\'$s\' kulcsszó elrejti az összes videót</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Általános hirdetések elrejtése</string>
+ <string name="revanced_hide_general_ads_summary_on">Az általános hirdetések el vannak rejtve</string>
+ <string name="revanced_hide_general_ads_summary_off">Az általános hirdetések megjelennek</string>
+ <string name="revanced_hide_fullscreen_ads_title">Teljes képernyős hirdetések elrejtése</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">A teljes képernyős hirdetések el vannak rejtve\n\nCsak régebbi készüléken elérhető</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">A teljes képernyős hirdetések láthatók</string>
+ <string name="revanced_hide_buttoned_ads_title">Gomb hirdetések elrejtése</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">A gomb hirdetések el vannak rejtve</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">A gomb hirdetések láthatók</string>
+ <string name="revanced_hide_paid_promotion_label_title">Fizetett promóció címke elrejtése</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">A fizetett promóció címke rejtve van</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">A fizetett promóció címke látható</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Önpromóciós kártyák elrejtése</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Az önpromóciós kártyák rejtve vannak</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Az önpromóciós kártyák megjelennek</string>
+ <string name="revanced_hide_products_banner_title">Szalagkép elrejtése a termékek megtekintéséhez</string>
+ <string name="revanced_hide_products_banner_summary_on">A szalagkép rejtett</string>
+ <string name="revanced_hide_products_banner_summary_off">A szalagkép megjelenik</string>
+ <string name="revanced_hide_shopping_links_title">Vásárlási linkek elrejtése a videó leírásában</string>
+ <string name="revanced_hide_shopping_links_summary_on">A vásárlási linkek rejtve vannak</string>
+ <string name="revanced_hide_shopping_links_summary_off">A vásárlási linkek láthatóak</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">\'Bolt meglátogatása\' gomb elrejtése a csatornák oldalán</string>
+ <string name="revanced_hide_visit_store_button_summary_on">A gomb el van rejtve</string>
+ <string name="revanced_hide_visit_store_button_summary_off">A gomb megjelenik</string>
+ <string name="revanced_hide_web_search_results_title">Webes keresési találatok elrejtése</string>
+ <string name="revanced_hide_web_search_results_summary_on">A webes keresési találatok rejtve vannak</string>
+ <string name="revanced_hide_web_search_results_summary_off">A webes keresési találatok megjelennek</string>
+ <string name="revanced_hide_merchandise_banners_title">Áruszalaghirdetések elrejtése</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Az áruszalaghirdetések el vannak rejtve</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Az áruszalaghirdetések megjelennek</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">A teljes képernyős hirdetések elrejtése csak régebbi eszközökön működik</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube Premium promóciók elrejtése</string>
+ <string name="revanced_hide_get_premium_summary_on">A YouTube Premium promóciók a videólejátszó alatt el vannak rejtve</string>
+ <string name="revanced_hide_get_premium_summary_off">A YouTube Premium promóciók a videólejátszó alatt láthatók</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Videó hirdetések elrejtése</string>
+ <string name="revanced_hide_video_ads_summary_on">A videó hirdetések el vannak rejtve</string>
+ <string name="revanced_hide_video_ads_summary_off">A videó hirdetések láthatók</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Az URL a vágólapra másolva</string>
+ <string name="revanced_share_copy_url_timestamp_success">Az URL időbélyeggel a vágólapra másolva</string>
+ <string name="revanced_copy_video_url_title">A videó URL másolása gomb megjelenítése</string>
+ <string name="revanced_copy_video_url_summary_on">A gomb megjelenik. Koppintson a video URL másolásához. Koppintson és tartsa lenyomva az időbélyeggel másoláshoz</string>
+ <string name="revanced_copy_video_url_summary_off">A gomb nem látható</string>
+ <string name="revanced_copy_video_url_timestamp_title">A videó URL másolása időbélyeggel gomb megjelenítése</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">A gomb megjelenik. Koppintson a videó URL másolásához időbélyeggel. Koppintson és tartsa lenyomva az időbélyeg nélküli másoláshoz</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">A gomb nem látható</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Távolítsa el a nézői diszkréciós párbeszédpanelt</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">A párbeszédpanel el lesz rejtve</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">A párbeszédpanel megjelenik</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Ez nem kerüli meg a korhatárt, csak automatikusan elfogadja.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Külső letöltések</string>
+ <string name="revanced_external_downloader_screen_summary">Beállítások külső letöltő használatához</string>
+ <string name="revanced_external_downloader_title">Külső letöltés gomb megjelenítése</string>
+ <string name="revanced_external_downloader_summary_on">A letöltés gomb látható a lejátszóban</string>
+ <string name="revanced_external_downloader_summary_off">A letöltés gomb nem látható a lejátszóban</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Letöltés művelet gomb felülbírálása</string>
+ <string name="revanced_external_downloader_action_button_summary_on">A letöltés gomb a külső letöltőt nyitja meg</string>
+ <string name="revanced_external_downloader_action_button_summary_off">A letöltés gomb az alkalmazáson belüli letöltőt használja</string>
+ <string name="revanced_external_downloader_name_title">Letöltő csomag neve</string>
+ <string name="revanced_external_downloader_name_summary">A telepített külső letöltő alkalmazás csomagneve, például NewPipe vagy Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s nincs telepítve. Kérjük telepítse.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Pontos keresési kézmozdulat letiltása</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">A kézmozdulat letiltva</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">A kézmozdulat engedélyezve</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Érintés engedélyezése a keresősávon</string>
+ <string name="revanced_seekbar_tapping_summary_on">A keresősáv érintése engedélyezve van</string>
+ <string name="revanced_seekbar_tapping_summary_off">A keresősáv érintése le van tiltva</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Fényerő kézmozdulat engedélyezése</string>
+ <string name="revanced_swipe_brightness_summary_on">A fényerő vezérlése kézmozdulattal engedélyezve</string>
+ <string name="revanced_swipe_brightness_summary_off">A fényerő vezérlése kézmozdulattal letiltva</string>
+ <string name="revanced_swipe_volume_title">Hangerő kézmozdulat engedélyezése</string>
+ <string name="revanced_swipe_volume_summary_on">A hangerő vezérlése kézmozdulattal engedélyezve</string>
+ <string name="revanced_swipe_volume_summary_off">A hangerő vezérlése kézmozdulattal letiltva</string>
+ <string name="revanced_swipe_press_to_engage_title">Nyomva húzás kézmozdulat engedélyezése</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">A nyomva húzás engedélyezve van</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">A nyomva húzás le van tiltva</string>
+ <string name="revanced_swipe_haptic_feedback_title">Haptikus visszajelzés engedélyezése</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">A haptikus visszajelzés engedélyezve van</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">A haptikus visszajelzés le van tiltva</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Fényerő mentése és visszaállítása</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">A fényerő mentése és visszaállítása teljes képernyőből való kilépéskor vagy belépéskor</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Ne mentse és állítsa vissza a fényerőt, amikor kilép vagy belép a teljes képernyőbe</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Auto fényerő gesztus engedélyezése</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">A fényerő kézmozdulat legalacsonyabb értékig csúsztatása engedélyezi az auto fényerőt</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">A legalacsonyabb értékig csúsztatás nem engedélyezi az auto fényerőt</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatikus</string>
+ <string name="revanced_swipe_overlay_timeout_title">Csúsztatási átfedés időkorlátja</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Az átfedés láthatóságának időtartama ezredmásodpercben</string>
+ <string name="revanced_swipe_text_overlay_size_title">Csúsztatási átfedés szövegmérete</string>
+ <string name="revanced_swipe_text_overlay_size_summary">A csúsztatási átfedés szövegmérete</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">A csúsztatás hátterének láthatósága</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">A csúsztatási átfedés hátterének láthatósága</string>
+ <string name="revanced_swipe_threshold_title">A csúsztatás küszöbértéke</string>
+ <string name="revanced_swipe_threshold_summary">A csúsztatáshoz szükséges küszöbérték</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Automatikus feliratok letiltása</string>
+ <string name="revanced_auto_captions_summary_on">Az automatikus feliratok le vannak tiltva</string>
+ <string name="revanced_auto_captions_summary_off">Az automatikus feliratok engedélyezve vannak</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Művelet gombok</string>
+ <string name="revanced_hide_buttons_screen_summary">Gombok megjelenítése vagy elrejtése a videók alatt</string>
+ <string name="revanced_hide_like_dislike_button_title">Tetszik és nem tetszik elrejtése</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">A tetszik és nem tetszik gombok rejtve vannak</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">A tetszik és nem tetszik gombok láthatóak</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Megosztás elrejtése</string>
+ <string name="revanced_hide_share_button_summary_on">A megosztás gomb el van rejtve</string>
+ <string name="revanced_hide_share_button_summary_off">A megosztás gomb látható</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Bejelentés elrejtése</string>
+ <string name="revanced_hide_report_button_summary_on">A bejelentés gomb el van rejtve</string>
+ <string name="revanced_hide_report_button_summary_off">A bejelentés gomb látható</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Remix elrejtése</string>
+ <string name="revanced_hide_remix_button_summary_on">A remix gomb el van rejtve</string>
+ <string name="revanced_hide_remix_button_summary_off">A remix gomb megjelenik</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Letöltés elrejtése</string>
+ <string name="revanced_hide_download_button_summary_on">A letöltés gomb el van rejtve</string>
+ <string name="revanced_hide_download_button_summary_off">A letöltés gomb látható</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Köszönet elrejtése</string>
+ <string name="revanced_hide_thanks_button_summary_on">A köszönet gomb el van rejtve</string>
+ <string name="revanced_hide_thanks_button_summary_off">A köszönet gomb látható</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Vágás gomb elrejtése</string>
+ <string name="revanced_hide_clip_button_summary_on">A klip gomb el van rejtve</string>
+ <string name="revanced_hide_clip_button_summary_off">A klip gomb látható</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Mentés elrejtése</string>
+ <string name="revanced_hide_playlist_button_summary_on">A mentés gomb el van rejtve</string>
+ <string name="revanced_hide_playlist_button_summary_off">A mentés gomb látható</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Automatikus lejátszás gomb elrejtése</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Az automatikus lejátszás gomb el van rejtve</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Az automatikus lejátszás gomb látható</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Feliratok gomb elrejtése</string>
+ <string name="revanced_hide_captions_button_summary_on">A feliratok gomb el van rejtve</string>
+ <string name="revanced_hide_captions_button_summary_off">A feliratok gomb látható</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Átküldés gomb elrejtése</string>
+ <string name="revanced_hide_cast_button_summary_on">Az átküldés gomb rejtve van</string>
+ <string name="revanced_hide_cast_button_summary_off">Az átküldés gomb látható</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigációs gombok</string>
+ <string name="revanced_navigation_buttons_screen_summary">Gombok elrejtése vagy módosítása a navigációs sávon</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Kezdőlap elrejtése</string>
+ <string name="revanced_hide_home_button_summary_on">A kezdőlap gomb elrejtve</string>
+ <string name="revanced_hide_home_button_summary_off">A kezdőlap gomb látható</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Shorts elrejtése</string>
+ <string name="revanced_hide_shorts_button_summary_on">A shorts gomb rejtve van</string>
+ <string name="revanced_hide_shorts_button_summary_off">A shorts gomb látható</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Létrehozás elrejtése</string>
+ <string name="revanced_hide_create_button_summary_on">A létrehozás gomb el van rejtve</string>
+ <string name="revanced_hide_create_button_summary_off">A létrehozás gomb látható</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Feliratkozások elrejtése</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">A feliratkozások gomb el van rejtve</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">A feliratkozások gomb megjelenítve</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Létrehozás felcserélése az értesítésekkel</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">A Létrehozás gomb megcserélése az Értesítések gombbal\n\nMegjegyzés: Engedélyezés esetén a videó hirdetéseket is elrejti</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">A létrehozás gomb nincs felcserélve az értesítések gombbal</string>
+ <string name="revanced_hide_navigation_button_labels_title">A navigációs gombok címkéinek elrejtése</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">A címkék el vannak rejtve</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">A címkék megjelennek</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Előugró menü</string>
+ <string name="revanced_hide_player_flyout_summary">A lejátszó előugró menüpontjainak elrejtése vagy megjelenítése</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Feliratok elrejtése</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">A feliratok menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">A feliratok menü megjelenítve</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">További beállítások elrejtése</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">A további beállítások menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">A további beállítások menü látható</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Videó folyamatos ismétlése menü elrejtése</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">A videó folyamatos ismétlése menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">A videó folyamatos ismétlése menü látható</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Mozifilmes világítás elrejtése</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">A mozifilmes világítás menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">A mozifilmes világítás menü látható</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Súgó és visszajelzés elrejtése</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">A súgó és visszajelzés menü elrejtve</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">A súgó és visszajelzés menü megjelenítve</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Lejátszási sebesség elrejtése</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">A lejátszási sebesség menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">A lejátszási sebesség menü látható</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">További információk elrejtése</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on"> A további információ menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">A további információ menü megjelenik</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Lezárási képernyő elrejtése</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">A lezárási képernyő menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">A lezárási képernyő menü megjelenik</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Hangsáv elrejtése</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">A hangsáv menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">A hangsáv menü megjelenik</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">\"Megtekintés VR-módban\" elrejtése</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">A megtekintés VR-módban menü el van rejtve</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">A „Megtekintés VR-módban” menü megjelenik</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Az előző és következő videó gombok elrejtése</string>
+ <string name="revanced_hide_player_buttons_summary_on">A gombok elrejtve</string>
+ <string name="revanced_hide_player_buttons_summary_off">A gombok megjelennek</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Album kártyák elrejtése</string>
+ <string name="revanced_hide_album_cards_summary_on">Az album kártyák el vannak rejtve</string>
+ <string name="revanced_hide_album_cards_summary_off">Az album kártyák láthatóak</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Megjegyzések</string>
+ <string name="revanced_comments_screen_summary">Megjegyzések rész elrejtése vagy megjelenítése</string>
+ <string name="revanced_hide_comments_by_members_header_title">A „Tagok megjegyzései” fejléc elrejtése</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">A „tagok megjegyzései” fejléc el van rejtve</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Megjelenik a „Tagok megjegyzései” fejléc</string>
+ <string name="revanced_hide_comments_section_title">A megjegyzések szekció elrejtése</string>
+ <string name="revanced_hide_comments_section_summary_on">A megjegyzések szakasz el van rejtve</string>
+ <string name="revanced_hide_comments_section_summary_off">Megjelenik a megjegyzések rész</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">A „Rövid létrehozása” gomb elrejtése</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">A „Short létrehozása” gomb el van rejtve</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Megjelenik a „Short létrehozása” gomb</string>
+ <string name="revanced_hide_comments_preview_comment_title">Megjegyzés előnézet elrejtése</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">A megjegyzés előnézet el van rejtve</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">A megjegyzés előnézet megjelenik</string>
+ <string name="revanced_hide_comments_thanks_button_title">Köszönet gomb elrejtése</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">A köszönet gomb el van rejtve</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">A köszönet gomb látható</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Időbélyeg és az emoji gombok elrejtése</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Az időbélyeg és az emoji gombok el vannak rejtve</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Megjelennek az időbélyeg és az emoji gombok</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Közösségi finanszírozási doboz elrejtése</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">A közösségi finanszírozási doboz el van rejtve</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">A közösségi finanszírozási doboz megjelenik</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Záróképernyő kártyák elrejtése</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">A záróképernyő kártyák el vannak rejtve</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">A záróképernyő kártyák megjelennek</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Szűrősáv</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Szűrősáv elrejtése vagy megjelenítése a feedekben, a keresésben és a kapcsolódó videók között</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Elrejtés a feedekben</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Elrejtve a feedekben</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Megjelenítés a feedekben</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Elrejtés a keresésben</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Elrejtve a keresésben</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Megjelenik a keresésben</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Elrejtés a kapcsolódó videók között</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Elrejtve a kapcsolódó videók között</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Megjelenik a kapcsolódó videók között</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Lebegő mikrofon gomb elrejtése</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">A mikrofon gomb elrejtve</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">A mikrofon gomb látható</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Mozifilmes világítás letiltása teljes képernyős módban</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Mozifilmes világítás kikapcsolva</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Mozifilmes világítás engedélyezve</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Infó kártyák elrejtése</string>
+ <string name="revanced_hide_info_cards_summary_on">Az info kártyák el vannak rejtve</string>
+ <string name="revanced_hide_info_cards_summary_off">Az info kártyák megjelennek</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Gördülőszám-animációk letiltása</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">A gördülő számok nem animáltak</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">A gördülő számok animálva vannak</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Folyamatsáv elrejtése a videólejátszóban</string>
+ <string name="revanced_hide_seekbar_summary_on">A videólejátszó folyamatsávja el van rejtve</string>
+ <string name="revanced_hide_seekbar_summary_off">A videólejátszó folyamatsávja megjelenik</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Folyamatsáv elrejtése a minilejátszóban</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">A minilejátszó folyamatsávja el van rejtve</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">A minilejátszó folyamatsávja megjelenik</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Shorts elrejtése a Kezdőlap feedben</string>
+ <string name="revanced_hide_shorts_home_summary_on">A Shortsok elrejtve a Kezdőlap feedben</string>
+ <string name="revanced_hide_shorts_home_summary_off">A Shortsok megjelennek a Kezdőlap feedben</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Shortsok elrejtése a Feliratkozások feedben</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">A Shortsok megjelennek a Feliratkozások feedben</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">A Shortsok megjelennek a Feliratkozások feedben</string>
+ <string name="revanced_hide_shorts_search_title">Shortsok elrejtése a keresési eredményekben</string>
+ <string name="revanced_hide_shorts_search_summary_on">A Shortsok el vannak rejtve a keresési eredményekben</string>
+ <string name="revanced_hide_shorts_search_summary_off">A Shortsok megjelenek a keresési eredményekben</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Csatlakozás gomb elrejtése</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">A csatlakozás gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">A csatlakozás gomb meg van jelenítve</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Feliratkozás gomb elrejtése</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">A feliratkozás gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">A feliratkozás gomb látható</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Szüneteltetett fedő gombok elrejtése</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">A szüneteltetett fedő gombok el vannak rejtve</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">A szüneteltetett fedő gombok megjelennek</string>
+ <string name="revanced_hide_shorts_shop_button_title">Vásárlás gomb elrejtése</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">A vásárlás gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">A vásárlás gomb látható</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Szuper köszönöm gomb elrejtése</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">A szuper köszönöm gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">A szuper köszönöm gomb megjelenik</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Címkézett termékek elrejtése</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">A címkézett termékek el vannak rejtve</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">A címkézett termékek megjelennek</string>
+ <string name="revanced_hide_shorts_location_label_title">Helycímke elrejtése</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">A helycímke el van rejtve</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">A helycímke megjelenik</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Hang mentése a lejátszási listára gomb elrejtése</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">A hang mentése a lejátszási listára gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">A hang mentése a lejátszási listára gomb megjelenik</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Keresési javaslatok elrejtése</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">A keresési javaslatok el vannak rejtve</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">A keresési javaslatok megjelennek</string>
+ <string name="revanced_hide_shorts_like_button_title">Tetszik gomb elrejtése</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">A tetszik gomb elrejtve</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">A tetszik gomb megjelenik</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Nem tetszik gomb elrejtése</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">A nem tetszik gomb elrejtve</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">A nem tetszik gomb látható</string>
+ <string name="revanced_hide_shorts_comments_button_title">Megjegyzések gomb elrejtése</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">A megjegyzések gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">A megjegyzések gomb megjelenik</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Remix gomb elrejtése</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">A remix gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">A remix gomb megjelenik</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Megosztás gomb elrejtése</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">A megosztás gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">A megosztás gomb látható</string>
+ <string name="revanced_hide_shorts_info_panel_title">Infó panel elrejtése</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Az infó panel rejtett</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Az infó panel megjelenik</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Csatornasáv elrejtése</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">A csatornasáv el van rejtve</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">A csatornasáv megjelenik</string>
+ <string name="revanced_hide_shorts_video_title_title">Videó címének elrejtése</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">A cím el van rejtve</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">A cím megjelenik</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Hang metaadatcímke elrejtése</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">A hang metaadatcímke el van rejtve</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">A hang metaadatcímke megjelenik</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Teljes videólink címke elrejtése</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">A teljes videólink címke el van rejtve</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">A teljes videólink címke megjelenik</string>
+ <string name="revanced_hide_shorts_sound_button_title">Hang gomb elrejtése</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">A hang gomb el van rejtve</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">A hang gomb megjelenik</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Navigációs sáv elrejtése</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">A navigációs sáv el van rejtve</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">A navigációs sáv megjelenik</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Videójavaslatok letiltása a záróképernyőn</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">A videójavaslatok le lesznek tiltva</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">A videójavaslatok megjelennek</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Videó időbélyegzőjének elrejtése</string>
+ <string name="revanced_hide_timestamp_summary_on">Az időbélyegző elrejtve</string>
+ <string name="revanced_hide_timestamp_summary_off">Az időbélyegző megjelenik</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Lejátszó előugró paneleinek elrejtése</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">A lejátszó előugró panelei el vannak rejtve</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">A lejátszó előugró panelei megjelennek</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Lejátszó fedőrétegének átlátszatlansága</string>
+ <string name="revanced_player_overlay_opacity_summary">Az átlátszatlanság értéke 0 és 100 között van, ahol a 0 átlátszó</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">A lejátszó fedvény átlátszatlanságának 0 és 100 között kell lennie</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Rejtett</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">A nem tetszik funkció átmenetileg nem elérhető</string>
+ <string name="revanced_ryd_failure_connection_status_code">A nem tetszik funkció nem elérhető (állapot: %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">A nem tetszik funkció nem elérhető</string>
+ <string name="revanced_ryd_failure_generic">A nem tetszik funkció nem elérhető (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Töltse újra a videót a Return YouTube Dislike-hoz</string>
+ <string name="revanced_ryd_enable_summary_on">A nem tetszések megjelennek</string>
+ <string name="revanced_ryd_enable_summary_off">A nem tetszések nem jelennek meg</string>
+ <string name="revanced_ryd_shorts_title">A nem tetszések megjelenítése a Shorts videóknál</string>
+ <string name="revanced_ryd_shorts_summary_on">A nem tetszések megjelennek a Shorts videóknál</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">A nem tetszések megjelennek a Shorts videóknál\n\nKorlátozás: A nem tetszések lehet nem jelennek meg inkognitó módban</string>
+ <string name="revanced_ryd_shorts_summary_off">A nem tetszések el vannak rejtve a Shorts videóknál</string>
+ <string name="revanced_ryd_dislike_percentage_title">Nem tetszések százalékban</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">A nem tetszések százalékban jelennek meg</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">A nem tetszések számként jelennek meg</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt tetszik gomb</string>
+ <string name="revanced_ryd_compact_layout_summary_on">A tetszik gomb minimális szélességre formázva</string>
+ <string name="revanced_ryd_compact_layout_summary_off">A tetszik gomb a legjobb megjelenésre formázva</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Üzenet megjelenítése, ha az API nem elérhető</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Üzenet megjelenítése, ha a Return YouTube Dislike nem elérhető</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Nem jelenik meg üzenet, ha a Return YouTube Dislike nem elérhető</string>
+ <string name="revanced_ryd_about">Rólunk</string>
+ <string name="revanced_ryd_attribution_summary">Az adatokat a Return YouTube Dislike API biztosítja. További információért koppintson ide</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API statisztika az eszközön</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API válaszidő, átlagos</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API válaszidő, minimális</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API válaszidő, maximális</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API válaszidő, legutóbbi videó</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">A nem tetszések átmenetileg nem érhetőek el – Az Ügyfél API sebességkorlátja van érvényben</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API lekérési szavazatok, hívások száma</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nem kezdeményezett hálózati hívás</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d kezdeményezett hálózati hívás</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API lekérési szavazatok, időtúllépések száma</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Nincsenek hálózati hívások időtúllépésben</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d hálózati hívás időtúllépés</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API kliens korlátok</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nem történtek kliens korlátozások</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Kliens korlátozás %d alkalommal történt</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d ezredmásodperc</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Széles keresősáv bekapcsolása</string>
+ <string name="revanced_wide_searchbar_summary_on">Széles keresősáv bekapcsolva</string>
+ <string name="revanced_wide_searchbar_summary_off">Széles keresősáv kikapcsolva</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Régi keresősáv bélyegképek visszaállítása</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">A keresősáv bélyegképei megjelennek a keresősáv felett</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">A keresősáv bélyegképei megjelennek a teljes képernyőn</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock bekapcsolása</string>
+ <string name="revanced_sb_enable_sb_sum">A SponsorBlock egy közösségi rendszer a zavaró részek kihagyására a YouTube videókon</string>
+ <string name="revanced_sb_appearance_category">Megjelenés</string>
+ <string name="revanced_sb_enable_voting">Szavazás gomb megjelenítése</string>
+ <string name="revanced_sb_enable_voting_sum_on">Szegmens szavazás gomb megjelenítve</string>
+ <string name="revanced_sb_enable_voting_sum_off">Szegmens szavazás gomb elrejtve</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Kompakt kihagyás gomb használata</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">A kihagyás gomb minimális szélességre formázva</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">A kihagyás gomb a legjobb megjelenésre formázva</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Automatikusan elrejti a kihagyás gombot</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">A kihagyás gomb néhány másodperc után eltűnik</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">A kihagyás gomb a teljes szakasz alatt megjelenik</string>
+ <string name="revanced_sb_general_skiptoast">Felugró üzenet megjelenítése az automatikusan kihagyott szakaszoknál</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Felugró üzenet megjelenítése, ha a szakasz automatikusan ki lett hagyva. Koppintson ide egy példa megtekintéséhez</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Felugró üzenet nem látható. Koppintson ide egy példa megtekintéséhez</string>
+ <string name="revanced_sb_general_time_without">A videó hosszának megjelenítése szegmensek nélkül</string>
+ <string name="revanced_sb_general_time_without_sum_on">A videó hossza mínusz minden szegmens, zárójelben a teljes videó hossza mellett</string>
+ <string name="revanced_sb_general_time_without_sum_off">A videó teljes hossza látható</string>
+ <string name="revanced_sb_create_segment_category">Új szegmensek létrehozása</string>
+ <string name="revanced_sb_enable_create_segment">Az új szegmens létrehozása gomb megjelenítése</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Az új szegmens létrehozása gomb megjelenik</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Az új szegmens létrehozása gomb nem jelenik meg</string>
+ <string name="revanced_sb_general_adjusting">Új szegmens léptetés beállítása</string>
+ <string name="revanced_sb_general_adjusting_sum">Ezredmásodpercek száma, ameddig az időbeállító gombok léptetnek új szegmensek létrehozásakor</string>
+ <string name="revanced_sb_general_adjusting_invalid">Az értéknek pozitív számnak kell lennie</string>
+ <string name="revanced_sb_guidelines_preference_title">Irányelvek megtekintése</string>
+ <string name="revanced_sb_guidelines_preference_sum">Az irányelvek tippeket és szabályokat tartalmaznak a szegmensek beküldésével kapcsolatban</string>
+ <string name="revanced_sb_guidelines_popup_title">Kövesse az irányelveket</string>
+ <string name="revanced_sb_guidelines_popup_content">Olvassa el a SponsorBlock irányelveket szegmensek beküldése előtt</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Már elolvastam</string>
+ <string name="revanced_sb_guidelines_popup_open">Mutasd</string>
+ <string name="revanced_sb_general">Általános</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Üzenet megjelenítése, ha az API nem elérhető</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Üzenet látható, ha a SponsorBlock nem elérhető</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Nem látható üzenet, ha a SponsorBlock nem elérhető</string>
+ <string name="revanced_sb_general_skipcount">Átugrásszámláló bekapcsolása</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Értesíti a SponsorBlock ranglistáját, hogy mennyi időt takarított meg. Minden egyes szakasz kihagyásakor üzenetet küld a ranglistának</string>
+ <string name="revanced_sb_general_skipcount_sum_off">A kihagyások számának követése nem engedélyezett</string>
+ <string name="revanced_sb_general_min_duration">Minimális szegmens időtartam</string>
+ <string name="revanced_sb_general_min_duration_sum">A beállított értéknél (másodpercben) rövidebb szakaszokat nem hagyja ki vagy nem jeleníti meg</string>
+ <string name="revanced_sb_general_uuid">Az Ön privát felhasználói azonosítója</string>
+ <string name="revanced_sb_general_uuid_sum">Ezt bizalmasan kell kezelni. Olyan mint egy jelszó és senkivel sem ajánlott megosztani. Ha valaki megszerzi, meg tudja személyesíteni önt</string>
+ <string name="revanced_sb_general_uuid_invalid">A privát felhasználói azonosítónak legalább 30 karakter hosszúnak kell lennie</string>
+ <string name="revanced_sb_general_api_url">API URL módosítása</string>
+ <string name="revanced_sb_general_api_url_sum">Az a cím, amelyet a SponsorBlock a szervere eléréséhez használ</string>
+ <string name="revanced_sb_api_url_reset">API URL alaphelyzetbe állítása</string>
+ <string name="revanced_sb_api_url_invalid">API URL érvénytelen</string>
+ <string name="revanced_sb_api_url_changed">API URL megváltoztatva</string>
+ <string name="revanced_sb_settings_ie">Beállítások importálása/exportálása</string>
+ <string name="revanced_sb_settings_copy">Másolás</string>
+ <string name="revanced_sb_settings_ie_sum">Az Ön SponsorBlock JSON-konfigurációja, amely importálható/exportálható ReVanced és más SponsorBlock platformokra</string>
+ <string name="revanced_sb_settings_ie_sum_warning">A SponsorBlock JSON-konfigurációja, amely importálható/exportálható a ReVanced és más SponsorBlock platformokra. Ez magában foglalja a privát felhasználói azonosítóját is. Ügyeljen arra, hogy ezt bölcsen ossza meg</string>
+ <string name="revanced_sb_settings_import_successful">A beállítások sikeresen importálva</string>
+ <string name="revanced_sb_settings_import_failed">Nem sikerült importálni ezt: %s</string>
+ <string name="revanced_sb_settings_export_failed">Nem sikerült exportálni ezt: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">A beállításai tartalmazzák a privát SponsorBlock felhasználói azonosítót.\n\nA felhasználói azonosító olyan, mint egy jelszó, és soha nem szabad megosztani.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Ne jelenjen meg többet</string>
+ <string name="revanced_sb_diff_segments">A szegmens viselkedésének módosítása</string>
+ <string name="revanced_sb_segments_sponsor">Szponzor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Fizetett promóció, vagy közvetlen reklám. Nem önpromóció, vagy ingyenes említése ügyeknek/tartalomkészítőknek/weboldalaknak/termékeknek amik tetszenek nekik</string>
+ <string name="revanced_sb_segments_selfpromo">Nem fizetett hirdetés/önpromóció</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Hasonló a „szponzorhoz”, csak ez nem fizetett, vagy saját promóció. Beletartoznak a saját árucikkek, adományok, illetve információk azokról, akikkel együttműködtek</string>
+ <string name="revanced_sb_segments_interaction">Interakció emlékeztető (Feliratkozás)</string>
+ <string name="revanced_sb_segments_interaction_sum">Egy rövid emlékeztető arról, hogy like-oljunk, iratkozzunk fel, vagy kövessük a tartalom közben. Ha hosszabb szakasz, vagy egy adott témáról van, inkább az önpromóció alá tartozik</string>
+ <string name="revanced_sb_segments_highlight">Kiemelt</string>
+ <string name="revanced_sb_segments_highlight_sum">A videónak azon része, amit a legtöbben keresnek</string>
+ <string name="revanced_sb_segments_intro">Megszakítás/Intro animáció</string>
+ <string name="revanced_sb_segments_intro_sum">Egy részlet tartalom nélkül. Lehet szünet, álló képkocka, vagy ismétlődő animáció. Nem használandó információt tartalmazó átmeneteknél</string>
+ <string name="revanced_sb_segments_outro">Záróképernyő/Köszönetek</string>
+ <string name="revanced_sb_segments_outro_sum">Stáblista, vagy amikor megjelennek a YouTube zárókártyák. Nem tartozik bele az információt tartalmazó összegzés</string>
+ <string name="revanced_sb_segments_preview">Előzetes/Ismétlés</string>
+ <string name="revanced_sb_segments_preview_sum">Olyan klipek gyűjteménye, amik azt mutatják, hogy mi következik majd ebben, vagy a sorozat más videóiban és minden információ megismétlődik később a videóban</string>
+ <string name="revanced_sb_segments_filler">Érintőleges tartalom/Viccek</string>
+ <string name="revanced_sb_segments_filler_sum">Csak töltelék vagy humornak hozzáadott részek, amik nem szükségesek a videó fő tartalmának megértéséhez. Ne tartalmazzon olyan szegmenseket, amik kontextust, vagy háttérinformációt szolgáltatnak</string>
+ <string name="revanced_sb_segments_nomusic">Zene: zenementes rész</string>
+ <string name="revanced_sb_segments_nomusic_sum">Csak zenei videókhoz használható. Zenei videók zene nélküli részei, amelyek még nem tartoznak más kategóriába</string>
+ <string name="revanced_sb_skip_button_compact">Kihagyás</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Kiemelt</string>
+ <string name="revanced_sb_skip_button_sponsor">Szponzor kihagyása</string>
+ <string name="revanced_sb_skip_button_selfpromo">Promóció kihagyása</string>
+ <string name="revanced_sb_skip_button_interaction">Interakció kihagyása</string>
+ <string name="revanced_sb_skip_button_highlight">Ugrás az kiemelthez</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Intro kihagyása</string>
+ <string name="revanced_sb_skip_button_intro_middle">Szünet kihagyása</string>
+ <string name="revanced_sb_skip_button_intro_end">Szünet kihagyása</string>
+ <string name="revanced_sb_skip_button_outro">Outro kihagyása</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Előnézet kihagyása</string>
+ <string name="revanced_sb_skip_button_preview_middle">Előnézet kihagyása</string>
+ <string name="revanced_sb_skip_button_preview_end">Recap kihagyása</string>
+ <string name="revanced_sb_skip_button_filler">Töltelékrész kihagyása</string>
+ <string name="revanced_sb_skip_button_nomusic">Nem zenei rész kihagyása</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Szakasz kihagyása</string>
+ <string name="revanced_sb_skipped_sponsor">Szponzor kihagyva</string>
+ <string name="revanced_sb_skipped_selfpromo">Önpromóció kihagyva</string>
+ <string name="revanced_sb_skipped_interaction">Zavaró emlékeztető kihagyva</string>
+ <string name="revanced_sb_skipped_highlight">Kihagyva a kiemelthez</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro kihagyva</string>
+ <string name="revanced_sb_skipped_intro_middle">Szünet kihagyva</string>
+ <string name="revanced_sb_skipped_intro_end">Szünet kihagyva</string>
+ <string name="revanced_sb_skipped_outro">Outro kihagyva</string>
+ <string name="revanced_sb_skipped_preview_beginning">Bevezető kihagyva</string>
+ <string name="revanced_sb_skipped_preview_middle">Bevezető kihagyva</string>
+ <string name="revanced_sb_skipped_preview_end">Recap kihagyva</string>
+ <string name="revanced_sb_skipped_filler">Töltelékrész kihagyva</string>
+ <string name="revanced_sb_skipped_nomusic">Zenementes rész kihagyva</string>
+ <string name="revanced_sb_skipped_unsubmitted">Beküldésre váró rész kihagyva</string>
+ <string name="revanced_sb_skipped_multiple_segments">Több szakasz kihagyva</string>
+ <string name="revanced_sb_skip_automatically">Automatikus kihagyás</string>
+ <string name="revanced_sb_skip_automatically_once">Automatikus kihagyás egyszer</string>
+ <string name="revanced_sb_skip_showbutton">Kihagyás gomb megjelenítése</string>
+ <string name="revanced_sb_skip_seekbaronly">Megjelenítés a folyamatsávban</string>
+ <string name="revanced_sb_skip_ignore">Letiltás</string>
+ <string name="revanced_sb_submit_failed_invalid">Nem lehet beküldeni a szegmenst: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">A SponsorBlock átmenetileg nem működik</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Nem lehet beküldeni a szegmenst (állapot: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Nem sikerült beküldeni a szegmenst.\nGyakorisági korlát (Túl sok beküldés)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Nem lehet beküldeni a szegmenst: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Nem sikerült beküldeni a szakaszt.\nMár létezik</string>
+ <string name="revanced_sb_submit_succeeded">A szakasz sikeresen beküldve</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">A SponsorBlock jelenleg nem elérhető (API időtúllépés)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">A SponsorBlock jelenleg nem elérhető (állapot %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">A SponsorBlock átmenetileg nem elérhető</string>
+ <string name="revanced_sb_vote_failed_timeout">Nem lehet szavazni a szegmensre (API időtúllépés)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Nem lehet szavazni erre (állapot: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Nem lehet szavazni a szegmensre: %s</string>
+ <string name="revanced_sb_vote_upvote">Pozitív szavazás</string>
+ <string name="revanced_sb_vote_downvote">Leszavazás</string>
+ <string name="revanced_sb_vote_category">Kategória megváltoztatása</string>
+ <string name="revanced_sb_vote_no_segments">Nincsenek szakaszok, amikre szavazni lehet</string>
+ <string name="revanced_sb_new_segment_choose_category">Válassza ki a szakasz kategóriáját</string>
+ <string name="revanced_sb_new_segment_disabled_category">A kategória letiltva a beállításokban. Engedélyezze a beküldéshez.</string>
+ <string name="revanced_sb_new_segment_title">Új SponsorBlock szakasz</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Beállítja a(z) %1$02d:%2$02d:%3$03d -t az új szakasz kezdetének vagy végének?</string>
+ <string name="revanced_sb_new_segment_mark_start">kezdőpont</string>
+ <string name="revanced_sb_new_segment_mark_end">végpont</string>
+ <string name="revanced_sb_new_segment_now">most</string>
+ <string name="revanced_sb_new_segment_time_start">A szakasz kezdetének időpontja:</string>
+ <string name="revanced_sb_new_segment_time_end">A szakasz végének időpontja:</string>
+ <string name="revanced_sb_new_segment_confirm_title">Helyesek az időpontok?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">A szegmens:\n\n%1$s\n\n%2$s\n\n(%3$s)\n\nKészen áll a beküldésre?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">A kezdetnek a vége előtt kell lennie</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Előbb jelöljön meg két pontot az idősávon</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Szakasz előnézete a zökkenőmentesen kihagyás érdekében</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">A szakasz időzítésének kézi beállítása</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Akarja szerkeszteni a rész kezdetének vagy végének időzítését?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Érvénytelen idő van megadva</string>
+ <string name="revanced_sb_stats">Statisztikák</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">A statisztikák átmenetileg nem elérhetőek (API leállt)</string>
+ <string name="revanced_sb_stats_loading">Betöltés...</string>
+ <string name="revanced_sb_stats_sb_disabled">A SponsorBlock ki van kapcsolva</string>
+ <string name="revanced_sb_stats_username">Az ön felhasználóneve: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Koppintson ide a felhasználónév megváltoztatásához</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">A felhasználónév nem módosítható: Állapot: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">A felhasználónév sikeresen módosítva</string>
+ <string name="revanced_sb_stats_reputation">Az ön hírneve: <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions"><b>%s</b> szegmenst készítettél</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock ranglista</string>
+ <string name="revanced_sb_stats_saved"><b>%s</b> szegmenstől mentettél meg másokat</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Koppintson ide a globális statisztikák és a kiemelt közreműködők megtekintéséhez</string>
+ <string name="revanced_sb_stats_saved_sum">Ez <b>%s</b> az életükből.<br>Koppintson a ranglista megtekintéséhez</string>
+ <string name="revanced_sb_stats_self_saved"><b>%s</b> szakaszt kihagyott</string>
+ <string name="revanced_sb_stats_self_saved_sum">Ez <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Visszaállítja a kihagyott szakaszok számlálóját?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s óra %2$s perc</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s perc %2$s másodperc</string>
+ <string name="revanced_sb_stats_saved_second_format">%s másodperc</string>
+ <string name="revanced_sb_color_dot_label">Szín:</string>
+ <string name="revanced_sb_color_changed">A szín megváltoztatva</string>
+ <string name="revanced_sb_color_reset">Szín alaphelyzetbe</string>
+ <string name="revanced_sb_color_invalid">Érvénytelen színkód</string>
+ <string name="revanced_sb_reset_color">Színek visszaállítása</string>
+ <string name="revanced_sb_reset">Visszaállítás</string>
+ <string name="revanced_sb_about">Rólunk</string>
+ <string name="revanced_sb_about_api_sum">Az adatokat a SponsorBlock API biztosítja. Koppintson ide, ha többet szeretne megtudni és megtekintené a letöltéseket más platformokra</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Alkalmazásverzió hamisítása</string>
+ <string name="revanced_spoof_app_version_summary_on">A verzió hamisítva</string>
+ <string name="revanced_spoof_app_version_summary_off">A verzió nincs hamisítva</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Az alkalmazás verziója hamisítva lesz a YouTube egy régebbi verziójára.\n\nEz meg fogja változtatni az alkalmazás megjelenését és funkcióit, de váratlan hatásai is lehetnek.\n\nHa később kikapcsolja, ajánlott az alkalmazás adatainak törlése a hibák megelőzése érdekében.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Hamisított alkalmazásverzió célja</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - RYD visszaállítása Shorts inkognitó módban</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Széles videósebesség és minőség menü visszaállítása</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Könyvtár lap visszaállítása</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Régi lejátszási lista polc visszállítása</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Régi felhasználói felület visszaállítása</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Kezdőlap beállítása</string>
+ <string name="revanced_start_page_entry_0">Alapértelmezett</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Kezdőlap</string>
+ <string name="revanced_start_page_entry_2">Keresés</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Feliratkozások</string>
+ <string name="revanced_start_page_entry_4">Felfedezés</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Te lap</string>
+ <string name="revanced_start_page_entry_7">Kedvelt videók</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Előzmények</string>
+ <string name="revanced_start_page_entry_9">Felkapott</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">A Shorts lejátszás folytatásának kikapcsolása</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">A Shorts lejátszás nem indul el az alkalmazás indításakor</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">A Shorts lejátszás folytatódik az alkalmazás indításakor</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Táblagépes elrendezés engedélyezése</string>
+ <string name="revanced_tablet_layout_summary_on">Táblagépes elrendezés engedélyezve</string>
+ <string name="revanced_tablet_layout_summary_off">Táblagépes elrendezés letiltva</string>
+ <string name="revanced_tablet_layout_user_dialog_message">A közösségi posztok nem jelennek meg táblagépes elrendezésben</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minilejátszó</string>
+ <string name="revanced_miniplayer_screen_summary">Módosítsa az alkalmazáson belüli kisméretű lejátszó stílusát</string>
+ <string name="revanced_miniplayer_type_title">Minilejátszó típus</string>
+ <string name="revanced_miniplayer_type_entry_1">Eredeti</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Kibontás és bezárás gombok elrejtése</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">A gombok el vannak rejtve\n(csúsztassa a minilejátszót a kibontáshoz vagy bezáráshoz)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">A kibontás és bezárás gombok láthatók</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Alszövegek elrejtése</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Az alszövegek el vannak rejtve</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Alszövegek megjelennek</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Az előre és vissza ugrás gombok elrejtése</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Az előre és hátra ugrás rejtve van</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Az előre és hátra ugrás látható</string>
+ <string name="revanced_miniplayer_opacity_title">Átfedés átlátszósága</string>
+ <string name="revanced_miniplayer_opacity_summary">Az átlátszatlanság értéke 0 és 100 között van, ahol a 0 átlátszó</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">A minilejátszó fedvény átlátszatlanságának 0 és 100 között kell lennie</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Színátmenetes betöltési képernyő engedélyezése</string>
+ <string name="revanced_gradient_loading_screen_summary_on">A betöltési képernyő színátmenetes hatterű lesz</string>
+ <string name="revanced_gradient_loading_screen_summary_off">A betöltési képernyő egyszínű hátterű lesz</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Egyéni keresősáv szín engedélyezése</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Az egyéni keresősáv szín megjelenik</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Az egyéni keresősáv szín nem jelenik meg</string>
+ <string name="revanced_seekbar_custom_color_value_title">Egyéni keresősáv színe</string>
+ <string name="revanced_seekbar_custom_color_value_summary">A keresősáv színe</string>
+ <string name="revanced_seekbar_custom_color_invalid">Érvénytelen színérték. Az alap érték használata.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Kezdőlap</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Feliratkozás lap</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Te lap</string>
+ <string name="revanced_alt_thumbnail_player_title">Lejátszási listák, ajánlások</string>
+ <string name="revanced_alt_thumbnail_search_title">Keresési eredmények</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Eredeti miniatűrök</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow és eredeti miniatűrök</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow és pillanatképek</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Pillanatképek</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">A DeArrow közösségi bélyegképeket biztosít a YouTube videókhoz. Ezek a bélyegképek gyakran helytállóbbak, mint a YouTube által biztosítottak\n\nHa engedélyezve van, a videó URL-je elküldésre kerül az API szerverre, de más adat nem lesz elküldve. Ha egy videónak nincs DeArrow bélyegképe, akkor az eredeti vagy egy pillanatkép jelenik meg\n\nKoppintson ide, ha többet szeretne megtudni a DeArrow-ról</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Üzenet megjelenítése, ha az API nem elérhető</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Üzenet megjelenítése, ha a DeArrow nem elérhető</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Nem jelenik meg üzenet, ha a DeArrow nem elérhető</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API végpont</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">A DeArrow bélyegkép cache végpont URL-je</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Videó pillanatképek</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Pillanatképek minden videó elejéről/közepéről/végéről készülnek. Ezek a képek be vannak építve a YouTube-ba és nem használnak külső API-t</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Gyors pillanatképek használata</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Közepes minőségű pillanatképeket használ. A bélyegképek gyorsabban betöltődnek, de az élő közvetítések, kiadatlan vagy nagyon régi videók üres bélyegképeket jeleníthetnek meg</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Magas minőségű pillanatképeket használ</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Pillanatkép készítésének ideje</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Videó kezdete</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Videó közepe</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Videó vége</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">A DeArrow átmenetileg nem elérhető (állapot: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">A DeArrow átmenetileg nem elérhető</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVanced közlemények megjelenítése</string>
+ <string name="revanced_announcements_summary_on">A közlemények megjelenítve indításkor</string>
+ <string name="revanced_announcements_summary_off">Nem jelennek meg közlemények az indításkor</string>
+ <string name="revanced_announcements_enabled_summary">Közlemények megjelenítése indításkor</string>
+ <string name="revanced_announcements_connection_failed">Nem sikerült csatlakozni a közlemény szolgáltatóhoz</string>
+ <string name="revanced_announcements_dialog_dismiss">Elvetés</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Automatikus ismétlés engedélyezése</string>
+ <string name="revanced_auto_repeat_summary_on">Az automatikus ismétlés be van kapcsolva</string>
+ <string name="revanced_auto_repeat_summary_off">Az automatikus ismétlés ki van kapcsolva</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Eszközméret hamisítása</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Az eszköz méretei hamisítottak\n\nMagasabb videóminőség lehet elérhető, de tapasztalhat akadást lejátszás közben, rosszabb akkuidőt és egyéb, ismeretlen hatásokat</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Az eszköz méretei nincsenek hamisítva\n\nAz engedélyezéssel magasabb videóminőség érhető el</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Ennek engedélyezése a videólejátszás akadozását, rosszabb akkuidőt és ismeretlen hatásokat okozhat.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore beállítások</string>
+ <string name="microg_settings_summary">A GmsCore beállításai</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL átirányítások kikerülése</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL átirányítások kikerülve</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Az URL átirányítások nincsenek kikerülve</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Hivatkozások megnyitása a böngészőben</string>
+ <string name="revanced_external_browser_summary_on">Hivatkozások külső megnyitása</string>
+ <string name="revanced_external_browser_summary_off">Hivatkozások megnyitása az alkalmazásban</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Lejátszás a háttérben</string>
+ <string name="revanced_background_playback_summary">Ez a beállítás a Beállítások -> Háttér menüpontban található</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Nyomkövetési lekérdezési paraméter eltávolítása</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">A nyomkövetési lekérdezési paraméter eltávolítva a linkekből</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">A nyomkövetési lekérdezési paraméter nincs eltávolítva a linkekből</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Haptikus zoom letiltása</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">A haptikus zoom letiltva</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">A haptikus zoom engedélyezve</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatikus felbontás</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Felbontás változtatások mentése</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Felbontás változtatások alkalmazása az összes videóra</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Felbontás változtatások alkalmazása a jelenlegi videóra</string>
+ <string name="revanced_video_quality_default_wifi_title">Alapértelmezett videó minőség Wi-Fi hálózaton</string>
+ <string name="revanced_video_quality_default_mobile_title">Alapértelmezett videó minőség mobilhálózaton</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">A(z) %1$s alapértelmezett felbontása erre módosult: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Sebesség párbeszédpanel megjelenítése</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">A gomb megjelenik</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">A gomb nem látható</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Egyedi lejátszási sebesség</string>
+ <string name="revanced_custom_playback_speeds_summary">Az elérhető lejátszási sebességek módosítása vagy hozzáadás</string>
+ <string name="revanced_custom_playback_speeds_invalid">Ennek kevesebbnek kell lenniük, mint %s. Alap értékek használata.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Érvénytelen sebesség. Az alap értékek használata.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Lejátszási sebesség módosításainak megjegyzése</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">A lejátszási sebesség módosítása minden videóra érvényes</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">A lejátszási sebesség módosítása csak a jelenlegi videóra érvényes</string>
+ <string name="revanced_playback_speed_default_title">Alapértelmezett lejátszási sebesség</string>
+ <string name="revanced_remember_playback_speed_toast">Alapértelmezett sebesség módosítva: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Régi videóminőség menü visszaállítása</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">A régi videóminőség menü jelenik meg</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">A régi videóminőség menü nem jelenik meg</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Csúsztatás engedélyezése a kereséshez</string>
+ <string name="revanced_slide_to_seek_summary_on">A csúsztatás a kereséshez engedélyezve van</string>
+ <string name="revanced_slide_to_seek_summary_off">A csúsztatás a kereséshez nincs engedélyezve</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Hamis kliens</string>
+ <string name="revanced_spoof_client_screen_summary">Hamisítsa meg a klienst a lejátszási problémák elkerülése érdekében</string>
+ <string name="revanced_spoof_client_title">Hamis kliens</string>
+ <string name="revanced_spoof_client_summary_on">A kliens meghamisítva</string>
+ <string name="revanced_spoof_client_summary_off">A kliens nincs hamisítva\n\nLehet, hogy a videólejátszás nem működik</string>
+ <string name="revanced_spoof_client_user_dialog_message">A beállítás kikapcsolása videolejátszási problémákat okozhat.</string>
+ <string name="revanced_spoof_client_use_ios_title">Hamis kliens iOS-re</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">A kliens jelenleg iOS-re van hamisítva\n\nA mellékhatások a következők:\n• Nincs HDR-videó\n• Előfordulhat, hogy a megtekintési előzmények nem működnek\n• Hiányozhatnak a jobb videóminőségek\n• Az élő közvetítések nem játszhatók le csak hangként\n• Élő a streamek nem érhetők el Android 8.0 rendszeren</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Hamis kliens miniatűrök nem érhetők el (API időtúllépés)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">A hamis kliens miniatűrök átmenetileg nem érhetők el: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Audio hirdetések letiltása</string>
+ <string name="revanced_block_audio_ads_summary_on">Az audiohirdetések le vannak tiltva</string>
+ <string name="revanced_block_audio_ads_summary_off">Az audiohirdetések letiltása fel van oldva</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">A(z) %s nem érhető el. A reklámok megjelenhetnek. Próbáljon egy másik reklámblokkolóra váltani.</string>
+ <string name="revanced_embedded_ads_service_failed">A(z) %s szerver hibát jelzett. A reklámok megjelenhetnek. Próbáljon egy másik reklámblokkolóra váltani.</string>
+ <string name="revanced_block_embedded_ads_title">Beágyazott videóhirdetések blokkolása</string>
+ <string name="revanced_block_embedded_ads_entry_1">Letiltva</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Videós hirdetések blokkolása</string>
+ <string name="revanced_block_video_ads_summary_on">Videós hirdetések blokkolva</string>
+ <string name="revanced_block_video_ads_summary_off">A videós hirdetések nincsenek blokkolva</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">üzenet törölve</string>
+ <string name="revanced_show_deleted_messages_title">Törölt üzenetek megjelenítése</string>
+ <string name="revanced_show_deleted_messages_entry_1">Ne mutassa a törölt üzeneteket</string>
+ <string name="revanced_show_deleted_messages_entry_2">A törölt üzenetek elrejtése egy spoiler mögé</string>
+ <string name="revanced_show_deleted_messages_entry_3">Törölt üzenetek megjelenítése áthúzott szövegként</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Csatornapontok automatikus gyűjtése</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">A csatornapontok automatikusan begyűjtődnek</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">A csatornapontok nem gyűjtődnek be automatikusan</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch hibakeresési mód bekapcsolása</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch hibakeresési mód bekapcsolva (nem ajánlott)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch hibakeresési mód kikapcsolva</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced beállítások</string>
+ <string name="revanced_ads_screen_title">Hirdetések</string>
+ <string name="revanced_ads_screen_summary">Hirdetés blokkolás beállításai</string>
+ <string name="revanced_chat_screen_title">Csevegés</string>
+ <string name="revanced_chat_screen_summary">Csevegés beállításai</string>
+ <string name="revanced_misc_screen_title">Egyéb</string>
+ <string name="revanced_misc_screen_summary">Különféle beállítások</string>
+ <string name="revanced_general_category_title">Általános beállítások</string>
+ <string name="revanced_other_category_title">Egyéb beállítások</string>
+ <string name="revanced_client_ads_category_title">Kliensoldali hirdetések</string>
+ <string name="revanced_surestream_ads_category_title">Szerveroldali surestream hirdetések</string>
+ <string name="revanced_twitch_debug_title">Hibakeresési naplózás</string>
+ <string name="revanced_twitch_debug_summary_on">A hibakeresési naplók engedélyezve vannak</string>
+ <string name="revanced_twitch_debug_summary_off">A hibakeresési naplók le vannak tiltva</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-hy-rAM/strings.xml b/src/main/resources/addresources/values-hy-rAM/strings.xml
new file mode 100644
index 0000000000..c4481f3e8c
--- /dev/null
+++ b/src/main/resources/addresources/values-hy-rAM/strings.xml
@@ -0,0 +1,262 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Ծրագրի մասին</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Ծրագրի մասին</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Բեռնվում է...</string>
+ <string name="revanced_sb_about">Ծրագրի մասին</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Անջատված է</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-in-rID/strings.xml b/src/main/resources/addresources/values-in-rID/strings.xml
new file mode 100644
index 0000000000..782958f7fe
--- /dev/null
+++ b/src/main/resources/addresources/values-in-rID/strings.xml
@@ -0,0 +1,476 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Apakah Anda ingin melanjutkan?</string>
+ <string name="revanced_settings_reset">Setel ulang</string>
+ <string name="revanced_settings_restart_title">Segarkan dan mulai ulang</string>
+ <string name="revanced_settings_restart">Mulai ulang</string>
+ <string name="revanced_settings_import">Impor</string>
+ <string name="revanced_settings_import_copy">Salin</string>
+ <string name="revanced_settings_import_reset">Pengaturan ReVanced direset ke setelan awal</string>
+ <string name="revanced_settings_import_success">Mengimpor setelan %d</string>
+ <string name="revanced_settings_import_failure_parse">Impor gagal: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore belum dipasang. Pasang dulu.</string>
+ <string name="gms_core_dialog_title">Perlu tindakan</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">.</string>
+ <string name="gms_core_dialog_open_website_text">Buka situs</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">.</string>
+ <string name="gms_core_dialog_continue_text">Lanjut</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">Anda menggunakan ReVanced Patches versi <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Catatan</string>
+ <string name="revanced_settings_about_links_dev_body">Versi ini prarilis dan kemungkinan akan ada masalah tak terduga</string>
+ <string name="revanced_settings_about_links_header">Tautan resmi</string>
+ <string name="revanced_pref_import_export_title">Impor / Ekspor</string>
+ <string name="revanced_pref_import_export_summary">Impor / Ekspor setelan ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Tentang</string>
+ <string name="revanced_settings_screen_01_ads_title">Iklan</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Thumbnail alternatif</string>
+ <string name="revanced_settings_screen_03_feed_title">Feed</string>
+ <string name="revanced_settings_screen_04_player_title">Pemutar</string>
+ <string name="revanced_settings_screen_05_general_title">Layout umum</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Progressbar</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Kontrol geser</string>
+ <string name="revanced_settings_screen_11_misc_title">Lainnya</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Debugging</string>
+ <string name="revanced_debug_screen_summary">Mengaktifkan atau menonaktifkan opsi debugging</string>
+ <string name="revanced_debug_title">Catatan debug</string>
+ <string name="revanced_debug_summary_on">Log debug diaktifkan</string>
+ <string name="revanced_debug_summary_off">Log debug dinonaktifkan</string>
+ <string name="revanced_debug_protobuffer_title">Buffer protokol log</string>
+ <string name="revanced_debug_protobuffer_summary_on">Log debug termasuk buffer proto</string>
+ <string name="revanced_debug_protobuffer_summary_off">Log debug tidak menyertakan buffer proto</string>
+ <string name="revanced_debug_stacktrace_title">Jejak log stack</string>
+ <string name="revanced_debug_stacktrace_summary_on">Log debug menyertakan jejak stack</string>
+ <string name="revanced_debug_stacktrace_summary_off">Log debug tidak menyertakan jejak stack</string>
+ <string name="revanced_debug_toast_on_error_title">Tampilkan pesan timbul error di ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Pesan timbul ditampilkan jika terjadi kesalahan</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Pesan timbul tidak ditampilkan jika terjadi kesalahan</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Menonaktifkan pesan timbul kesalahan akan menyembunyikan semua notifikasi kesalahan ReVanced.\n\nAnda tidak akan diberitahu tentang kejadian yang tidak terduga.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Nonaktifkan kilau tombol suka / langganan</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Tombol suka dan langganan tidak akan berkilau saat ditekan</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Tombol suka dan langganan akan berkilau saat ditekan</string>
+ <string name="revanced_hide_gray_separator_title">S\'bunyikan pemisah abu-abu</string>
+ <string name="revanced_hide_gray_separator_summary_on">Pemisah abu-abu disembunyikan</string>
+ <string name="revanced_hide_gray_separator_summary_off">Pemisah abu-abu ditampilkan</string>
+ <string name="revanced_hide_channel_watermark_title">S\"bunyikan tanda air saluran</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Watermark disembunyikan</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Watermark ditampilkan</string>
+ <string name="revanced_hide_horizontal_shelves_title">S\'bunyikan rak mendatar</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Rak berikut disembunyikan:\n• Berita sela\n• Lanjut menonton\n• Jelajahi saluran lain\n• Belanja\n• Tonton lagi</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Rak ditampilkan</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">S\'bunyikan \'Gabung\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Tombol disembunyikan</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Tombol ditampilkan</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">S\'bunyikan rak \'Untuk Anda\' di laman saluran</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Rak disembunyikan</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Rak ditampilkan</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">S\'bunyikan \'Beri tahu saya\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Tombol disembunyikan</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Tombol ditampilkan</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">S\'bunyikan anjuran \'Juga ditonton orang\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Anjuran disembunyikan</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Anjuran ditampilkan</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Sembunyikan tombol \'Tampilkan Lebih\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Tombol disembunyikan</string>
+ <string name="revanced_hide_show_more_button_summary_off">Tombol ditampilkan</string>
+ <string name="revanced_hide_timed_reactions_title">Sembunyikan waktu reaksi</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Waktu reaksi disembunyikan</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Tampilkan Waktu Reaksi</string>
+ <string name="revanced_hide_search_result_shelf_header_title">.</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Sembunyikan Shelf Header</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Tampilkan Shelf Header</string>
+ <string name="revanced_hide_channel_guidelines_title">Sembunyikan Panduan Channel</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Panduan channel disembunyikan</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Panduan channel di tampilkan</string>
+ <string name="revanced_hide_expandable_chip_title"></string>
+ <string name="revanced_hide_expandable_chip_summary_on">Chip yang dapat diperluas disembunyikan</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Chip yang dapat diperluas ditampilkan</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Sembunyikan footer menu kualitas video</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Footer menu kualitas video disembunyikan</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Footer menu kualitas video ditampilkan</string>
+ <string name="revanced_hide_community_posts_title">Sembunyikan postingan komunitas</string>
+ <string name="revanced_hide_community_posts_summary_on">Postingan komunitas disembunyikan</string>
+ <string name="revanced_hide_community_posts_summary_off">Postingan komunitas ditampilkan</string>
+ <string name="revanced_hide_compact_banner_title">Sembunyikan banner padat</string>
+ <string name="revanced_hide_compact_banner_summary_on">Banner padat disembunyikan</string>
+ <string name="revanced_hide_compact_banner_summary_off">Banner padat ditampilkan</string>
+ <string name="revanced_hide_channel_bar_title">S\'bunyikan bilah saluran</string>
+ <string name="revanced_hide_channel_bar_summary_on">Bilah saluran disembunyikan</string>
+ <string name="revanced_hide_description_components_screen_title">Keterangan video</string>
+ <string name="revanced_hide_description_components_screen_summary">Sembunyi/tampilkan komponen keterangan video</string>
+ <string name="revanced_custom_filter_screen_title">Penyaring kustom</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_products_banner_title">Sembunyikan banner untuk melihat produk</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner disembunyikan</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner ditampilkan</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">S\'bunyikan tombol \'Lihat toko\' di laman saluran</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Tombol disembunyikan</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Tombol ditampilkan</string>
+ <string name="revanced_hide_merchandise_banners_title">Sembunyikan banner merchandise</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Banner merchandise disembunyikan</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Banner merchandise ditampilkan</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">Tombol membagikan layar disembunyikan</string>
+ <string name="revanced_hide_cast_button_summary_off">Tombol membagikan layar ditampilkan</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_summary_on">Tombol shorts disembunyikan</string>
+ <string name="revanced_hide_shorts_button_summary_off">Tomtol shorts ditampilkan</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Tombol Buat diganti dengan tombol Pemberitahuan\n\nCatatan: Iklan video juga akan disembunyikan paksa</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_hide_comments_section_summary_on">Bagian komentar disembunyikan</string>
+ <string name="revanced_hide_comments_section_summary_off">Bagian komentar ditampilkan</string>
+ <string name="revanced_hide_comments_thanks_button_title">S\'bunyikan tmbl terima kasih</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Tmbl terima kasih disembunyikan</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Tmbl terima kasih ditampilkan</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Kartu info disembunyikan</string>
+ <string name="revanced_hide_info_cards_summary_off">Kartu info ditampilkan</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_tagged_products_title">Sembunyikan produk yang ditag</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Produk yang ditag disembunyikan</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Produk yang ditag ditampilkan</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_video_title_title">S\'bunyikan judul video</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Tersembunyi</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Tentang</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Aktifkan SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">Tampilan</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">Lihat pedoman</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Sudah dibaca</string>
+ <string name="revanced_sb_guidelines_popup_open">Tunjukkan</string>
+ <string name="revanced_sb_general">Umum</string>
+ <string name="revanced_sb_general_min_duration">Durasi minimum segmen</string>
+ <string name="revanced_sb_general_uuid_sum">Ini harus dijaga kerahasiaannya. Seperti kata sandi dan tidak disarankan untuk dibagikan dengan siapa pun. Jika seseorang mendapatkan ini, mereka dapat menyamar sebagai Anda</string>
+ <string name="revanced_sb_general_api_url">Ubah URL API</string>
+ <string name="revanced_sb_api_url_reset">Reset URL API</string>
+ <string name="revanced_sb_api_url_changed">URL API terubah</string>
+ <string name="revanced_sb_settings_ie">Impor/Ekspor pengaturan</string>
+ <string name="revanced_sb_settings_copy">Salin</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promosi dibayar, tautan dibayar dan iklan langsung. Tidak untuk promosi diri sendiri atau dukungan gratis untuk gerakan/kreator/website/produk yang mereka suka</string>
+ <string name="revanced_sb_segments_selfpromo">Tidak Dibayar/Promosi Diri Sendiri</string>
+ <string name="revanced_sb_segments_interaction">Pengingat Interaksi (Berlangganan)</string>
+ <string name="revanced_sb_segments_intro">Jeda/Animasi Intro</string>
+ <string name="revanced_sb_segments_outro">Kartu Akhir/Kredit</string>
+ <string name="revanced_sb_segments_filler">Pengisi Tidak Relevan/Lelucon</string>
+ <string name="revanced_sb_segments_nomusic">Musik: Bagian Non-Musik</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Lewati segmen</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor dilewati</string>
+ <string name="revanced_sb_skipped_selfpromo">Promosi diri sendiri dilewati</string>
+ <string name="revanced_sb_skipped_interaction">Pengingat mengganggu dilewati</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro dilewati</string>
+ <string name="revanced_sb_skipped_outro">Outro dilewati</string>
+ <string name="revanced_sb_skipped_preview_beginning">Pratinjau dilewati</string>
+ <string name="revanced_sb_skipped_preview_middle">Pratinjau dilewati</string>
+ <string name="revanced_sb_skipped_filler">Pengisi dilewati</string>
+ <string name="revanced_sb_skipped_nomusic">Keheningan dilewati</string>
+ <string name="revanced_sb_skipped_unsubmitted">Melewati segmen yang belum dikirim</string>
+ <string name="revanced_sb_skip_automatically">Lewati otomatis</string>
+ <string name="revanced_sb_skip_showbutton">Tampilkan tombol lewati</string>
+ <string name="revanced_sb_skip_ignore">Nonaktifkan</string>
+ <string name="revanced_sb_submit_failed_invalid">Tak dapat mengirim segmen: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock sementara anjlok</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Tak dapat mengirim segmen (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Tak dapat mengirim segmen.\nJumlah Dibatasi (terlalu banyak dari IP yang sama)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Tidak dapat mengirim segmen: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Tidak dapat mengirim segmen.\nSudah ada</string>
+ <string name="revanced_sb_submit_succeeded">Segmen berhasil terkirim</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">Suka</string>
+ <string name="revanced_sb_vote_downvote">Tidak suka</string>
+ <string name="revanced_sb_vote_category">Ubah kategori</string>
+ <string name="revanced_sb_vote_no_segments">Tidak ada segmen untuk di vote</string>
+ <string name="revanced_sb_new_segment_choose_category">Pilih kategori segmen</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategori dinonaktifkan di pengaturan. Aktifkan untuk kirim.</string>
+ <string name="revanced_sb_new_segment_title">Segmen SponsorBlock Baru</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Atur %1$02d:%2$02d:%3$03d sebagai awal dan akhir dari segmen?</string>
+ <string name="revanced_sb_new_segment_mark_start">awal</string>
+ <string name="revanced_sb_new_segment_mark_end">akhir</string>
+ <string name="revanced_sb_new_segment_now">sekarang</string>
+ <string name="revanced_sb_new_segment_time_start">Waktu segmen dimulai pada</string>
+ <string name="revanced_sb_new_segment_time_end">Waktu segmen diakhiri pada</string>
+ <string name="revanced_sb_new_segment_confirm_title">Apakah waktunya benar?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmen dari\n\n%1$s\nke\n%2$s\n\n(%3$s)\n\nSiap dikirim?</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Tandai terlebih dahulu dua lokasi di kotak waktu</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Atur pengaturan tempo segmen secara manual</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Apakah Anda ingin mengubah tempo untuk awal atau akhir dari segmen?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Waktu yang diberikan tidak valid</string>
+ <string name="revanced_sb_stats">Statistik</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Memuat...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock dinonaktifkan</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Tidak dapat mengubah nama pengguna: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nama pengguna berhasil diubah</string>
+ <string name="revanced_sb_color_changed">Warna terubah</string>
+ <string name="revanced_sb_color_reset">Reset warna</string>
+ <string name="revanced_sb_reset">Setel ulang</string>
+ <string name="revanced_sb_about">Tentang</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Bawaan</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Pemutar Mini</string>
+ <string name="revanced_miniplayer_type_entry_1">Orisinal</string>
+ <string name="revanced_miniplayer_type_entry_2">Ponsel</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_subtext_title">S\'bunyikan subteks</string>
+ <string name="revanced_miniplayer_opacity_title">Kelegapan hamparan</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Abaikan</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensi perangkat dipalsukan\n\nAkan ada resolusi video lebih tinggi tapi video jadi patah-patah, baterai terkuras, dan efek samping tidak jelas</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensi perangkat tidak dipalsukan\n\nMengaktifkan ini akan ada resolusi video lebih tinggi</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Mengaktifkan ini menyebabkan video jadi patah-patah, baterai terkuras, dan efek samping tidak jelas.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Putar di latar belakang</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_summary_on">Tombol ditampilkan</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Tombol tidak ditampilkan</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Nonaktif</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_ads_screen_title">Iklan</string>
+ <string name="revanced_misc_screen_title">Lainnya</string>
+ <string name="revanced_twitch_debug_title">Log awakutu</string>
+ <string name="revanced_twitch_debug_summary_on">Log awakutu diaktifkan</string>
+ <string name="revanced_twitch_debug_summary_off">Log awakutu dinonaktifkan</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-is-rIS/strings.xml b/src/main/resources/addresources/values-is-rIS/strings.xml
new file mode 100644
index 0000000000..f94bebc47e
--- /dev/null
+++ b/src/main/resources/addresources/values-is-rIS/strings.xml
@@ -0,0 +1,268 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Endurstilla</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Um</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Villuleit</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Um</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Útlit</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Er að halda...</string>
+ <string name="revanced_sb_reset">Endurstilla</string>
+ <string name="revanced_sb_about">Um</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Sjálfgefinn</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Loka</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Óvirkt</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-it-rIT/strings.xml b/src/main/resources/addresources/values-it-rIT/strings.xml
new file mode 100644
index 0000000000..1c66de0e76
--- /dev/null
+++ b/src/main/resources/addresources/values-it-rIT/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Sei sicuro di voler continuare?</string>
+ <string name="revanced_settings_reset">Reimposta</string>
+ <string name="revanced_settings_restart_title">Aggiorna e riavvia</string>
+ <string name="revanced_settings_restart">Riavvia</string>
+ <string name="revanced_settings_import">Importa</string>
+ <string name="revanced_settings_import_copy">Copia</string>
+ <string name="revanced_settings_import_reset">Impostazioni avanzate reimpostate a quelle predefinite</string>
+ <string name="revanced_settings_import_success">Importate %d impostazioni</string>
+ <string name="revanced_settings_import_failure_parse">Importazione fallita: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore non è installato. Installarlo.</string>
+ <string name="gms_core_dialog_title">Azione necessaria</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore non ha il permesso di eseguire in background.\n\nSegui la guida \"Non uccidere la mia app\" per il tuo telefono e applica le istruzioni per l\'installazione di MicroG.\n\nQuesto è necessario perché l\'app funzioni.</string>
+ <string name="gms_core_dialog_open_website_text">Apri sito</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Le ottimizzazioni della batteria MicroG GmsCore devono essere disabilitate per evitare problemi.\n\nTocca il pulsante continua e disabilita le ottimizzazioni della batteria.</string>
+ <string name="gms_core_dialog_continue_text">Continua</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">Stai usando la versione <i>%s</i> delle patch migliorate</string>
+ <string name="revanced_settings_about_links_dev_header">Nota</string>
+ <string name="revanced_settings_about_links_dev_body">Questa versione è una pre-release e potresti riscontrare problemi inaspettati</string>
+ <string name="revanced_settings_about_links_header">Link ufficiali</string>
+ <string name="revanced_pref_import_export_title">Importa / Esporta</string>
+ <string name="revanced_pref_import_export_summary">Importa / Esporta impostazioni ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Informazioni</string>
+ <string name="revanced_settings_screen_01_ads_title">Annunci</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniature alternative</string>
+ <string name="revanced_settings_screen_03_feed_title">Feed</string>
+ <string name="revanced_settings_screen_04_player_title">Riproduttore</string>
+ <string name="revanced_settings_screen_05_general_title">Interfaccia generale</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra di ricerca</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controlli con gesto</string>
+ <string name="revanced_settings_screen_11_misc_title">Varie</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Debugging</string>
+ <string name="revanced_debug_screen_summary">Abilita o disabilita impostazioni di debug</string>
+ <string name="revanced_debug_title">Logging di debug</string>
+ <string name="revanced_debug_summary_on">I log di debug sono abilitati</string>
+ <string name="revanced_debug_summary_off">I log di debug sono disabilitati</string>
+ <string name="revanced_debug_protobuffer_title">Buffer di protocollo per log</string>
+ <string name="revanced_debug_protobuffer_summary_on">I log di debug includono proto buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">I log di debug non includono proto buffer</string>
+ <string name="revanced_debug_stacktrace_title">Registra stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_on">I log di debug includono lo stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">I log di debug non includono lo stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Mostra messaggio per errore ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Messaggio mostrato se si verifica un errore</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Messaggio non mostrato se si verifica un errore</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Disattivando i messaggi di errore si nascondono tutte le notifiche di errore di ReVanced.\n\nNon sarai avvisato di alcun evento inatteso.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Disabilita il bagliore del pulsante di / sottoscrizione</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Come e il pulsante di sottoscrizione non brillerà quando menzionato</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Come e il pulsante di sottoscrizione brillerà quando menzionato</string>
+ <string name="revanced_hide_gray_separator_title">Nascondi il separatore grigio</string>
+ <string name="revanced_hide_gray_separator_summary_on">I separatori grigi sono nascosti</string>
+ <string name="revanced_hide_gray_separator_summary_off">I separatori grigi sono visibili</string>
+ <string name="revanced_hide_channel_watermark_title">Nascondi la filigrana del canale</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Filigrana nascosta</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Filigrana visibile</string>
+ <string name="revanced_hide_horizontal_shelves_title">Nascondi scaffali orizzontali</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">I ripiani sono nascosti come:\n• Rompi notizie\n• Continua a guardare\n• Esplora altri canali\n• Shopping\n• Guarda di nuovo</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">I ripiani sono mostrati</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Nascondi il pulsante \'Unisci\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Il bottone è nascosto</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Il bottone è visibile</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Nascondi lo scaffale \'Per te\' nella pagina del canale</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Entrata dei \'Per te\' nascosta</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Entrata dei \'Per te\' visibile</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Nascondi il pulsante \'Notifica\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Il bottone è nascosto</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Il bottone è visibile</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Nascondi le raccomandazioni \'Persone anche osservate\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Suggerimenti nascosti</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Suggerimenti visibili</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Nascondi il pulsante \'Mostra di più\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Il bottone è nascosto</string>
+ <string name="revanced_hide_show_more_button_summary_off">Il bottone è visibile</string>
+ <string name="revanced_hide_timed_reactions_title">Nascondi le reazioni a tempo</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Reazioni a tempo nascoste</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Reazioni a tempo visibili</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Nascondi intestazione delle entrate dei risultati di ricerca</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Intestazioni visibili</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Intestazioni visibili</string>
+ <string name="revanced_hide_channel_guidelines_title">Nascondi linee guida del canale</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Linee guida del canale nascoste</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Linee guida del canale visibili</string>
+ <string name="revanced_hide_expandable_chip_title">Nascondi il frammento espandibile sotto i video</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Frammenti espandibili nascosti</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Frammenti espandibili visibili</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Nascondi piè di pagina del menu qualità video</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Piè di pagina del menu di qualità video nascosto</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Piè di pagina del menu di qualità video visibile</string>
+ <string name="revanced_hide_community_posts_title">Nascondi i post della community</string>
+ <string name="revanced_hide_community_posts_summary_on">Post della community nascosti</string>
+ <string name="revanced_hide_community_posts_summary_off">Post della community visibili</string>
+ <string name="revanced_hide_compact_banner_title">Nascondi i banner compatti</string>
+ <string name="revanced_hide_compact_banner_summary_on">Banner compatti nascosti</string>
+ <string name="revanced_hide_compact_banner_summary_off">Banner compatti visibili</string>
+ <string name="revanced_hide_movies_section_title">Nascondi sezione film</string>
+ <string name="revanced_hide_movies_section_summary_on">Sezione film nascosta</string>
+ <string name="revanced_hide_movies_section_summary_off">Sezione film visibile</string>
+ <string name="revanced_hide_feed_survey_title">Nascondi sondaggi nel feed</string>
+ <string name="revanced_hide_feed_survey_summary_on">Sondaggi nel feed nascosti</string>
+ <string name="revanced_hide_feed_survey_summary_off">Sondaggi nel feed visibili</string>
+ <string name="revanced_hide_community_guidelines_title">Nascondi linee guida della community</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Linee guida della community nascoste</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Linee guida della community visibili</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Nascondi le linee guida della comunità degli abbonati</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Le linee guida della comunità degli abbonati sono nascoste</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Le linee guida della comunità degli abbonati sono mostrate</string>
+ <string name="revanced_hide_channel_member_shelf_title">Nascondi entrata dei membri del canale</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Entrata dei membri del canale nascosta</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Entrata dei membri del canale visibile</string>
+ <string name="revanced_hide_emergency_box_title">Nascondi riquadri di emergenza</string>
+ <string name="revanced_hide_emergency_box_summary_on">Riquadri di emergenza nascosti</string>
+ <string name="revanced_hide_emergency_box_summary_off">Riquadri di emergenza visibili</string>
+ <string name="revanced_hide_info_panels_title">Nascondi pannello delle info</string>
+ <string name="revanced_hide_info_panels_summary_on">Pannelli delle info nascosti</string>
+ <string name="revanced_hide_info_panels_summary_off">Pannelli delle info visibili</string>
+ <string name="revanced_hide_medical_panels_title">Nascondi pannelli medici</string>
+ <string name="revanced_hide_medical_panels_summary_on">Pannelli medici nascosti</string>
+ <string name="revanced_hide_medical_panels_summary_off">Pannelli medici visibili</string>
+ <string name="revanced_hide_channel_bar_title">Nascondi barra del canale</string>
+ <string name="revanced_hide_channel_bar_summary_on">Barra del canale nascosta</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra del canale visibile</string>
+ <string name="revanced_hide_playables_title">Nascondi Playables</string>
+ <string name="revanced_hide_playables_summary_on">I riproducibili sono nascosti</string>
+ <string name="revanced_hide_playables_summary_off">I riproducibili sono mostrati</string>
+ <string name="revanced_hide_quick_actions_title">Nascondi azioni rapide in schermo interno</string>
+ <string name="revanced_hide_quick_actions_summary_on">Azioni rapide nascoste</string>
+ <string name="revanced_hide_quick_actions_summary_off">Azioni rapide visibili</string>
+ <string name="revanced_hide_related_videos_title">Nascondi video correlati nelle azioni rapide</string>
+ <string name="revanced_hide_related_videos_summary_on">Video correlati nascosti</string>
+ <string name="revanced_hide_related_videos_summary_off">Video correlati visibili</string>
+ <string name="revanced_hide_image_shelf_title">Nascondi lo scaffale immagine nei risultati di ricerca</string>
+ <string name="revanced_hide_image_shelf_summary_on">Lo scaffale dell\'immagine è nascosto</string>
+ <string name="revanced_hide_image_shelf_summary_off">Lo scaffale immagine è mostrato</string>
+ <string name="revanced_hide_latest_posts_ads_title">Nascondi i post più recenti</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Gli ultimi post sono nascosti</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Gli ultimi post sono mostrati</string>
+ <string name="revanced_hide_mix_playlists_title">Nascondi playlist mix</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Le playlist Mix sono nascoste</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Vengono mostrate playlist di Mix</string>
+ <string name="revanced_hide_artist_cards_title">Nascondi le carte artista</string>
+ <string name="revanced_hide_artist_cards_summary_on">Le carte dell\'artista sono nascoste</string>
+ <string name="revanced_hide_artist_cards_summary_off">Vengono mostrate le carte dell\'artista</string>
+ <string name="revanced_hide_chips_shelf_title">Nascondi scaffale chip</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Lo scaffale di chip è nascosto</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Lo scaffale delle fiches è mostrato</string>
+ <string name="revanced_hide_attributes_section_title">Nascondi la sezione attributi</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Luoghi in evidenza\', Le sezioni Giochi e Musica sono nascoste</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Luoghi in evidenza\', Le sezioni Giochi e Musica sono mostrate</string>
+ <string name="revanced_hide_chapters_section_title">Nascondi sezione Capitoli</string>
+ <string name="revanced_hide_chapters_section_summary_on">La sezione capitoli è nascosta</string>
+ <string name="revanced_hide_chapters_section_summary_off">La sezione dei capitoli è mostrata</string>
+ <string name="revanced_hide_podcast_section_title">Nascondi la sezione \'Esplora il podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">La sezione \'Esplora il podcast\' è nascosta</string>
+ <string name="revanced_hide_podcast_section_summary_off">La sezione \'Esplora il podcast\' è mostrata</string>
+ <string name="revanced_hide_info_cards_section_title">Nascondi sezione schede info</string>
+ <string name="revanced_hide_info_cards_section_summary_on">La sezione delle schede informative è nascosta</string>
+ <string name="revanced_hide_info_cards_section_summary_off">La sezione delle schede informative è mostrata</string>
+ <string name="revanced_hide_transcript_section_title">Nascondi sezione Trascrizione</string>
+ <string name="revanced_hide_transcript_section_summary_on">La sezione della trascrizione è nascosta</string>
+ <string name="revanced_hide_transcript_section_summary_off">La sezione della trascrizione è mostrata</string>
+ <string name="revanced_hide_description_components_screen_title">Descrizione video</string>
+ <string name="revanced_hide_description_components_screen_summary">Nascondi o mostra i componenti della descrizione video</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizzato</string>
+ <string name="revanced_custom_filter_screen_summary">Nascondi componenti utilizzando filtri personalizzati</string>
+ <string name="revanced_custom_filter_title">Abilita filtro personalizzato</string>
+ <string name="revanced_custom_filter_summary_on">Filtro personalizzato abilitato</string>
+ <string name="revanced_custom_filter_summary_off">Il filtro personalizzato è disabilitato</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizzato</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Elenco delle stringhe di generatore di percorsi componenti da filtrare separate da una nuova riga</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizzato non valido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Nascondi contenuto di parole chiave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Nascondi la ricerca e alimenta i video usando i filtri per le parole chiave</string>
+ <string name="revanced_hide_keyword_content_home_title">Nascondi i video home per parole chiave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">I video nella scheda home sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">I video nella scheda home non sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Nascondi video in abbonamento per parole chiave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">I video nella scheda abbonamenti sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">I video nella scheda abbonamenti non sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_search_title">Nascondi i risultati della ricerca per parole chiave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">I risultati della ricerca sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">I risultati della ricerca non sono filtrati per parole chiave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Parole chiave da nascondere</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Parole chiave e frasi da nascondere, separate da nuove linee\n\nLe parole con lettere maiuscole nel centro devono essere inserite con il budello (ie: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Informazioni sul filtro delle parole chiave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Home/Abbonamento/I risultati della ricerca sono filtrati per nascondere il contenuto che corrisponde alle frasi di parole chiave\n\nLimitazioni\n• Alcuni Shorts potrebbero non essere nascosti\n• Alcuni componenti dell\'interfaccia utente potrebbero non essere nascosti\n• La ricerca di una parola chiave potrebbe non mostrare alcun risultato</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Parola chiave non valida. Impossibile utilizzare: \'%s\' come filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Parola chiave non valida. \'%1$s\' è minore di %2$d caratteri</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Parola chiave \'$s\' nasconderà tutti i video</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Nascondi gli annunci generali</string>
+ <string name="revanced_hide_general_ads_summary_on">Gli annunci generali sono nascosti</string>
+ <string name="revanced_hide_general_ads_summary_off">Gli annunci generali sono mostrati</string>
+ <string name="revanced_hide_fullscreen_ads_title">Nascondi gli annunci a schermo intero</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Gli annunci a schermo intero sono nascosti\n\nQuesta funzione è disponibile solo per i vecchi dispositivi</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Gli annunci a schermo intero sono mostrati</string>
+ <string name="revanced_hide_buttoned_ads_title">Nascondi gli annunci pulsante</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Gli annunci a bottoni sono nascosti</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Gli annunci a bottoni sono mostrati</string>
+ <string name="revanced_hide_paid_promotion_label_title">Nascondi etichetta promozione a pagamento</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">L\'etichetta promozionale a pagamento è nascosta</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">L\'etichetta promozionale pagata è mostrata</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Nascondi le carte autosponsorizzate</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Le carte autosponsorizzate sono nascoste</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Vengono mostrate le carte autosponsorizzate</string>
+ <string name="revanced_hide_products_banner_title">Nascondi banner per visualizzare i prodotti</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner nascosto</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner mostrato</string>
+ <string name="revanced_hide_shopping_links_title">Nascondi link agli acquisti nella descrizione del video</string>
+ <string name="revanced_hide_shopping_links_summary_on">I link commerciali sono nascosti</string>
+ <string name="revanced_hide_shopping_links_summary_off">I collegamenti commerciali sono mostrati</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Nascondi il pulsante \'Visita negozio\' nelle pagine del canale</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Il bottone è nascosto</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Il bottone è visibile</string>
+ <string name="revanced_hide_web_search_results_title">Nascondi i risultati della ricerca web</string>
+ <string name="revanced_hide_web_search_results_summary_on">I risultati della ricerca web sono nascosti</string>
+ <string name="revanced_hide_web_search_results_summary_off">I risultati della ricerca web sono mostrati</string>
+ <string name="revanced_hide_merchandise_banners_title">Nascondi banner merchandise</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">I banner merceologici sono nascosti</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Vengono mostrati i banner di merce</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Nascondi gli annunci a schermo intero funziona solo con dispositivi più vecchi</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Nascondi le promozioni Premium di YouTube</string>
+ <string name="revanced_hide_get_premium_summary_on">Le promozioni di YouTube Premium sotto il video player sono nascoste</string>
+ <string name="revanced_hide_get_premium_summary_off">Le promozioni di YouTube Premium sotto il lettore video sono mostrate</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Nascondi annunci video</string>
+ <string name="revanced_hide_video_ads_summary_on">Gli annunci video sono nascosti</string>
+ <string name="revanced_hide_video_ads_summary_off">Gli annunci video sono mostrati</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiato negli appunti</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL con timestamp copiato</string>
+ <string name="revanced_copy_video_url_title">Mostra il pulsante URL di copia video</string>
+ <string name="revanced_copy_video_url_summary_on">Il pulsante è visualizzato. Tocca per copiare l\'URL del video. Tocca e tieni premuto per copiare l\'URL del video con timestamp</string>
+ <string name="revanced_copy_video_url_summary_off">Il pulsante non è mostrato</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostra il pulsante URL timestamp copia</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Il pulsante è visualizzato. Tocca per copiare l\'URL del video con timestamp. Tocca e tieni premuto per copiare il video senza timestamp</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Il pulsante non è mostrato</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Rimuovi la finestra di discrezionalità del visualizzatore</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">La finestra di dialogo verrà rimossa</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Verrà visualizzata la finestra</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Questo non aggira la restrizione di età. Lo accetta solo automaticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Download esterni</string>
+ <string name="revanced_external_downloader_screen_summary">Impostazioni per l\'utilizzo di un downloader esterno</string>
+ <string name="revanced_external_downloader_title">Mostra il pulsante di download esterno</string>
+ <string name="revanced_external_downloader_summary_on">Pulsante download mostrato nel giocatore</string>
+ <string name="revanced_external_downloader_summary_off">Pulsante download non mostrato nel giocatore</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Sovrascrivi il pulsante azione download</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Il pulsante Scarica apre il tuo downloader esterno</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Il pulsante di download apre il nativo in-app downloader</string>
+ <string name="revanced_external_downloader_name_title">Nome pacchetto Downloader</string>
+ <string name="revanced_external_downloader_name_summary">Nome del pacchetto dell\'applicazione esterna di downloader installata, come NewPipe o Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s non è installato. Installalo.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Disabilita il gesto di ricerca preciso</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Il gesto è disabilitato</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesture abilitata</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Abilita toccando la seekbar</string>
+ <string name="revanced_seekbar_tapping_summary_on">Tocco barra di ricerca è abilitato</string>
+ <string name="revanced_seekbar_tapping_summary_off">Tocco barra di ricerca disabilitato</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Abilita gesto luminosità</string>
+ <string name="revanced_swipe_brightness_summary_on">Lo scorrimento della luminosità è abilitato</string>
+ <string name="revanced_swipe_brightness_summary_off">Lo scorrimento della luminosità è disabilitato</string>
+ <string name="revanced_swipe_volume_title">Abilita gesto volume</string>
+ <string name="revanced_swipe_volume_summary_on">Scorrimento del volume abilitato</string>
+ <string name="revanced_swipe_volume_summary_off">Scorrimento del volume è disabilitato</string>
+ <string name="revanced_swipe_press_to_engage_title">Abilita il gesto di scorrimento</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Press-to-swipe è abilitato</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Press-to-swipe è disabilitato</string>
+ <string name="revanced_swipe_haptic_feedback_title">Abilita feedback tattile</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Il feedback aptico è abilitato</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Il feedback aptico è disabilitato</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Salva e ripristina la luminosità</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Salva e ripristina la luminosità quando esci o entra a schermo intero</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Non salvare e ripristinare la luminosità quando si esce o si entra a schermo intero</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Abilita gesto di luminosità automatica</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Scorri verso il basso fino al valore più basso del gesto luminosità abilita la luminosità automatica</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Scorrendo verso il basso il valore più basso non abilita la luminosità automatica</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatico</string>
+ <string name="revanced_swipe_overlay_timeout_title">Timeout sovrapposizione swipe</string>
+ <string name="revanced_swipe_overlay_timeout_summary">La quantità di millisecondi la sovrapposizione è visibile</string>
+ <string name="revanced_swipe_text_overlay_size_title">Scorri la dimensione del testo sovrapposta</string>
+ <string name="revanced_swipe_text_overlay_size_summary">La dimensione del testo per la sovrapposizione dello scorrimento</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Visibilità scorrimento sfondo</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">La visibilità dello scorrimento sullo sfondo</string>
+ <string name="revanced_swipe_threshold_title">Soglia magnitudine scorrimento</string>
+ <string name="revanced_swipe_threshold_summary">La quantità di soglia per lo scorrimento che si verifica</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Disabilita didascalie automatiche</string>
+ <string name="revanced_auto_captions_summary_on">Le didascalie automatiche sono disabilitate</string>
+ <string name="revanced_auto_captions_summary_off">Le didascalie automatiche sono abilitate</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Pulsanti azione</string>
+ <string name="revanced_hide_buttons_screen_summary">Nascondi o mostra i pulsanti sotto i video</string>
+ <string name="revanced_hide_like_dislike_button_title">Nascondi Mi piace e Dispiace</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">I pulsanti Mi piace e Dislike sono nascosti</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">I pulsanti Mi piace e Dispiace sono mostrati</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Nascondi Condivisione</string>
+ <string name="revanced_hide_share_button_summary_on">Il pulsante di condivisione è nascosto</string>
+ <string name="revanced_hide_share_button_summary_off">Il pulsante di condivisione è mostrato</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Nascondi Report</string>
+ <string name="revanced_hide_report_button_summary_on">Il pulsante Report è nascosto</string>
+ <string name="revanced_hide_report_button_summary_off">Il pulsante Report è mostrato</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Nascondi Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Il pulsante Remix è nascosto</string>
+ <string name="revanced_hide_remix_button_summary_off">Il pulsante Remix è mostrato</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Nascondi Download</string>
+ <string name="revanced_hide_download_button_summary_on">Il pulsante di download è nascosto</string>
+ <string name="revanced_hide_download_button_summary_off">Il pulsante di download è mostrato</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Nascondi Grazie</string>
+ <string name="revanced_hide_thanks_button_summary_on">Grazie pulsante è nascosto</string>
+ <string name="revanced_hide_thanks_button_summary_off">Il pulsante di ringraziamento è mostrato</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Il pulsante clip è nascosto</string>
+ <string name="revanced_hide_clip_button_summary_off">Il pulsante clip è mostrato</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Nascondi Salva nella playlist</string>
+ <string name="revanced_hide_playlist_button_summary_on">Il pulsante Salva nella playlist è nascosto</string>
+ <string name="revanced_hide_playlist_button_summary_off">Il pulsante Salva nella playlist è mostrato</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Nascondi pulsante autoplay</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Il pulsante Autoplay è nascosto</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Il pulsante Autoplay è mostrato</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Nascondi il pulsante didascalie</string>
+ <string name="revanced_hide_captions_button_summary_on">Il pulsante sottotitoli è nascosto</string>
+ <string name="revanced_hide_captions_button_summary_off">Il pulsante sottotitoli è mostrato</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Nascondi pulsante cast</string>
+ <string name="revanced_hide_cast_button_summary_on">Il pulsante Trasmetti è nascosto</string>
+ <string name="revanced_hide_cast_button_summary_off">Il pulsante Trasmetti è visibile</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Nascondi o cambia i pulsanti nella barra di navigazione</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Nascondi Home</string>
+ <string name="revanced_hide_home_button_summary_on">Il pulsante Home è nascosto</string>
+ <string name="revanced_hide_home_button_summary_off">Il pulsante Home è mostrato</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Nascondi Pantaloncini</string>
+ <string name="revanced_hide_shorts_button_summary_on">Il pulsante Shorts è nascosto</string>
+ <string name="revanced_hide_shorts_button_summary_off">Il pulsante Shorts è visibile</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Nascondi Crea</string>
+ <string name="revanced_hide_create_button_summary_on">Il pulsante Crea è nascosto</string>
+ <string name="revanced_hide_create_button_summary_off">Il pulsante Crea è mostrato</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Nascondi Abbonamenti</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Il pulsante di sottoscrizioni è nascosto</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Il pulsante di sottoscrizioni è mostrato</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Cambia Crea con le notifiche</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Il pulsante Crea è cambiato con il pulsante Notifiche\n\nNota: Abilitando anche questo nasconde con la forza gli annunci video</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Il pulsante Crea non è cambiato con il pulsante Notifiche</string>
+ <string name="revanced_hide_navigation_button_labels_title">Nascondi etichette dei pulsanti di navigazione</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Le etichette sono nascoste</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Le etichette sono mostrate</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Nascondi o mostra le voci del menu di flyout del giocatore</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Nascondi Didascalie</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Il menu delle didascalie è nascosto</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Il menu delle didascalie è mostrato</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Nascondi impostazioni aggiuntive</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Il menu delle impostazioni aggiuntive è nascosto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Viene mostrato il menu impostazioni aggiuntive</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Nascondi video Loop</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Il menu video Loop è nascosto</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Viene mostrato il menu video Loop</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Nascondi la modalità Ambient</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Il menu della modalità Ambient è nascosto</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Viene mostrato il menu della modalità Ambient</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Nascondi Aiuto & feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Aiuto & menu di feedback è nascosto</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Il menu di feedback di Aiuto & è mostrato</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Nascondi velocità di riproduzione</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Il menu della velocità di riproduzione è nascosto</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Il menu della velocità di riproduzione è mostrato</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Nascondi maggiori informazioni</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Più info menu è nascosto</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Più info menu è mostrato</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Nascondi schermata di blocco</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Il menu della schermata di blocco è nascosto</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Il menu della schermata di blocco è mostrato</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Nascondi traccia audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Il menu traccia audio è nascosto</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Il menu traccia audio è mostrato</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Nascondi orologio in VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Guarda nel menu VR è nascosto</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Guarda nel menu VR</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Nascondi i pulsanti video precedenti &</string>
+ <string name="revanced_hide_player_buttons_summary_on">I pulsanti sono nascosti</string>
+ <string name="revanced_hide_player_buttons_summary_off">I pulsanti sono mostrati</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Nascondi schede album</string>
+ <string name="revanced_hide_album_cards_summary_on">Le schede degli album sono nascoste</string>
+ <string name="revanced_hide_album_cards_summary_off">Le schede degli album sono mostrate</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Commenti</string>
+ <string name="revanced_comments_screen_summary">Nascondi o mostra i componenti della sezione commenti</string>
+ <string name="revanced_hide_comments_by_members_header_title">Nascondi l\'intestazione \'Commenti dai membri\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Commenti dei membri\' intestazione è nascosta</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">L\'intestazione \'Commenti dei membri\' è mostrata</string>
+ <string name="revanced_hide_comments_section_title">Nascondi sezione commenti</string>
+ <string name="revanced_hide_comments_section_summary_on">La sezione commenti è nascosta</string>
+ <string name="revanced_hide_comments_section_summary_off">La sezione Commenti è mostrata</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Nascondi il pulsante \'Crea un corto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Il pulsante \'Crea una corta\' è nascosto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Il pulsante \'Crea un corto\' è mostrato</string>
+ <string name="revanced_hide_comments_preview_comment_title">Nascondi commento anteprima</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Il commento nell\'anteprima è nascosto</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Anteprima commento mostrata</string>
+ <string name="revanced_hide_comments_thanks_button_title">Nascondi pulsante grazie</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Grazie pulsante è nascosto</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Il pulsante di ringraziamento è mostrato</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Nascondi i pulsanti timestamp ed emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">I pulsanti Timestamp ed emoji sono nascosti</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Vengono mostrati i pulsanti Timestamp ed emoji</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Nascondi box crowdfunding</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding box è nascosto</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Il Crowdfunding box è mostrato</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Nascondi schede di fine schermo</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Le schede di fine schermo sono nascoste</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Vengono mostrate le schede di fine schermo</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra dei filtri</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Nascondi o mostra la barra dei filtri nel feed, nella ricerca e nei video correlati</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Nascondi nel feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Nascosto nel feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Mostrato nel feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Nascondi nella ricerca</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Nascosto nella ricerca</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Mostrato nella ricerca</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Nascondi nei video correlati</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Nascosto nei video correlati</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Mostrato in video correlati</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Nascondi il pulsante del microfono fluttuante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Pulsante microfono nascosto</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Pulsante microfono mostrato</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Disabilita la modalità ambiente a schermo intero</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modalità ambiente disabilitata</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modalità Ambient abilitata</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Nascondi schede info</string>
+ <string name="revanced_hide_info_cards_summary_on">Le schede informative verranno nascoste</string>
+ <string name="revanced_hide_info_cards_summary_off">Le schede informative verranno mostrate</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Disabilita animazioni numero rolling</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">I numeri di rolling non sono animati</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">I numeri di rotolamento sono animati</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Nascondi la barra di ricerca nel lettore video</string>
+ <string name="revanced_hide_seekbar_summary_on">La barra di ricerca del lettore video è nascosta</string>
+ <string name="revanced_hide_seekbar_summary_off">La barra di ricerca del lettore video è mostrata</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Nascondi la barra di ricerca nelle miniature video</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">La barra di ricerca delle miniature è nascosta</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Barra di ricerca miniature mostrata</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Nascondi Pantaloncini nel feed home</string>
+ <string name="revanced_hide_shorts_home_summary_on">Pantaloncini nel feed domestico sono nascosti</string>
+ <string name="revanced_hide_shorts_home_summary_off">Vengono mostrati i pantaloncini in home feed</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Nascondi Shorts nel feed di abbonamento</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts in abbonamento feed sono nascosti</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Vengono mostrati i resort in abbonamento</string>
+ <string name="revanced_hide_shorts_search_title">Nascondi ricordi nei risultati di ricerca</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts nei risultati di ricerca sono nascosti</string>
+ <string name="revanced_hide_shorts_search_summary_off">I resort nei risultati della ricerca sono mostrati</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Nascondi pulsante join</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Il pulsante Entra è nascosto</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Il pulsante di accesso è mostrato</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Nascondi pulsante di sottoscrizione</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Il pulsante di sottoscrizione è nascosto</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Il pulsante di sottoscrizione è mostrato</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Nascondi pulsanti di sovrapposizione in pausa</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">I pulsanti di sovrapposizione in pausa sono nascosti</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">I pulsanti di sovrapposizione in pausa sono mostrati</string>
+ <string name="revanced_hide_shorts_shop_button_title">Nascondi pulsante negozio</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Il pulsante del negozio è nascosto</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Il pulsante del negozio è mostrato</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Nascondi il pulsante super grazie</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Il pulsante super grazie è nascosto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Il pulsante di ringraziamento eccellente è mostrato</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Nascondi prodotti taggati</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Prodotti etichettati sono nascosti</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Prodotti etichettati sono mostrati</string>
+ <string name="revanced_hide_shorts_location_label_title">Nascondi etichetta posizione</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">L\'etichetta di localizzazione è nascosta</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">L\'etichetta di posizione è mostrata</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Nascondi il pulsante Salva suono nella playlist</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Salva il suono nella scaletta è nascosto</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Il suono di salvataggio nella scaletta è mostrato</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Nascondi suggerimenti di ricerca</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">I suggerimenti di ricerca sono nascosti</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">I suggerimenti di ricerca sono mostrati</string>
+ <string name="revanced_hide_shorts_like_button_title">Nascondi pulsante come</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Il pulsante simile è nascosto</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Il pulsante simile è mostrato</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Nascondi pulsante dissimile</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Il pulsante Dislike è nascosto</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Il pulsante Dislike è mostrato</string>
+ <string name="revanced_hide_shorts_comments_button_title">Pulsante Nascondi commenti</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Il pulsante commenti è nascosto</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Il pulsante Commenti è mostrato</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Nascondi pulsante remix</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Il pulsante Remix è nascosto</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Il pulsante Remix è mostrato</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Nascondi pulsante di condivisione</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Il pulsante di condivisione è nascosto</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Il pulsante di condivisione è mostrato</string>
+ <string name="revanced_hide_shorts_info_panel_title">Nascondi pannello informazioni</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Il pannello informazioni è nascosto</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Pannello informazioni mostrato</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Nascondi barra del canale</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Barra del canale nascosta</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra del canale visibile</string>
+ <string name="revanced_hide_shorts_video_title_title">Nascondi titolo video</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Il titolo è nascosto</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Il titolo è mostrato</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Nascondi etichetta dei metadati sonori</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etichetta dei metadati nascosta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etichetta dei metadati mostrata</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Nascondi l\'etichetta completa del collegamento video</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etichetta link video nascosta</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etichetta link video mostrata</string>
+ <string name="revanced_hide_shorts_sound_button_title">Nascondi pulsante audio</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Il pulsante audio è nascosto</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Il pulsante audio è mostrato</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Nascondi barra di navigazione</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">La barra di navigazione è nascosta</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Barra di navigazione mostrata</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Disabilita la schermata finale del video suggerita</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">I video suggeriti saranno disabilitati</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Verranno mostrati i video suggeriti</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Nascondi timestamp video</string>
+ <string name="revanced_hide_timestamp_summary_on">Il timestamp è nascosto</string>
+ <string name="revanced_hide_timestamp_summary_off">Marcatura oraria mostrata</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Nascondi i pannelli popup del giocatore</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">I pannelli popup del giocatore sono nascosti</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">I pannelli popup del giocatore sono mostrati</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacità sovrapposizione del giocatore</string>
+ <string name="revanced_player_overlay_opacity_summary">Valore di opacità tra 0-100, dove 0 è trasparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">L\'opacità della sovrapposizione del giocatore deve essere compresa tra 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Nascosto</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">API dei Dislike temporaneamente non disponibile</string>
+ <string name="revanced_ryd_failure_connection_status_code">Non piace (stato %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Dislikes not available (client API limit reached)</string>
+ <string name="revanced_ryd_failure_generic">Dislikes not available (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Ricarica il video per votare utilizzando Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">I dislikes sono mostrati</string>
+ <string name="revanced_ryd_enable_summary_off">Non sono mostrati i dislikes</string>
+ <string name="revanced_ryd_shorts_title">Mostra i dislikes su Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislikes visualizzati su Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislikes mostrati su Shorts\n\nLimitazione: I dislikes potrebbero non apparire in modalità incognito</string>
+ <string name="revanced_ryd_shorts_summary_off">Non piace nascosto su Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Non piace come percentuale</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislikes mostrati come percentuale</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislikes mostrati come numero</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Pulsante compatto</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Pulsante simile per larghezza minima</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Come pulsante in stile per la migliore apparenza</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Mostra un toast se l\'API non è disponibile</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Il toast è mostrato se Restituisce YouTube Dislike non è disponibile</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Il toast non è mostrato se Restituisce YouTube Dislike non è disponibile</string>
+ <string name="revanced_ryd_about">Informazioni</string>
+ <string name="revanced_ryd_attribution_summary">I dati sono forniti dall\'API Return YouTube Dislike YouTube. Tocca qui per saperne di più</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Restituisce le statistiche API di YouTubeDislike di questo dispositivo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tempo di risposta API, media</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tempo di risposta API, minimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tempo di risposta API, massimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tempo di risposta API, ultimo video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes temporarily not available - Client API rate limit in effect</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Voti API, numero di chiamate</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nessuna chiamata di rete effettuata</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Chiamate di rete %d effettuate</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Voti API, numero di timeout</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Nessuna chiamata di rete scaduta</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Chiamate di rete %d scadute</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limiti di frequenza client API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nessun limite di tasso client riscontrato</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Limite di velocità client rilevato %d volte</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisecondi</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Abilita barra di ricerca larga</string>
+ <string name="revanced_wide_searchbar_summary_on">La barra di ricerca ampia è abilitata</string>
+ <string name="revanced_wide_searchbar_summary_off">L\'ampia barra di ricerca è disabilitata</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Ripristina vecchie miniature della barra di ricerca</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Le miniature della barra di ricerca appariranno sopra la barra di ricerca</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Le miniature della barra di ricerca appariranno a schermo intero</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Abilita SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock è un sistema crowd-sourced per saltare parti fastidiose dei video di YouTube</string>
+ <string name="revanced_sb_appearance_category">Aspetto</string>
+ <string name="revanced_sb_enable_voting">Mostra pulsante di voto</string>
+ <string name="revanced_sb_enable_voting_sum_on">Il pulsante di voto del segmento è mostrato</string>
+ <string name="revanced_sb_enable_voting_sum_off">Il pulsante di voto del segmento non è mostrato</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Usa il tasto salto compatto</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Tasto salta in stile per una larghezza minima</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Pulsante salta in stile per il miglior aspetto</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Nascondi automaticamente il pulsante Salto</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Il pulsante Salta si nasconde dopo alcuni secondi</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Pulsante salta visualizzato per l\'intero segmento</string>
+ <string name="revanced_sb_general_skiptoast">Mostra un toast quando si salta automaticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Il toast viene mostrato quando un segmento viene saltato automaticamente. Tocca qui per vedere un esempio</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Il Toast non è mostrato. Tocca qui per vedere un esempio</string>
+ <string name="revanced_sb_general_time_without">Mostra lunghezza video senza segmenti</string>
+ <string name="revanced_sb_general_time_without_sum_on">Lunghezza video meno tutti i segmenti, mostrati tra parentesi accanto alla lunghezza completa del video</string>
+ <string name="revanced_sb_general_time_without_sum_off">Lunghezza completa del video mostrata</string>
+ <string name="revanced_sb_create_segment_category">Creare nuovi segmenti</string>
+ <string name="revanced_sb_enable_create_segment">Mostra il pulsante crea un nuovo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Il pulsante Crea nuovo segmento è mostrato</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Il pulsante Crea un nuovo segmento non è mostrato</string>
+ <string name="revanced_sb_general_adjusting">Regola il nuovo passo di segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Numero di millisecondi i pulsanti di regolazione del tempo si muovono quando si creano nuovi segmenti</string>
+ <string name="revanced_sb_general_adjusting_invalid">Il valore deve essere un numero positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Leggi linee guida</string>
+ <string name="revanced_sb_guidelines_preference_sum">Le linee guida contengono regole e suggerimenti per la creazione di nuovi segmenti</string>
+ <string name="revanced_sb_guidelines_popup_title">Seguire le linee guida</string>
+ <string name="revanced_sb_guidelines_popup_content">Leggi le linee guida di SponsorBlock prima di creare nuovi segmenti</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Già lette</string>
+ <string name="revanced_sb_guidelines_popup_open">Mostramele</string>
+ <string name="revanced_sb_general">Generale</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Mostra un toast se l\'API non è disponibile</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Il toast è mostrato se SponsorBlock non è disponibile</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Il toast non è mostrato se SponsorBlock non è disponibile</string>
+ <string name="revanced_sb_general_skipcount">Abilita tracciamento conteggio salti</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Consente alla classifica di SponsorBlock di sapere quanto tempo viene salvato. Viene inviato un messaggio alla classifica ogni volta che un segmento viene saltato</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Il tracciamento del contatore Skip non è abilitato</string>
+ <string name="revanced_sb_general_min_duration">Durata minima segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">I segmenti più corti di questo valore (in secondi) non verranno mostrati o saltati</string>
+ <string name="revanced_sb_general_uuid">Id utente privato</string>
+ <string name="revanced_sb_general_uuid_sum">Questo dovrebbe essere tenuto privato. Questo è come una password e non dovrebbe essere condiviso con nessuno. Se qualcuno possiede questo ID, ti può impersonare</string>
+ <string name="revanced_sb_general_uuid_invalid">L\'id utente privato deve essere lungo almeno 30 caratteri</string>
+ <string name="revanced_sb_general_api_url">Modifica URL API</string>
+ <string name="revanced_sb_general_api_url_sum">L\'indirizzo SponsorBlock utilizza per effettuare chiamate al server</string>
+ <string name="revanced_sb_api_url_reset">URL API reimpostato</string>
+ <string name="revanced_sb_api_url_invalid">URL API non valido</string>
+ <string name="revanced_sb_api_url_changed">URL API modificato</string>
+ <string name="revanced_sb_settings_ie">Importa/Esporta Impostazioni</string>
+ <string name="revanced_sb_settings_copy">Copia</string>
+ <string name="revanced_sb_settings_ie_sum">La tua configurazione di SponsorBlock JSON che può essere importata/esportata in ReVanced e altre piattaforme di SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">La tua configurazione di SponsorBlock JSON che può essere importata/esportata in piattaforme ReVanced e altre SponsorBlock. Questo include il tuo id utente privato. Assicurati di condividere questo saggiamente</string>
+ <string name="revanced_sb_settings_import_successful">Impostazioni importate con successo</string>
+ <string name="revanced_sb_settings_import_failed">Importazione non riuscita: %s</string>
+ <string name="revanced_sb_settings_export_failed">Esportazione non riuscita: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Le tue impostazioni contengono un utente privato SponsorBlock.\n\nIl tuo id utente è come una password e non dovrebbe mai essere condiviso.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Non mostrare più</string>
+ <string name="revanced_sb_diff_segments">Cambia il comportamento del segmento</string>
+ <string name="revanced_sb_segments_sponsor">Sponsorizzazione</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promozione a pagamento, rinvii a pagamento e pubblicità diretta. Non per auto-promozione o gridare gratis a cause/creatori/siti web/prodotti che gradiscono</string>
+ <string name="revanced_sb_segments_selfpromo">Non pagata/Auto Promozione</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Simile a \'Sponsor\' tranne che per la promozione non pagata o autopromozionale. Include sezioni su merci, donazioni, o informazioni su chi hanno collaborato con</string>
+ <string name="revanced_sb_segments_interaction">Promemoria di interazione (iscrizione)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un breve promemoria per piacere, iscriversi o seguirli nel mezzo dei contenuti. Se è lungo o su qualcosa di specifico, dovrebbe invece essere sotto auto-promozione</string>
+ <string name="revanced_sb_segments_highlight">Evidenzia</string>
+ <string name="revanced_sb_segments_highlight_sum">La parte del video che la maggior parte delle persone sono alla ricerca</string>
+ <string name="revanced_sb_segments_intro">Interruzione/Animazione Introduzione</string>
+ <string name="revanced_sb_segments_intro_sum">Un intervallo senza contenuto effettivo. Potrebbe essere una pausa, un quadro statico o un\'animazione ripetitiva. Non include transizioni contenenti informazioni</string>
+ <string name="revanced_sb_segments_outro">Conclusioni/titoli di coda</string>
+ <string name="revanced_sb_segments_outro_sum">Riconoscimenti o quando appaiono le carte finali di YouTube. Non per conclusioni con informazioni</string>
+ <string name="revanced_sb_segments_preview">Anteprima/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Raccolta di clip che mostrano ciò che è in arrivo o ciò che è successo nel video o in altri video di una serie, dove tutte le informazioni sono ripetute altrove</string>
+ <string name="revanced_sb_segments_filler">Riempitivi irrilevanti/Battute</string>
+ <string name="revanced_sb_segments_filler_sum">Scene tangenziali aggiunte solo per riempitivo o umorismo che non sono tenuti a capire il contenuto principale del video. Non comprende i segmenti che forniscono dettagli sul contesto o sullo sfondo</string>
+ <string name="revanced_sb_segments_nomusic">Musica: sezione non musicale</string>
+ <string name="revanced_sb_segments_nomusic_sum">Solo per l\'uso in video musicali. Sezioni di video musicali senza musica, che non sono già coperti da un\'altra categoria</string>
+ <string name="revanced_sb_skip_button_compact">Salta</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Evidenzia</string>
+ <string name="revanced_sb_skip_button_sponsor">Salta sponsor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Salta promo</string>
+ <string name="revanced_sb_skip_button_interaction">Salta interagire</string>
+ <string name="revanced_sb_skip_button_highlight">Salta per evidenziare</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Salta introduzione</string>
+ <string name="revanced_sb_skip_button_intro_middle">Salta l\'intermissione</string>
+ <string name="revanced_sb_skip_button_intro_end">Salta l\'intermissione</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Salta anteprima</string>
+ <string name="revanced_sb_skip_button_preview_middle">Salta anteprima</string>
+ <string name="revanced_sb_skip_button_preview_end">Salta recap</string>
+ <string name="revanced_sb_skip_button_filler">Salta riempimento</string>
+ <string name="revanced_sb_skip_button_nomusic">Salta non-musica</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Salta segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsorizzazione saltata</string>
+ <string name="revanced_sb_skipped_selfpromo">Autopromozione saltata</string>
+ <string name="revanced_sb_skipped_interaction">Promemoria indesiderato saltato</string>
+ <string name="revanced_sb_skipped_highlight">Saltato per evidenziare</string>
+ <string name="revanced_sb_skipped_intro_beginning">Introduzione saltata</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermissione saltata</string>
+ <string name="revanced_sb_skipped_intro_end">Intermissione saltata</string>
+ <string name="revanced_sb_skipped_outro">Conclusione saltata</string>
+ <string name="revanced_sb_skipped_preview_beginning">Anteprima saltata</string>
+ <string name="revanced_sb_skipped_preview_middle">Anteprima saltata</string>
+ <string name="revanced_sb_skipped_preview_end">Riepilogo saltato</string>
+ <string name="revanced_sb_skipped_filler">Filler saltato</string>
+ <string name="revanced_sb_skipped_nomusic">Sezione non-musicale saltata</string>
+ <string name="revanced_sb_skipped_unsubmitted">Segmento non inviato saltato</string>
+ <string name="revanced_sb_skipped_multiple_segments">Segmenti multipli saltati</string>
+ <string name="revanced_sb_skip_automatically">Salta automaticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Salta automaticamente una volta</string>
+ <string name="revanced_sb_skip_showbutton">Mostra un pulsante per saltare</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostra nella barra di ricerca</string>
+ <string name="revanced_sb_skip_ignore">Disabilita</string>
+ <string name="revanced_sb_submit_failed_invalid">Impossibile inviare il segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock è temporaneamente giù</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Impossibile inviare il segmento (stato: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Impossibile inviare il segmento.\nRate Limited (troppi dello stesso utente o IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Impossibile inviare il segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Impossibile inviare il segmento.\nEsiste già</string>
+ <string name="revanced_sb_submit_succeeded">Segmento inviato con successo</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">API di Sponsorblock temporaneamente non disponibile</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporaneamente non disponibile (stato %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporaneamente non disponibile</string>
+ <string name="revanced_sb_vote_failed_timeout">Impossibile votare per il segmento (API scaduta)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Impossibile votare per il segmento (stato: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Impossibile votare per il segmento: %s</string>
+ <string name="revanced_sb_vote_upvote">Mi piace</string>
+ <string name="revanced_sb_vote_downvote">Non mi piace</string>
+ <string name="revanced_sb_vote_category">Modifica categoria</string>
+ <string name="revanced_sb_vote_no_segments">Non ci sono segmenti per i quali votare</string>
+ <string name="revanced_sb_new_segment_choose_category">Seleziona la categoria della sezione</string>
+ <string name="revanced_sb_new_segment_disabled_category">La categoria è disabilitata nelle impostazioni. Abilita la categoria da inviare.</string>
+ <string name="revanced_sb_new_segment_title">Nuova sezione di SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Impostare %1$02d:%2$02d:%3$03d come inizio o fine di un nuovo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">inizio</string>
+ <string name="revanced_sb_new_segment_mark_end">fine</string>
+ <string name="revanced_sb_new_segment_now">ora</string>
+ <string name="revanced_sb_new_segment_time_start">Minutaggio dell\'inizio del segmento</string>
+ <string name="revanced_sb_new_segment_time_end">Minutaggio della fine del segmento</string>
+ <string name="revanced_sb_new_segment_confirm_title">I valori sono corretti?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Il segmento è da\n\n%1$s\na\n%2$s\n\n(%3$s)\n\nPronto per l\'invio?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">L\'inizio deve essere prima della fine</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Segna prima due posizioni sulla barra di avanzamento</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Anteprima del segmento e assicurarsi che salti senza problemi</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Modifica manualmente i tempi del segmento</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Vuoi modificare il timer di l\'inizio o la fine della sezione?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Minutaggio fornito invalido</string>
+ <string name="revanced_sb_stats">Statistiche</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistiche temporaneamente non disponibili (API è giù)</string>
+ <string name="revanced_sb_stats_loading">Caricamento...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock è disabilitato</string>
+ <string name="revanced_sb_stats_username">Il tuo nome utente: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Tocca qui per cambiare il tuo nome utente</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Impossibile modificare il nome utente: Stato: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Il tuo nome utente è stato correttamente modificato</string>
+ <string name="revanced_sb_stats_reputation">La tua reputazione è <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Hai creato segmenti <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">Classifica di SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Hai salvato le persone dai segmenti <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Tocca qui per vedere le statistiche globali e i migliori contributori</string>
+ <string name="revanced_sb_stats_saved_sum">Questo è <b>%s</b> della loro vita.<br>Tocca qui per vedere la classifica</string>
+ <string name="revanced_sb_stats_self_saved">Hai saltato i segmenti <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_sum">È <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Ripristinare il contatore dei segmenti saltati?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s ore %2$s minuti</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minuti %2$s secondi</string>
+ <string name="revanced_sb_stats_saved_second_format">%s secondi</string>
+ <string name="revanced_sb_color_dot_label">Colore:</string>
+ <string name="revanced_sb_color_changed">Colore modificato</string>
+ <string name="revanced_sb_color_reset">Ripristino colore</string>
+ <string name="revanced_sb_color_invalid">Codice colore non valido</string>
+ <string name="revanced_sb_reset_color">Ripristina colore</string>
+ <string name="revanced_sb_reset">Reimposta</string>
+ <string name="revanced_sb_about">Informazioni</string>
+ <string name="revanced_sb_about_api_sum">I dati sono forniti dall\'API di SponsorBlock. Tocca qui per saperne di più e vedere i download per altre piattaforme</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versione di Spoof app</string>
+ <string name="revanced_spoof_app_version_summary_on">Versione spoofed</string>
+ <string name="revanced_spoof_app_version_summary_off">Versione non spoofed</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">La versione dell\'app sarà spoofed per una versione più vecchia di YouTube.\n\nQuesto cambierà l\'aspetto e le caratteristiche dell\'app, ma possono verificarsi effetti collaterali sconosciuti.\n\nSe in seguito è disattivato, si consiglia di cancellare i dati dell\'app per prevenire i bug dell\'UI.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof destinazione versione app</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Ripristina RYD su modalità incognito Shorts</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Ripristina velocità video larga & menu qualità</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Ripristina scheda libreria</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Ripristina vecchi ripiani playlist</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Ripristina il vecchio layout UI</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Imposta pagina iniziale</string>
+ <string name="revanced_start_page_entry_0">Predefinito</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Home</string>
+ <string name="revanced_start_page_entry_2">Cerca</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abbonamenti</string>
+ <string name="revanced_start_page_entry_4">Esplora</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">È scheda</string>
+ <string name="revanced_start_page_entry_7">Piaciuti video</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Storico</string>
+ <string name="revanced_start_page_entry_9">Tendenze</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Disabilita il ripristino del giocatore Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Il giocatore Shorts non riprenderà all\'avvio dell\'app</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Il giocatore Shorts riprenderà all\'avvio dell\'app</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Abilita disposizione tablet</string>
+ <string name="revanced_tablet_layout_summary_on">Disposizione tablet abilitata</string>
+ <string name="revanced_tablet_layout_summary_off">Il layout del tablet è disabilitato</string>
+ <string name="revanced_tablet_layout_user_dialog_message">I post della comunità non vengono visualizzati sui layout dei tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Miniplayer</string>
+ <string name="revanced_miniplayer_screen_summary">Cambia lo stile del giocatore minimizzato nell\'app</string>
+ <string name="revanced_miniplayer_type_title">Tipo di Miniplayer</string>
+ <string name="revanced_miniplayer_type_entry_1">Originale</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefono</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderno 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderno 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderno 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Nascondi i pulsanti espandi e chiudi</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">I pulsanti sono nascosti\n(fai scorrere il miniplayer per espandere o chiudere)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Espandi e chiudi i pulsanti sono mostrati</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Nascondi sottotitoli</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">I sottotitoli sono nascosti</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">I sottotitoli sono mostrati</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Nascondi i pulsanti salta avanti e indietro</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Salta avanti e indietro sono nascosti</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Salta avanti e indietro sono mostrati</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valore di opacità tra 0-100, dove 0 è trasparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">L\'opacità della sovrapposizione Miniplayer deve essere compresa tra 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Abilita schermata di caricamento gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Lo schermo di caricamento avrà uno sfondo gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Lo schermo di caricamento avrà uno sfondo solido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Abilita colore personalizzato della barra di ricerca</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Il colore personalizzato della barra di ricerca è mostrato</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Il colore originale della barra di ricerca è mostrato</string>
+ <string name="revanced_seekbar_custom_color_value_title">Colore della barra di ricerca personalizzato</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Il colore della barra di ricerca</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valore colore seekbar non valido. Usare il valore predefinito.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Scheda home</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Scheda abbonamento</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">È scheda</string>
+ <string name="revanced_alt_thumbnail_player_title">Playlist giocatori, raccomandazioni</string>
+ <string name="revanced_alt_thumbnail_search_title">Risultati della ricerca</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & miniature originali</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Cattura ancora</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Catture ancora</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow fornisce miniature di origine folla per i video di YouTube. Queste miniature sono spesso più rilevanti di quelle fornite da YouTube\n\nSe abilitato, URL video verranno inviati al server API e non vengono inviati altri dati. Se un video non dispone di miniature DeArrow, poi le acquisizioni originali o ancora vengono mostrate\n\nTocca qui per saperne di più su DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Mostra un toast se l\'API non è disponibile</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Il toast è mostrato se DeArrow non è disponibile</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Il toast non è mostrato se DeArrow non è disponibile</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">L\'URL dell\'endpoint cache delle miniature DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Catture video ancora</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Le acquisizioni sono prese dall\'inizio/mezzo/fine di ogni video. Queste immagini sono integrate in YouTube e non viene utilizzata alcuna API esterna</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usa ancora cattura veloci</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Utilizzando catture di media qualità. Le miniature caricheranno più velocemente, ma i flussi live, i video non rilasciati o molto vecchi possono mostrare le miniature vuote</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Utilizzando ancora cattura di alta qualità</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tempo di ripresa video da</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Inizio del video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Medio di video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fine del video</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow temporaneamente non disponibile (codice %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow temporaneamente non disponibile</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Mostra annunci commentati</string>
+ <string name="revanced_announcements_summary_on">Gli annunci sono mostrati all\'avvio</string>
+ <string name="revanced_announcements_summary_off">Gli annunci non sono mostrati all\'avvio</string>
+ <string name="revanced_announcements_enabled_summary">Mostra annunci all\'avvio</string>
+ <string name="revanced_announcements_connection_failed">Connessione al provider di annunci non riuscita</string>
+ <string name="revanced_announcements_dialog_dismiss">Chiudi</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Abilita ripetizione automatica</string>
+ <string name="revanced_auto_repeat_summary_on">La ripetizione automatica è abilitata</string>
+ <string name="revanced_auto_repeat_summary_off">La ripetizione automatica è disattivata</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Dimensioni del dispositivo</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensioni del dispositivo spoofed\n\nLe qualità video più elevate potrebbero essere sbloccate, ma si può sperimentare la riproduzione di video balbuziere, peggiore durata della batteria e effetti collaterali sconosciuti</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensioni dispositivo non spoofed\n\nAbilitare questo può sbloccare qualità video superiori</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Abilitando questo può causare la riproduzione di video balbuziere, peggiore durata della batteria e effetti collaterali sconosciuti.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Impostazioni GmsCore</string>
+ <string name="microg_settings_summary">Impostazioni per GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Reindirizza gli URL di bypass</string>
+ <string name="revanced_bypass_url_redirects_summary_on">I reindirizzamenti URL sono bypassati</string>
+ <string name="revanced_bypass_url_redirects_summary_off">I reindirizzamenti URL non sono aggirati</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Apri link nel browser</string>
+ <string name="revanced_external_browser_summary_on">Apertura dei collegamenti esternamente</string>
+ <string name="revanced_external_browser_summary_off">Apertura link nell\'app</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Riproduzione in background</string>
+ <string name="revanced_background_playback_summary">Questa impostazione può essere trovata in Impostazioni -> Sfondo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Rimuovere il parametro di tracking query</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Il parametro di tracciamento della query viene rimosso dai link</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Il parametro di tracciamento della query non viene rimosso dai link</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Disabilita zoom haptics</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptics sono disabilitati</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics sono abilitati</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Qualità automatica</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Ricorda i cambiamenti di qualità video</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">I cambiamenti di qualità si applicano a tutti i video</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">I cambiamenti di qualità si applicano solo al video corrente</string>
+ <string name="revanced_video_quality_default_wifi_title">Qualità video predefinita sulla rete Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Qualità video predefinita sulla rete mobile</string>
+ <string name="revanced_remember_video_quality_mobile">mobile</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Modificato la qualità predefinita %1$s in: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostra pulsante finestra di dialogo velocità</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Il bottone è visibile</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Il pulsante non è mostrato</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocità di riproduzione personalizzate</string>
+ <string name="revanced_custom_playback_speeds_summary">Aggiungi o cambia la velocità di riproduzione disponibile</string>
+ <string name="revanced_custom_playback_speeds_invalid">Le velocità personalizzate devono essere inferiori a %s. Utilizzando i valori predefiniti.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Velocità di riproduzione personalizzata non valide. Utilizzando i valori predefiniti.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Ricorda le modifiche della velocità di riproduzione</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Le modifiche alla velocità di riproduzione si applicano a tutti i video</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Le modifiche della velocità di riproduzione si applicano solo al video corrente</string>
+ <string name="revanced_playback_speed_default_title">Velocità di riproduzione predefinita</string>
+ <string name="revanced_remember_playback_speed_toast">Cambiato la velocità predefinita a: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Ripristina il vecchio menu di qualità video</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Viene mostrato il vecchio menu di qualità video</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Il vecchio menu di qualità video non è mostrato</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Abilita la diapositiva da cercare</string>
+ <string name="revanced_slide_to_seek_summary_on">La diapositiva per cercare è abilitata</string>
+ <string name="revanced_slide_to_seek_summary_off">La diapositiva per cercare non è abilitata</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof client</string>
+ <string name="revanced_spoof_client_screen_summary">Abbandonare il client per evitare problemi di riproduzione</string>
+ <string name="revanced_spoof_client_title">Spoof client</string>
+ <string name="revanced_spoof_client_summary_on">Il client è spoofed</string>
+ <string name="revanced_spoof_client_summary_off">Il client non è spoofed\n\nLa riproduzione video potrebbe non funzionare</string>
+ <string name="revanced_spoof_client_user_dialog_message">Disattivare questa impostazione potrebbe causare problemi di riproduzione video.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof client per iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Il client è attualmente spoofed per iOS\n\nGli effetti collaterali includono:\n• Nessun video HDR\n• La cronologia dell\'orologio potrebbe non funzionare\n• Potrebbero mancare qualità video più elevate\n• I flussi dal vivo non possono riprodurre solo l\'audio\n• I flussi dal vivo non sono disponibili su Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Il client è attualmente spoofed per Android VR\n\nGli effetti collaterali includono:\n• Nessun video HDR\n• I video per bambini non riproducono\n• I video in pausa possono riprendere casualmente\n• Bassa qualità Pantaloncini seekbar miniature\n• Il pulsante di azione del download è sempre nascosto\n• Le schede dello schermo finale sono sempre nascoste</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Le miniature del client non sono disponibili (timeout API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Miniature del client Spoof temporaneamente non disponibili: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blocca annunci audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Gli annunci audio sono bloccati</string>
+ <string name="revanced_block_audio_ads_summary_off">Gli annunci audio sono sbloccati</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s non è disponibile. Gli annunci potrebbero mostrare. Prova a passare ad un altro servizio di blocco annunci nelle impostazioni.</string>
+ <string name="revanced_embedded_ads_service_failed">Il server %s ha restituito un errore. Gli annunci potrebbero mostrare. Prova a passare ad un altro servizio di blocco annunci nelle impostazioni.</string>
+ <string name="revanced_block_embedded_ads_title">Blocca annunci video incorporati</string>
+ <string name="revanced_block_embedded_ads_entry_1">Disattivato</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blocca annunci video</string>
+ <string name="revanced_block_video_ads_summary_on">Gli annunci video sono bloccati</string>
+ <string name="revanced_block_video_ads_summary_off">Annunci video sbloccati</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">messaggio eliminato</string>
+ <string name="revanced_show_deleted_messages_title">Mostra messaggi eliminati</string>
+ <string name="revanced_show_deleted_messages_entry_1">Non mostrare i messaggi eliminati</string>
+ <string name="revanced_show_deleted_messages_entry_2">Nascondi i messaggi eliminati dietro uno spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostra i messaggi eliminati come testo eliminato</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Richiama automaticamente i punti del canale</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">I punti del canale vengono rivendicati automaticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">I punti del canale non vengono rivendicati automaticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Abilita la modalità debug Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">La modalità debug Twitch è abilitata (non consigliato)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">La modalità debug Twitch è disabilitata</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Impostazioni Avanzate</string>
+ <string name="revanced_ads_screen_title">Annunci</string>
+ <string name="revanced_ads_screen_summary">Impostazioni blocco pubblicità</string>
+ <string name="revanced_chat_screen_title">Chat</string>
+ <string name="revanced_chat_screen_summary">Impostazioni chat</string>
+ <string name="revanced_misc_screen_title">Varie</string>
+ <string name="revanced_misc_screen_summary">Impostazioni varie</string>
+ <string name="revanced_general_category_title">Impostazioni generali</string>
+ <string name="revanced_other_category_title">Altre impostazioni</string>
+ <string name="revanced_client_ads_category_title">Annunci lato client</string>
+ <string name="revanced_surestream_ads_category_title">Pubblicità surestremismo lato server</string>
+ <string name="revanced_twitch_debug_title">Logging di debug</string>
+ <string name="revanced_twitch_debug_summary_on">I log di debug sono abilitati</string>
+ <string name="revanced_twitch_debug_summary_off">I log di debug sono disabilitati</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-iw-rIL/strings.xml b/src/main/resources/addresources/values-iw-rIL/strings.xml
new file mode 100644
index 0000000000..fe2467b0ff
--- /dev/null
+++ b/src/main/resources/addresources/values-iw-rIL/strings.xml
@@ -0,0 +1,322 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">איפוס</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">אודות</string>
+ <string name="revanced_settings_screen_11_misc_title">שונות</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">איתור באגים</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">לחצן שידור מסך מוסתר</string>
+ <string name="revanced_hide_cast_button_summary_off">לחצן שידור מסך מוצג</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">כרטיסי המידע מוסתרים</string>
+ <string name="revanced_hide_info_cards_summary_off">כרטיסי המידע מוצגים</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">מוסתר</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">אודות</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">הפעל את SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">מראה</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">ראה הנחיות</string>
+ <string name="revanced_sb_guidelines_popup_already_read">כבר קראתי</string>
+ <string name="revanced_sb_guidelines_popup_open">הראו לי</string>
+ <string name="revanced_sb_general">הגדרות כלליות</string>
+ <string name="revanced_sb_general_api_url">שנה כתובת API</string>
+ <string name="revanced_sb_api_url_reset">כתובת API אופסה</string>
+ <string name="revanced_sb_api_url_changed">כתובת API שונתה</string>
+ <string name="revanced_sb_settings_ie">ייבוא/ייצוא הגדרות</string>
+ <string name="revanced_sb_segments_sponsor">חסות</string>
+ <string name="revanced_sb_segments_selfpromo">קידום עצמי / לא ממומן</string>
+ <string name="revanced_sb_segments_interaction">תזכורת למעקב (הירשם כמנוי)</string>
+ <string name="revanced_sb_segments_intro">אנימציית פתיח/אינטרו</string>
+ <string name="revanced_sb_segments_outro">כרטיסי סיום / קרדיטים</string>
+ <string name="revanced_sb_segments_filler">סינון בדיחות</string>
+ <string name="revanced_sb_segments_nomusic">מוזיקה: קטעים ללא מוזיקה</string>
+ <string name="revanced_sb_skip_button_unsubmitted">דלג על הקטע</string>
+ <string name="revanced_sb_skipped_sponsor">קטע החסות דולג</string>
+ <string name="revanced_sb_skipped_selfpromo">הקידום העצמי דולג</string>
+ <string name="revanced_sb_skipped_interaction">התזכורת המעצבנת דולגה</string>
+ <string name="revanced_sb_skipped_intro_beginning">הפתיח דולג</string>
+ <string name="revanced_sb_skipped_outro">קטע הסיום דולג</string>
+ <string name="revanced_sb_skipped_preview_beginning">התצוגה המקדימה דולגה</string>
+ <string name="revanced_sb_skipped_preview_middle">התצוגה המקדימה דולגה</string>
+ <string name="revanced_sb_skipped_filler">קטע הפילר דולג</string>
+ <string name="revanced_sb_skip_automatically">דלג אוטומטית</string>
+ <string name="revanced_sb_skip_showbutton">הצג את לחצן הדילוג</string>
+ <string name="revanced_sb_skip_ignore">כבוי</string>
+ <string name="revanced_sb_submit_failed_duplicate">לא יכול לשלוח את קטע החסות.\nכבר קיים</string>
+ <string name="revanced_sb_submit_succeeded">קטע החסות נשלח בהצלחה</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">הצבעה</string>
+ <string name="revanced_sb_vote_downvote">הצבע למטה</string>
+ <string name="revanced_sb_vote_category">שנה קטגוריה</string>
+ <string name="revanced_sb_vote_no_segments">אין קטעים לבחירה</string>
+ <string name="revanced_sb_new_segment_title">קטע חסות חדש של SponsorBloack</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_start">התחל</string>
+ <string name="revanced_sb_new_segment_mark_end">סוף</string>
+ <string name="revanced_sb_new_segment_now">עכשיו</string>
+ <string name="revanced_sb_new_segment_confirm_title">האם הזמנים נכונים?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_locations_first">סמן שני מיקומים על סרגל הזמן תחילה</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">נרשם זמן לא חוקי</string>
+ <string name="revanced_sb_stats">נתונים</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">טוען...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock מושבת</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">לא ניתן לשנות את שם המשתמש: סטטוס: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">שם משתמש שונה בהצלחה</string>
+ <string name="revanced_sb_color_changed">צבע שונה</string>
+ <string name="revanced_sb_color_reset">צבע אופס</string>
+ <string name="revanced_sb_reset">איפוס</string>
+ <string name="revanced_sb_about">אודות</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">ברירת מחדל</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">התעלם</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">הושבת</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_misc_screen_title">שונות</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ja-rJP/strings.xml b/src/main/resources/addresources/values-ja-rJP/strings.xml
new file mode 100644
index 0000000000..eb96cc3a21
--- /dev/null
+++ b/src/main/resources/addresources/values-ja-rJP/strings.xml
@@ -0,0 +1,1191 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">続行しますか?</string>
+ <string name="revanced_settings_reset">リセット</string>
+ <string name="revanced_settings_restart_title">更新して再起動</string>
+ <string name="revanced_settings_restart">再起動</string>
+ <string name="revanced_settings_import">インポート</string>
+ <string name="revanced_settings_import_copy">コピー</string>
+ <string name="revanced_settings_import_reset">Revanced設定をデフォルトにリセット</string>
+ <string name="revanced_settings_import_success">%d の設定をインポート</string>
+ <string name="revanced_settings_import_failure_parse">インポート失敗: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCoreがインストールされていません。インストールしてください。</string>
+ <string name="gms_core_dialog_title">操作が必要です</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCoreはバックグラウンドで実行する権限がありません。\n\nあなたの端末の \"Don\'t kill my app \"のガイドに従って、MicroGのインストールに適用してください。\n\nこれはアプリが動作するために必要です。</string>
+ <string name="gms_core_dialog_open_website_text">ウェブサイトを開く</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">問題を防ぐためには、MicroG GmsCoreのバッテリー最適化を無効にする必要があります。\n\n継続ボタンをタップしてバッテリーの最適化を無効にします。</string>
+ <string name="gms_core_dialog_continue_text">続ける</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">ReVancedパッチのバージョン <i>%s</i> を使用しています</string>
+ <string name="revanced_settings_about_links_dev_header">メモ</string>
+ <string name="revanced_settings_about_links_dev_body">このバージョンはプレリリースで、予期しない問題が発生する可能性があります。</string>
+ <string name="revanced_settings_about_links_header">公式リンク</string>
+ <string name="revanced_pref_import_export_title">インポート/エクスポート</string>
+ <string name="revanced_pref_import_export_summary">Revanced設定のインポート/エクスポート</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">このアプリについて</string>
+ <string name="revanced_settings_screen_01_ads_title">広告</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">代替サムネイル</string>
+ <string name="revanced_settings_screen_03_feed_title">フィード</string>
+ <string name="revanced_settings_screen_04_player_title">プレーヤー</string>
+ <string name="revanced_settings_screen_05_general_title">全般レイアウト</string>
+ <string name="revanced_settings_screen_07_seekbar_title">シークバー</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">スワイプコントロール</string>
+ <string name="revanced_settings_screen_11_misc_title">その他</string>
+ <string name="revanced_settings_screen_12_video_title">動画</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">デバッグ</string>
+ <string name="revanced_debug_screen_summary">デバッグオプションを有効または無効にする</string>
+ <string name="revanced_debug_title">デバッグログ</string>
+ <string name="revanced_debug_summary_on">デバッグログは有効です</string>
+ <string name="revanced_debug_summary_off">デバッグログは無効です</string>
+ <string name="revanced_debug_protobuffer_title">ログプロトコルバッファ</string>
+ <string name="revanced_debug_protobuffer_summary_on">デバッグログにprotoバッファが含まれています</string>
+ <string name="revanced_debug_protobuffer_summary_off">デバッグログにはプロットバッファが含まれていません</string>
+ <string name="revanced_debug_stacktrace_title">スタックトレースのログ</string>
+ <string name="revanced_debug_stacktrace_summary_on">デバッグログにスタックトレースを含む</string>
+ <string name="revanced_debug_stacktrace_summary_off">デバッグログにスタックトレースが含まれていません</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced エラー時にトーストを表示</string>
+ <string name="revanced_debug_toast_on_error_summary_on">エラーが発生した場合、トーストが表示されます</string>
+ <string name="revanced_debug_toast_on_error_summary_off">エラーが発生した場合、トーストは表示されません</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">エラートーストをオフにすると、すべてのReVancedエラー通知が非表示になります。\n\n予期せぬイベントは通知されません。</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">「いいね!」/「購読」ボタンのグローを無効にする</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">いいねと購読ボタンは、言及されても輝きません</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">いいねと購読ボタンが表示されると点灯します</string>
+ <string name="revanced_hide_gray_separator_title">グレーのセパレーターを非表示</string>
+ <string name="revanced_hide_gray_separator_summary_on">ホームフィードの動画の間に表示される、グレーのセパレーターは非表示です</string>
+ <string name="revanced_hide_gray_separator_summary_off">ホームフィードの動画の間に表示される、グレーのセパレーターは表示されます</string>
+ <string name="revanced_hide_channel_watermark_title">チャンネルの透かしを非表示</string>
+ <string name="revanced_hide_channel_watermark_summary_on">透かしは非表示です</string>
+ <string name="revanced_hide_channel_watermark_summary_off">透かしは表示されます</string>
+ <string name="revanced_hide_horizontal_shelves_title">横方向の棚を隠す</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">棚が表示されます</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">「参加」ボタンを隠す</string>
+ <string name="revanced_hide_join_membership_button_summary_on">ボタンは非表示です</string>
+ <string name="revanced_hide_join_membership_button_summary_off">ボタンは表示されます</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">チャンネルページで「自分のため」の棚を非表示にする</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">おすすめ欄は非表示です</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">おすすめ欄は表示されます</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">「通知」ボタンを非表示</string>
+ <string name="revanced_hide_notify_me_button_summary_on">ボタンは非表示です</string>
+ <string name="revanced_hide_notify_me_button_summary_off">ボタンは表示されます</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">推奨事項を非表示にする</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">おすすめは非表示です</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">おすすめが表示されます</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">「詳細を表示」ボタンを非表示</string>
+ <string name="revanced_hide_show_more_button_summary_on">ボタンは非表示です</string>
+ <string name="revanced_hide_show_more_button_summary_off">ボタンは表示されます</string>
+ <string name="revanced_hide_timed_reactions_title">リアクションを非表示</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Timed Reactions は非表示です</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Timed Reactions は表示されます</string>
+ <string name="revanced_hide_search_result_shelf_header_title">検索結果の棚ヘッダーを非表示</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">棚ヘッダーは非表示です</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">棚ヘッダーは表示されます</string>
+ <string name="revanced_hide_channel_guidelines_title">チャネルガイドラインを非表示</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">チャンネルガイドラインのバナーは非表示です</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">チャンネルガイドラインのバナーは表示されます</string>
+ <string name="revanced_hide_expandable_chip_title">動画の下に表示される展開可能なチップを非表示</string>
+ <string name="revanced_hide_expandable_chip_summary_on">検索結果の動画の下に表示される、展開可能なチップは非表示です</string>
+ <string name="revanced_hide_expandable_chip_summary_off">検索結果の動画の下に表示される、展開可能なチップは表示されます</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">画質メニューのフッターを非表示</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">画質メニューのフッターは非表示です</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">画質メニューのフッターは表示されます</string>
+ <string name="revanced_hide_community_posts_title">コミュニティの投稿を非表示にする</string>
+ <string name="revanced_hide_community_posts_summary_on">コミュニティの投稿は非表示です</string>
+ <string name="revanced_hide_community_posts_summary_off">コミュニティ投稿は表示されます</string>
+ <string name="revanced_hide_compact_banner_title">コンパクトなバナーを非表示にする</string>
+ <string name="revanced_hide_compact_banner_summary_on">コンパクトなバナーは非表示です</string>
+ <string name="revanced_hide_compact_banner_summary_off">コンパクトなバナーは表示されます</string>
+ <string name="revanced_hide_movies_section_title">映画欄を非表示</string>
+ <string name="revanced_hide_movies_section_summary_on">映画欄は非表示です</string>
+ <string name="revanced_hide_movies_section_summary_off">映画欄は表示されます</string>
+ <string name="revanced_hide_feed_survey_title">フィードのアンケートを非表示</string>
+ <string name="revanced_hide_feed_survey_summary_on">フィードのアンケートは非表示です</string>
+ <string name="revanced_hide_feed_survey_summary_off">フィードのアンケートは表示されます</string>
+ <string name="revanced_hide_community_guidelines_title">コミュニティガイドラインを非表示</string>
+ <string name="revanced_hide_community_guidelines_summary_on">コミュニティーガイドラインは非表示です</string>
+ <string name="revanced_hide_community_guidelines_summary_off">コミュニティガイドラインは表示されます</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">登録チャンネルのコミュニティガイドラインを非表示</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">登録チャンネルのコミュニティガイドラインは非表示です</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">登録チャンネルのコミュニティガイドラインは表示されます</string>
+ <string name="revanced_hide_channel_member_shelf_title">チャンネルのメンバー欄を非表示</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">チャンネルのメンバー欄は非表示です</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">チャンネルのメンバー欄は表示されます</string>
+ <string name="revanced_hide_emergency_box_title">緊急ボックスを非表示</string>
+ <string name="revanced_hide_emergency_box_summary_on">緊急ボックスは非表示です</string>
+ <string name="revanced_hide_emergency_box_summary_off">緊急ボックスは表示されます</string>
+ <string name="revanced_hide_info_panels_title">情報パネルを非表示</string>
+ <string name="revanced_hide_info_panels_summary_on">情報パネルは非表示です</string>
+ <string name="revanced_hide_info_panels_summary_off">情報パネルは表示されます</string>
+ <string name="revanced_hide_medical_panels_title">医療情報パネルを非表示</string>
+ <string name="revanced_hide_medical_panels_summary_on">医療情報パネルは非表示です</string>
+ <string name="revanced_hide_medical_panels_summary_off">医療情報パネルは表示されます</string>
+ <string name="revanced_hide_channel_bar_title">チャンネルバーを隠す</string>
+ <string name="revanced_hide_channel_bar_summary_on">チャンネルバーは非表示です</string>
+ <string name="revanced_hide_channel_bar_summary_off">チャンネルバーが表示されます</string>
+ <string name="revanced_hide_playables_title">Playablesを隠す</string>
+ <string name="revanced_hide_playables_summary_on">プレイ可能ファイルは非表示です</string>
+ <string name="revanced_hide_playables_summary_off">プレイブルが表示されます</string>
+ <string name="revanced_hide_quick_actions_title">全画面表示でクイックアクションを隠す</string>
+ <string name="revanced_hide_quick_actions_summary_on">クイックアクションは非表示です</string>
+ <string name="revanced_hide_quick_actions_summary_off">クイックアクションを表示する</string>
+ <string name="revanced_hide_related_videos_title">クイックアクションで関連するビデオを隠す</string>
+ <string name="revanced_hide_related_videos_summary_on">関連するビデオは非表示です</string>
+ <string name="revanced_hide_related_videos_summary_off">関連するビデオが表示されます</string>
+ <string name="revanced_hide_image_shelf_title">検索結果に画像棚を隠す</string>
+ <string name="revanced_hide_image_shelf_summary_on">画像棚は非表示です</string>
+ <string name="revanced_hide_image_shelf_summary_off">画像棚が表示されています</string>
+ <string name="revanced_hide_latest_posts_ads_title">最新の投稿を非表示</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">最新の投稿は非表示です</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">最新の投稿が表示されます</string>
+ <string name="revanced_hide_mix_playlists_title">ミックスプレイリストを隠す</string>
+ <string name="revanced_hide_mix_playlists_summary_on">ミックスプレイリストは非表示です</string>
+ <string name="revanced_hide_mix_playlists_summary_off">ミックス プレイリストが表示されます</string>
+ <string name="revanced_hide_artist_cards_title">アーティストカードを隠す</string>
+ <string name="revanced_hide_artist_cards_summary_on">アーティストカードは非表示です</string>
+ <string name="revanced_hide_artist_cards_summary_off">アーティストカードが表示されます</string>
+ <string name="revanced_hide_chips_shelf_title">チップ棚を隠す</string>
+ <string name="revanced_hide_chips_shelf_summary_on">チップ棚は非表示です</string>
+ <string name="revanced_hide_chips_shelf_summary_off">チップ棚が表示されています</string>
+ <string name="revanced_hide_attributes_section_title">属性セクションを非表示</string>
+ <string name="revanced_hide_attributes_section_summary_on">「注目の場所」、ゲームと音楽のセクションは非表示です</string>
+ <string name="revanced_hide_attributes_section_summary_off">「注目の場所」、ゲーム、音楽セクションが表示されます</string>
+ <string name="revanced_hide_chapters_section_title">章節を非表示</string>
+ <string name="revanced_hide_chapters_section_summary_on">章節は非表示です</string>
+ <string name="revanced_hide_chapters_section_summary_off">章節を表示</string>
+ <string name="revanced_hide_podcast_section_title">「ポッドキャストを探索」セクションを非表示</string>
+ <string name="revanced_hide_podcast_section_summary_on">「ポッドキャストを探索」セクションは非表示です</string>
+ <string name="revanced_hide_podcast_section_summary_off">「ポッドキャストを探索」セクションが表示されます</string>
+ <string name="revanced_hide_info_cards_section_title">情報カードセクションを隠す</string>
+ <string name="revanced_hide_info_cards_section_summary_on">情報カードセクションは非表示です</string>
+ <string name="revanced_hide_info_cards_section_summary_off">カード情報セクションが表示されます</string>
+ <string name="revanced_hide_transcript_section_title">トランスクリプトセクションを隠す</string>
+ <string name="revanced_hide_transcript_section_summary_on">トランスクリプトセクションは非表示です</string>
+ <string name="revanced_hide_transcript_section_summary_off">トランスクリプトセクションが表示されます</string>
+ <string name="revanced_hide_description_components_screen_title">概要欄</string>
+ <string name="revanced_hide_description_components_screen_summary">概要欄のコンポーネントを非表示または表示</string>
+ <string name="revanced_custom_filter_screen_title">カスタムフィルター</string>
+ <string name="revanced_custom_filter_screen_summary">カスタムフィルタを使用してコンポーネントを隠す</string>
+ <string name="revanced_custom_filter_title">カスタムフィルタを有効にする</string>
+ <string name="revanced_custom_filter_summary_on">カスタムフィルタは有効です</string>
+ <string name="revanced_custom_filter_summary_off">カスタムフィルタは無効です</string>
+ <string name="revanced_custom_filter_strings_title">カスタムフィルター</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">新しい行で区切られたフィルタリングするコンポーネントパスビルダー文字列のリスト</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">無効なカスタムフィルター: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">キーワード内容を隠す</string>
+ <string name="revanced_hide_keyword_content_screen_summary">キーワードフィルタを使用して検索とフィードビデオを非表示</string>
+ <string name="revanced_hide_keyword_content_home_title">キーワードでホームビデオを隠す</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">ホームタブの動画はキーワードでフィルタリングされます</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">ホームタブの動画はキーワードでフィルターされていません</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">キーワードで購読中の動画を隠す</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">サブスクリプションタブの動画はキーワードでフィルタリングされます</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">サブスクリプションタブの動画はキーワードでフィルタリングされません</string>
+ <string name="revanced_hide_keyword_content_search_title">キーワードで検索結果を非表示</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">検索結果はキーワードでフィルタリングされます</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">検索結果はキーワードでフィルタされていません</string>
+ <string name="revanced_hide_keyword_content_phrases_title">隠すキーワード</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">非表示にするキーワードとフレーズ 新しい行で区切られた\n\n中央に大文字を含む単語はケーシングで入力する必要があります (iPhone、TikTok、LeBlancなど)</string>
+ <string name="revanced_hide_keyword_content_about_title">キーワードフィルタリングについて</string>
+ <string name="revanced_hide_keyword_content_about_summary">ホーム/登録/検索結果は、キーワードフレーズに一致するコンテンツを非表示にするためにフィルタリングされます\n\n制限事項:\n• 一部のショートは非表示にされない場合があります\n• 一部のUIコンポーネントが非表示にされない場合があります\n• キーワードを検索しても結果が表示されない場合があります</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">無効なキーワードです。フィルタとして使用できません: \'%s\'</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">無効なキーワードです。\'%1$s\' は %2$d 文字未満です</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">キーワード \'$s\' はすべてのビデオを非表示にします</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">一般的な広告を非表示</string>
+ <string name="revanced_hide_general_ads_summary_on">一般広告は非表示です</string>
+ <string name="revanced_hide_general_ads_summary_off">一般広告が表示されます</string>
+ <string name="revanced_hide_fullscreen_ads_title">全画面広告を非表示</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">フルスクリーン広告を非表示\n\nこれは古いデバイスでのみ利用できます</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">全画面表示の広告</string>
+ <string name="revanced_hide_buttoned_ads_title">ボタン付き広告を隠す</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">ボタン付き広告は非表示です</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">ボタンをクリックした広告が表示されます</string>
+ <string name="revanced_hide_paid_promotion_label_title">有料プロモーションラベルを非表示</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">有料プロモーションラベルは非表示です</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">有料プロモーションラベルが表示されます</string>
+ <string name="revanced_hide_self_sponsor_ads_title">自己スポンサーカードを隠す</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">自己スポンサーカードは非表示です</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">自己スポンサーカードが表示されます</string>
+ <string name="revanced_hide_products_banner_title">商品を表示するにはバナーを隠す</string>
+ <string name="revanced_hide_products_banner_summary_on">バナーは非表示です</string>
+ <string name="revanced_hide_products_banner_summary_off">バナーを表示</string>
+ <string name="revanced_hide_shopping_links_title">ビデオの説明内のショッピングリンクを非表示</string>
+ <string name="revanced_hide_shopping_links_summary_on">ショッピングのリンクは非表示です</string>
+ <string name="revanced_hide_shopping_links_summary_off">ショッピングのリンクが表示されます</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">チャネルページの「ストア訪問」ボタンを非表示にする</string>
+ <string name="revanced_hide_visit_store_button_summary_on">ボタンは非表示です</string>
+ <string name="revanced_hide_visit_store_button_summary_off">ボタンは表示されます</string>
+ <string name="revanced_hide_web_search_results_title">ウェブ検索結果を隠す</string>
+ <string name="revanced_hide_web_search_results_summary_on">ウェブ検索結果は表示されません</string>
+ <string name="revanced_hide_web_search_results_summary_off">ウェブ検索結果が表示されます</string>
+ <string name="revanced_hide_merchandise_banners_title">商品バナーを非表示</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">商品バナーは非表示です</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">商品バナーが表示されます</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">全画面広告を非表示にするには、古い端末でのみ動作します</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube プレミアムプロモーションを非表示</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube プレミアムプロモーションが非表示になります</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTubeプレミアムプロモーションが表示されます</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">動画広告を隠す</string>
+ <string name="revanced_hide_video_ads_summary_on">ビデオ広告は非表示です</string>
+ <string name="revanced_hide_video_ads_summary_off">動画広告が表示されます</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL をクリップボードにコピーしました</string>
+ <string name="revanced_share_copy_url_timestamp_success">タイムスタンプ付きのURLがコピーされました</string>
+ <string name="revanced_copy_video_url_title">動画のコピーURLボタンを表示</string>
+ <string name="revanced_copy_video_url_summary_on">ボタンが表示されます。タップして動画のURLをコピーします。長押しするとタイムスタンプ付きの動画のURLをコピーします。</string>
+ <string name="revanced_copy_video_url_summary_off">ボタンは表示されません</string>
+ <string name="revanced_copy_video_url_timestamp_title">コピータイムスタンプURLボタンを表示</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">ボタンが表示されます。タップするとタイムスタンプ付きの動画URLをコピーします。長押しするとタイムスタンプなしで動画をコピーできます。</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">ボタンは表示されません</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">ビューアの裁量ダイアログを削除</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">ダイアログは削除されます</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">ダイアログを表示します</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">これは年齢制限を回避するものではありません。自動的に受け入れるだけです。</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">外部ダウンロード</string>
+ <string name="revanced_external_downloader_screen_summary">外部ダウンローダーの設定</string>
+ <string name="revanced_external_downloader_title">外部ダウンロードボタンを表示</string>
+ <string name="revanced_external_downloader_summary_on">プレイヤーに表示されるダウンロードボタン</string>
+ <string name="revanced_external_downloader_summary_off">プレイヤーにダウンロードボタンが表示されません</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">ダウンロードアクションボタンを上書き</string>
+ <string name="revanced_external_downloader_action_button_summary_on">ダウンロードボタンで外部ダウンローダーを開きます</string>
+ <string name="revanced_external_downloader_action_button_summary_off">ダウンロードボタンでネイティブアプリ内ダウンローダーを開きます</string>
+ <string name="revanced_external_downloader_name_title">ダウンロードパッケージ名</string>
+ <string name="revanced_external_downloader_name_summary">NewPipeやSealなど、インストールされている外部ダウンローダーアプリのパッケージ名</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s はインストールされていません。インストールしてください。</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">シークジェスチャーを無効にする</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">ジェスチャーは無効です</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">ジェスチャーは有効です</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">シークバータップを有効にする</string>
+ <string name="revanced_seekbar_tapping_summary_on">シークバーのタップは有効です</string>
+ <string name="revanced_seekbar_tapping_summary_off">シークバーのタップは無効です</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">明るさジェスチャーを有効にする</string>
+ <string name="revanced_swipe_brightness_summary_on">明るさスワイプは有効です</string>
+ <string name="revanced_swipe_brightness_summary_off">明るさのスワイプは無効です</string>
+ <string name="revanced_swipe_volume_title">ボリュームジェスチャーを有効にする</string>
+ <string name="revanced_swipe_volume_summary_on">音量のスワイプは有効です</string>
+ <string name="revanced_swipe_volume_summary_off">音量のスワイプは無効です</string>
+ <string name="revanced_swipe_press_to_engage_title">プレスツースワイプジェスチャーを有効にする</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Press-to-swipeは有効です</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Press-to-swipeは無効です</string>
+ <string name="revanced_swipe_haptic_feedback_title">触覚フィードバックを有効にする</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptic feedback is enabled</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">振動フィードバックは無効です</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">明るさを保存して復元</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">フルスクリーンを終了または入力したときに明るさを保存して復元します</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">フルスクリーンを終了または入力したときに明るさを保存および復元しない</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">自動明るさジェスチャーを有効にする</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">明るさジェスチャーの最小値まで下にスワイプすると、自動明るさが有効になります</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">最低値に下にスワイプすると、自動明るさの自動調節は有効になりません</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">自動</string>
+ <string name="revanced_swipe_overlay_timeout_title">スワイプオーバーレイのタイムアウト</string>
+ <string name="revanced_swipe_overlay_timeout_summary">オーバーレイが表示されるミリ秒の量</string>
+ <string name="revanced_swipe_text_overlay_size_title">スワイプオーバーレイのテキストサイズ</string>
+ <string name="revanced_swipe_text_overlay_size_summary">スワイプオーバーレイのテキストサイズ</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">背景のスワイプ表示</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">オーバーレイの背景をスワイプ表示する</string>
+ <string name="revanced_swipe_threshold_title">スワイプの大きさのしきい値</string>
+ <string name="revanced_swipe_threshold_summary">スワイプのしきい値が発生します</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">自動字幕を無効にする</string>
+ <string name="revanced_auto_captions_summary_on">自動字幕は無効です</string>
+ <string name="revanced_auto_captions_summary_off">自動キャプションは有効です</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">アクションボタン</string>
+ <string name="revanced_hide_buttons_screen_summary">ビデオ下のボタンを非表示または表示</string>
+ <string name="revanced_hide_like_dislike_button_title">「いいね」と「いいね」を隠す</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">「いいね」ボタンと「嫌い」ボタンは非表示になります</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">「いいね」ボタンと「嫌い」ボタンが表示されます</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">シェアを隠す</string>
+ <string name="revanced_hide_share_button_summary_on">共有ボタンは非表示です</string>
+ <string name="revanced_hide_share_button_summary_off">共有ボタンが表示されます</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">レポートを隠す</string>
+ <string name="revanced_hide_report_button_summary_on">レポートボタンは非表示です</string>
+ <string name="revanced_hide_report_button_summary_off">レポート ボタンが表示されます</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">リミックスを隠す</string>
+ <string name="revanced_hide_remix_button_summary_on">リミックスボタンは非表示です</string>
+ <string name="revanced_hide_remix_button_summary_off">リミックスボタンが表示されます</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">ダウンロードを非表示</string>
+ <string name="revanced_hide_download_button_summary_on">ダウンロードボタンは非表示です</string>
+ <string name="revanced_hide_download_button_summary_off">ダウンロードボタンが表示されます</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Thanks ボタンを非表示</string>
+ <string name="revanced_hide_thanks_button_summary_on">「Thanks」ボタンは非表示です</string>
+ <string name="revanced_hide_thanks_button_summary_off">「Thanks」ボタンは表示されます</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">クリップボタンは非表示です</string>
+ <string name="revanced_hide_clip_button_summary_off">クリップボタンを表示する</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">プレイリストに保存を隠す</string>
+ <string name="revanced_hide_playlist_button_summary_on">プレイリストに保存ボタンが表示されません</string>
+ <string name="revanced_hide_playlist_button_summary_off">プレイリストに保存ボタンが表示されます</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">自動再生ボタンを隠す</string>
+ <string name="revanced_hide_autoplay_button_summary_on">自動再生ボタンは非表示です</string>
+ <string name="revanced_hide_autoplay_button_summary_off">自動再生ボタンを表示する</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">字幕ボタンを隠す</string>
+ <string name="revanced_hide_captions_button_summary_on">キャプションボタンは非表示です</string>
+ <string name="revanced_hide_captions_button_summary_off">キャプションボタンが表示されます</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">キャストボタンを隠す</string>
+ <string name="revanced_hide_cast_button_summary_on">キャスト ボタンは非表示です</string>
+ <string name="revanced_hide_cast_button_summary_off">キャスト ボタンは表示されます</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">ナビゲーションバーのボタンを非表示または変更する</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">ホームを隠す</string>
+ <string name="revanced_hide_home_button_summary_on">ホームボタンは非表示です</string>
+ <string name="revanced_hide_home_button_summary_off">ホームボタンを表示</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">ショーツを隠す</string>
+ <string name="revanced_hide_shorts_button_summary_on">ショーツボタンは非表示です</string>
+ <string name="revanced_hide_shorts_button_summary_off">ショーツ ボタンは表示されます</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">作成を隠す</string>
+ <string name="revanced_hide_create_button_summary_on">作成ボタンは非表示です</string>
+ <string name="revanced_hide_create_button_summary_off">作成ボタンが表示されます</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">サブスクリプションを非表示</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">購読ボタンは非表示です</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">サブスクリプションボタンが表示されます</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">通知で作成を切り替える</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Create button is switched with Notifications button\n\nNote: Enabling this also forcly hides video ads</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">format@@0 ボタンは通知ボタンで切り替えられません</string>
+ <string name="revanced_hide_navigation_button_labels_title">ナビゲーションボタンのラベルを隠す</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">ラベルは非表示です</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">ラベルを表示する</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">プレイヤーフライアウトメニューアイテムを非表示または表示</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">キャプションを隠す</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">キャプションメニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">図表番号メニューが表示されます</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">追加設定を隠す</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">追加設定メニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">追加設定メニューが表示されます</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">ループビデオを隠す</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">ループビデオメニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">ループビデオメニューを表示する</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">アンビエントモードを隠す</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">アンビエントモードメニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">アンビエントモードメニューが表示されます</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">ヘルプとフィードバックを非表示にする &</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">ヘルプとフィードバックメニューは非表示です &</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">ヘルプとフィードバックメニューは表示されます &</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">再生速度を隠す</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">再生速度メニューが表示されません</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">再生スピードメニューが表示されます</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">詳細情報を隠す</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">その他の情報メニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">詳細情報メニューが表示されます</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">ロック画面を隠す</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">ロック画面のメニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">ロック画面のメニューが表示されます</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">オーディオトラックを隠す</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">オーディオトラックメニューは非表示です</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">オーディオトラックメニューが表示されます</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">VRでウォッチを隠す</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">VRメニューを非表示にする</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">VRメニューで見る</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">前の & 次のビデオボタンを隠す</string>
+ <string name="revanced_hide_player_buttons_summary_on">ボタンは非表示です</string>
+ <string name="revanced_hide_player_buttons_summary_off">ボタンを表示する</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">アルバムカードを隠す</string>
+ <string name="revanced_hide_album_cards_summary_on">アルバムカードは非表示です</string>
+ <string name="revanced_hide_album_cards_summary_off">アルバムカードが表示されます</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">コメント</string>
+ <string name="revanced_comments_screen_summary">コメントセクションのコンポーネントを非表示または表示</string>
+ <string name="revanced_hide_comments_by_members_header_title">「メンバーによるコメント」ヘッダーを非表示</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">「メンバーによるコメント」ヘッダーは非表示です</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">「メンバーによるコメント」ヘッダーが表示されています</string>
+ <string name="revanced_hide_comments_section_title">コメントセクションを非表示</string>
+ <string name="revanced_hide_comments_section_summary_on">コメントセクションは非表示です</string>
+ <string name="revanced_hide_comments_section_summary_off">コメントセクションが表示されます</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">「ショートカットを作成」ボタンを非表示</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">「ショートカットを作成」ボタンは非表示です</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">「ショートカットを作成」ボタンが表示されます</string>
+ <string name="revanced_hide_comments_preview_comment_title">プレビューコメントを隠す</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">プレビューコメントは非表示です</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">プレビューコメントが表示されます</string>
+ <string name="revanced_hide_comments_thanks_button_title">感謝ボタンを非表示</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">おかげでボタンは表示されません</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Thanks button is showed</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">タイムスタンプと絵文字ボタンを隠す</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">タイムスタンプと絵文字ボタンは非表示です</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">タイムスタンプと絵文字ボタンが表示されます</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">クラウドファンディングボックスを非表示</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">クラウドファンディングボックスは非表示です</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">クラウドファンディングボックスが表示されます</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">終了画面のカードを隠す</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">終了画面のカードは非表示です</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">終了画面のカードが表示されます</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">フィルタバー</string>
+ <string name="revanced_hide_filter_bar_screen_summary">フィード、検索、および関連する動画のフィルターバーを非表示または表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">フィードで非表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">フィードに非表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">フィードに表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">検索時に隠す</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">非表示にする</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">検索結果に表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">関連するビデオで非表示</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">関連するビデオに表示しない</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">関連する動画に表示</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">浮動マイクボタンを非表示</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">マイクボタンを非表示</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">マイクボタンを表示</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">全画面表示でアンビエントモードを無効にする</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">アンビエントモードは無効です</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">アンビエントモード有効</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">情報カードを隠す</string>
+ <string name="revanced_hide_info_cards_summary_on">カードは非表示です</string>
+ <string name="revanced_hide_info_cards_summary_off">カードは表示されています</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">数字のアニメーションを無効にする</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">ローリング番号はアニメーションされていません</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">ローリング番号はアニメーション化されています</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">ビデオプレーヤーでシークバーを隠す</string>
+ <string name="revanced_hide_seekbar_summary_on">ビデオプレーヤーのシークバーは非表示です</string>
+ <string name="revanced_hide_seekbar_summary_off">ビデオプレーヤーのシークバーが表示されます</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">動画のサムネイルにシークバーを表示しない</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">サムネイルシークバーが非表示です</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">サムネイルシークバーが表示されます</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">ホームフィードにショートパンツを隠す</string>
+ <string name="revanced_hide_shorts_home_summary_on">ホームフィード内のショートパンツが表示されません</string>
+ <string name="revanced_hide_shorts_home_summary_off">ホームフィードに短縮形が表示されます</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">サブスクリプションフィード内のショーツを非表示</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">サブスクリプションフィードのショートパンツは非表示です</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">サブスクリプションフィードの短縮形が表示されます</string>
+ <string name="revanced_hide_shorts_search_title">検索結果にショーツを隠す</string>
+ <string name="revanced_hide_shorts_search_summary_on">検索結果の短縮形は非表示です</string>
+ <string name="revanced_hide_shorts_search_summary_off">検索結果の短縮形が表示されます</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">参加ボタンを隠す</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">結合ボタンは非表示です</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">結合ボタンが表示されます</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">購読ボタンを隠す</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">購読ボタンは非表示です</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">購読ボタンが表示されます</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">一時停止中のオーバーレイボタンを隠す</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">一時停止されたオーバーレイボタンは非表示です</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">一時停止されたオーバーレイボタンが表示されます</string>
+ <string name="revanced_hide_shorts_shop_button_title">ショップボタンを隠す</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">ショップボタンは非表示です</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">ショップボタンが表示されます</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">感謝ボタンを隠す</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super thanks button is hidden</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super thanks ボタンが表示されます</string>
+ <string name="revanced_hide_shorts_tagged_products_title">タグ付き製品を非表示</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">タグ付けされた商品は非表示です</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">タグ付けされた商品が表示されます</string>
+ <string name="revanced_hide_shorts_location_label_title">位置情報のラベルを隠す</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">ロケーションラベルは非表示です</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">位置情報ラベルが表示されます</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">プレイリストに保存ボタンを隠す</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">プレイリストにサウンドを保存します。</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">プレイリストにサウンドを保存する</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">検索候補を非表示</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">検索候補が非表示になります</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">検索候補が表示されます</string>
+ <string name="revanced_hide_shorts_like_button_title">「いいね」ボタンを隠す</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Like button is hidden</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">いいねボタンが表示されます</string>
+ <string name="revanced_hide_shorts_dislike_button_title">好ましくないボタンを隠す</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">嫌いなボタンは非表示です</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">嫌いなボタンが表示されます</string>
+ <string name="revanced_hide_shorts_comments_button_title">コメントボタンを隠す</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">コメントボタンは非表示です</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">コメントボタンが表示されます</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">リミックスボタンを隠す</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">リミックスボタンは非表示です</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">リミックスボタンが表示されます</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">シェアボタンを隠す</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">共有ボタンは非表示です</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">共有ボタンが表示されます</string>
+ <string name="revanced_hide_shorts_info_panel_title">情報パネルを隠す</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">情報パネルは非表示です</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">情報パネルを表示</string>
+ <string name="revanced_hide_shorts_channel_bar_title">チャンネルバーを隠す</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">チャンネルバーは非表示です</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">チャンネルバーが表示されます</string>
+ <string name="revanced_hide_shorts_video_title_title">ビデオのタイトルを隠す</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">タイトルは非表示です</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">タイトルを表示</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">サウンドメタデータのラベルを隠す</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">メタデータラベルは非表示です</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">メタデータラベルが表示されます</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">フルビデオリンクのラベルを隠す</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">ビデオリンクのラベルは非表示です</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">ビデオリンクのラベルが表示されます</string>
+ <string name="revanced_hide_shorts_sound_button_title">サウンドボタンを隠す</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">サウンドボタンは非表示です</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">サウンドボタンが表示されます</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">ナビゲーションバーを隠す</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">ナビゲーションバーは非表示です</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">ナビゲーションバーを表示</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">提案されたビデオ終了画面を無効にする</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">推奨動画は無効になります</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">おすすめの動画が表示されます</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">タイムスタンプを隠す</string>
+ <string name="revanced_hide_timestamp_summary_on">タイムスタンプは非表示です</string>
+ <string name="revanced_hide_timestamp_summary_off">タイムスタンプを表示</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">プレーヤーのポップアップパネルを隠す</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">プレーヤーのポップアップパネルが非表示になります</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">プレーヤーのポップアップパネルが表示されます</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">プレイヤーオーバーレイの透明度</string>
+ <string name="revanced_player_overlay_opacity_summary">0-100の間の不透明度の値 (0が透明)</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">プレイヤーオーバーレイの不透明度は0-100の間でなければなりません</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">非表示</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available(API タイムアウト)</string>
+ <string name="revanced_ryd_failure_connection_status_code">嫌がらせは利用できません( %dの状態)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Disfavs not available(client API limit reached)</string>
+ <string name="revanced_ryd_failure_generic">嫌いは利用できません(%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Return YouTube 嫌いで投票するにはビデオを再読み込みしてください</string>
+ <string name="revanced_ryd_enable_summary_on">嫌がらせが表示されます</string>
+ <string name="revanced_ryd_enable_summary_off">不快感は表示されません</string>
+ <string name="revanced_ryd_shorts_title">ショーツで嫌いを表示する</string>
+ <string name="revanced_ryd_shorts_summary_on">ショートパンツに表示される嫌われています</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">ショートで低評価数を表示します\n\n制限: シークレットモードでは低評価数が表示されないことがあります</string>
+ <string name="revanced_ryd_shorts_summary_off">ショーツに隠された嫌いなもの</string>
+ <string name="revanced_ryd_dislike_percentage_title">パーセントで嫌いです</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">パーセンテージで表示されている嫌いです</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">番号として表示されていないお気に入りの数</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">コンパクトないいねボタン</string>
+ <string name="revanced_ryd_compact_layout_summary_on">スタイルボタンの最小幅のスタイル</string>
+ <string name="revanced_ryd_compact_layout_summary_off">最高の外観のためにスタイル化されたボタン</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">API が利用できない場合はトーストを表示</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">リターンYouTubeの嫌いが利用できない場合トーストが表示されます</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Return YouTube 嫌いが利用できない場合はトーストは表示されません</string>
+ <string name="revanced_ryd_about">このアプリについて</string>
+ <string name="revanced_ryd_attribution_summary">データはリターンYouTubeの嫌いなAPIによって提供されます。詳細はここをタップしてください</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTube嫌いなこのデバイスのAPI統計</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API 応答時間、平均</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API応答時間、最小値</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API応答時間、最大値</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API応答時間、最後の動画</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes temporarily not available - Client API rate limit in effective</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API fetch votes, number of calls</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">ネットワーク通話がありません</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d ネットワーク通話</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API fetch votes, number of timeout</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">ネットワーク通話がタイムアウトされていません</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d ネットワーク呼び出しがタイムアウトしました</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">APIクライアントのレート制限</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">クライアントレート制限が見つかりません</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">クライアントレート制限が %d 回発生しました</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d ミリ秒前</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">ワイド検索バーを有効にする</string>
+ <string name="revanced_wide_searchbar_summary_on">幅広い検索バーが有効です</string>
+ <string name="revanced_wide_searchbar_summary_off">ワイド検索バーは無効です</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">古いシークバーのサムネイルを復元</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">シークバーのサムネイルがシークバーの上に表示されます</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">シークバーのサムネイルが全画面表示されます</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock を有効にする</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlockは、YouTube動画の厄介な部分をスキップするためのクラウドソースのシステムです</string>
+ <string name="revanced_sb_appearance_category">外観</string>
+ <string name="revanced_sb_enable_voting">投票ボタンを表示</string>
+ <string name="revanced_sb_enable_voting_sum_on">セグメント投票ボタンが表示されます</string>
+ <string name="revanced_sb_enable_voting_sum_off">セグメント投票ボタンは表示されません</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">コンパクトスキップボタンを使用</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">スキップボタンの最小幅のスタイル</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">スキップボタンでスタイルを最適化する</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">スキップボタンを自動的に隠す</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Skip button hides after a few seconds</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">スキップボタンをセグメント全体に表示する</string>
+ <string name="revanced_sb_general_skiptoast">自動スキップ時にトーストを表示</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">セグメントが自動的にスキップされたときにトーストが表示されます。例を見るにはここをタップしてください</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">トーストは表示されません。例を見るにはここをタップしてください</string>
+ <string name="revanced_sb_general_time_without">セグメントなしでビデオの長さを表示</string>
+ <string name="revanced_sb_general_time_without_sum_on">動画の長さから全てのセグメントを除いた全ての動画の長さの横に括弧で表示</string>
+ <string name="revanced_sb_general_time_without_sum_off">フルビデオの長さを表示</string>
+ <string name="revanced_sb_create_segment_category">新しいセグメントを作成する</string>
+ <string name="revanced_sb_enable_create_segment">新しいセグメント作成ボタンを表示</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">新しいセグメントを作成ボタンが表示されます</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">新規セグメント作成ボタンは表示されません</string>
+ <string name="revanced_sb_general_adjusting">新しいセグメントステップを調整する</string>
+ <string name="revanced_sb_general_adjusting_sum">新しいセグメントを作成する際の時間調整ボタンの移動時間 (ミリ秒)</string>
+ <string name="revanced_sb_general_adjusting_invalid">値は正の数でなければなりません</string>
+ <string name="revanced_sb_guidelines_preference_title">ガイドラインを見る</string>
+ <string name="revanced_sb_guidelines_preference_sum">ガイドラインには、新しいセグメントを作成するためのルールとヒントが含まれています</string>
+ <string name="revanced_sb_guidelines_popup_title">ガイドラインに従ってください</string>
+ <string name="revanced_sb_guidelines_popup_content">新しいセグメントを作成する前にSponsorBlockガイドラインを読んでください</string>
+ <string name="revanced_sb_guidelines_popup_already_read">既に読んでいます</string>
+ <string name="revanced_sb_guidelines_popup_open">見る</string>
+ <string name="revanced_sb_general">一般設定</string>
+ <string name="revanced_sb_toast_on_connection_error_title">API が利用できない場合はトーストを表示</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">SponsorBlockが利用できない場合はトーストが表示されます</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">SponsorBlockが利用できない場合はトーストは表示されません</string>
+ <string name="revanced_sb_general_skipcount">スキップ数の追跡を有効にする</string>
+ <string name="revanced_sb_general_skipcount_sum_on">SponsorBlockリーダーボードは、どれだけの時間が節約されたかを知ることができます。セグメントがスキップされるたびにメッセージがリーダーボードに送信されます。</string>
+ <string name="revanced_sb_general_skipcount_sum_off">スキップカウント追跡が有効になっていません</string>
+ <string name="revanced_sb_general_min_duration">最小のセグメントの長さ</string>
+ <string name="revanced_sb_general_min_duration_sum">この値より短いセグメントは(秒単位で)表示またはスキップされません</string>
+ <string name="revanced_sb_general_uuid">あなたのプライベート ユーザー ID</string>
+ <string name="revanced_sb_general_uuid_sum">これは非公開にする必要があります。パスワードのようなもので誰とも共有するべきではありません。誰かがこれを持っている場合、あなたになりすますことができます</string>
+ <string name="revanced_sb_general_uuid_invalid">プライベートユーザーIDは30文字以上でなければなりません</string>
+ <string name="revanced_sb_general_api_url">API の URL を変更</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlockのアドレスはサーバーへの呼び出しに使用されます</string>
+ <string name="revanced_sb_api_url_reset">API の URL をリセットしました</string>
+ <string name="revanced_sb_api_url_invalid">API URL が無効です</string>
+ <string name="revanced_sb_api_url_changed">API の URL を変更しました</string>
+ <string name="revanced_sb_settings_ie">設定のインポート/エクスポート</string>
+ <string name="revanced_sb_settings_copy">コピー</string>
+ <string name="revanced_sb_settings_ie_sum">ReVancedや他のSponsorBlockプラットフォームにインポート/エクスポートできるSponsorBlock JSON設定</string>
+ <string name="revanced_sb_settings_ie_sum_warning">ReVancedや他のSponsorBlockプラットフォームにインポート/エクスポートできるSponsorBlock JSON設定。 これにはプライベートユーザーIDが含まれます。これを賢く共有してください</string>
+ <string name="revanced_sb_settings_import_successful">設定が正常にインポートされました</string>
+ <string name="revanced_sb_settings_import_failed">インポートに失敗しました: %s</string>
+ <string name="revanced_sb_settings_export_failed">エクスポートに失敗しました: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">あなたの設定にはプライベートスポンサーブロックのユーザーIDが含まれています。\n\nあなたのユーザーIDはパスワードのようなもので、それは決して共有されるべきではありません。\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">今後表示しない</string>
+ <string name="revanced_sb_diff_segments">セグメントの動作を変更する</string>
+ <string name="revanced_sb_segments_sponsor">スポンサー</string>
+ <string name="revanced_sb_segments_sponsor_sum">有料プロモーション, 有料紹介と直接広告. ない原因/原因/クリエイター/ウェブサイト/製品への自己宣伝または無料シャウトアウト 彼らが好きなもの</string>
+ <string name="revanced_sb_segments_selfpromo">無報酬/セルフプロモーション</string>
+ <string name="revanced_sb_segments_selfpromo_sum">未払いまたは自己プロモーション以外の「スポンサー」と同様です。商品、寄付、または誰とコラボレーションしたかに関するセクションが含まれています。</string>
+ <string name="revanced_sb_segments_interaction">インタラクション リマインダー (チャンネル登録)</string>
+ <string name="revanced_sb_segments_interaction_sum">コンテンツの途中で、購読したりフォローしたりするための短いリマインダーです。 それが長いまたは特定の何かについてである場合、それは代わりに自己宣伝の下にあるべきである。</string>
+ <string name="revanced_sb_segments_highlight">強調表示</string>
+ <string name="revanced_sb_segments_highlight_sum">ほとんどの人が探しているビデオの一部</string>
+ <string name="revanced_sb_segments_intro">休憩/イントロ アニメーション</string>
+ <string name="revanced_sb_segments_intro_sum">実際のコンテンツを含まない間隔。一時停止、固定フレーム、繰り返しアニメーションを使用できます。情報を含むトランジションは含まれません。</string>
+ <string name="revanced_sb_segments_outro">エンドカード/クレジット</string>
+ <string name="revanced_sb_segments_outro_sum">クレジットまたはYouTubeのエンドカードが表示される場合、情報を持つ結論にはなりません</string>
+ <string name="revanced_sb_segments_preview">プレビュー/再読み込み/フック</string>
+ <string name="revanced_sb_segments_preview_sum">ビデオやシリーズの他のビデオで何が起こったのかを示すクリップのコレクション 全ての情報が他の場所で繰り返されます</string>
+ <string name="revanced_sb_segments_filler">無駄な脱線/冗談</string>
+ <string name="revanced_sb_segments_filler_sum">Tangential シーンは、ビデオの主な内容を理解する必要がないフィラーやユーモアにのみ追加されました。 コンテキストや背景の詳細を提供するセグメントが含まれていません</string>
+ <string name="revanced_sb_segments_nomusic">音楽: 音楽ではない区間</string>
+ <string name="revanced_sb_segments_nomusic_sum">ミュージックビデオでのみ使用できます。音楽がないミュージックビデオのセクションでは、別のカテゴリでカバーされていません。</string>
+ <string name="revanced_sb_skip_button_compact">スキップ</string>
+ <string name="revanced_sb_skip_button_compact_highlight">強調表示</string>
+ <string name="revanced_sb_skip_button_sponsor">スポンサーをスキップ</string>
+ <string name="revanced_sb_skip_button_selfpromo">プロモーションをスキップ</string>
+ <string name="revanced_sb_skip_button_interaction">対話をスキップ</string>
+ <string name="revanced_sb_skip_button_highlight">スキップ</string>
+ <string name="revanced_sb_skip_button_intro_beginning">イントロをスキップ</string>
+ <string name="revanced_sb_skip_button_intro_middle">間隔をスキップ</string>
+ <string name="revanced_sb_skip_button_intro_end">間隔をスキップ</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">プレビューをスキップ</string>
+ <string name="revanced_sb_skip_button_preview_middle">プレビューをスキップ</string>
+ <string name="revanced_sb_skip_button_preview_end">要約をスキップ</string>
+ <string name="revanced_sb_skip_button_filler">フィラーをスキップ</string>
+ <string name="revanced_sb_skip_button_nomusic">音楽以外をスキップ</string>
+ <string name="revanced_sb_skip_button_unsubmitted">セグメントをスキップ</string>
+ <string name="revanced_sb_skipped_sponsor">スキップしたスポンサー</string>
+ <string name="revanced_sb_skipped_selfpromo">スキップしたセルフプロモーション</string>
+ <string name="revanced_sb_skipped_interaction">スキップした迷惑なリマインダー</string>
+ <string name="revanced_sb_skipped_highlight">ハイライト表示にスキップ</string>
+ <string name="revanced_sb_skipped_intro_beginning">スキップしたイントロ</string>
+ <string name="revanced_sb_skipped_intro_middle">スキップされた休憩時間</string>
+ <string name="revanced_sb_skipped_intro_end">スキップされた休憩時間</string>
+ <string name="revanced_sb_skipped_outro">スキップしたアウトロ</string>
+ <string name="revanced_sb_skipped_preview_beginning">スキップしたプレビュー</string>
+ <string name="revanced_sb_skipped_preview_middle">スキップしたプレビュー</string>
+ <string name="revanced_sb_skipped_preview_end">スキップされた要約</string>
+ <string name="revanced_sb_skipped_filler">つなぎシーンをスキップしました</string>
+ <string name="revanced_sb_skipped_nomusic">スキップした無音</string>
+ <string name="revanced_sb_skipped_unsubmitted">未送信のセグメントをスキップしました</string>
+ <string name="revanced_sb_skipped_multiple_segments">複数のセグメントをスキップ</string>
+ <string name="revanced_sb_skip_automatically">自動的にスキップ</string>
+ <string name="revanced_sb_skip_automatically_once">一度自動的にスキップ</string>
+ <string name="revanced_sb_skip_showbutton">スキップボタンを表示</string>
+ <string name="revanced_sb_skip_seekbaronly">シークバーに表示</string>
+ <string name="revanced_sb_skip_ignore">無効</string>
+ <string name="revanced_sb_submit_failed_invalid">セグメントを送信できません: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlockは一時的にダウンしています</string>
+ <string name="revanced_sb_submit_failed_unknown_error">セグメントを送信できませんでした(状態: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">セグメントを送信できません。\nレート制限 (同じユーザーまたは IP アドレスの多すぎます)</string>
+ <string name="revanced_sb_submit_failed_forbidden">セグメントを送信できません: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">セグメントを送信できません。\n既に存在します</string>
+ <string name="revanced_sb_submit_succeeded">セグメントが正常に送信されました</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlockは一時的に利用できません(APIがタイムアウトしました)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlockは一時的に利用できません( %dの状態)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlockは一時的に利用できません</string>
+ <string name="revanced_sb_vote_failed_timeout">セグメントに投票できません(APIがタイムアウトしました)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">セグメントに投票できませんでした(状態: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">セグメントに投票できません: %s</string>
+ <string name="revanced_sb_vote_upvote">高評価</string>
+ <string name="revanced_sb_vote_downvote">低評価</string>
+ <string name="revanced_sb_vote_category">カテゴリーの変更</string>
+ <string name="revanced_sb_vote_no_segments">投票できるセグメントがありません</string>
+ <string name="revanced_sb_new_segment_choose_category">セグメントのカテゴリを選択してください</string>
+ <string name="revanced_sb_new_segment_disabled_category">カテゴリは設定で無効になっています。提出するカテゴリを有効にしてください。</string>
+ <string name="revanced_sb_new_segment_title">新しい SponsorBlock セグメント</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">%1$02d:%2$02d:%3$03d を新しいセグメントの開始または終了として設定しますか?</string>
+ <string name="revanced_sb_new_segment_mark_start">開始</string>
+ <string name="revanced_sb_new_segment_mark_end">終了</string>
+ <string name="revanced_sb_new_segment_now">今</string>
+ <string name="revanced_sb_new_segment_time_start">セグメントの開始時刻</string>
+ <string name="revanced_sb_new_segment_time_end">セグメントの終了時刻</string>
+ <string name="revanced_sb_new_segment_confirm_title">これらの変更は正しいですか?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">The segment is from\n\n%1$s\nto\n%2$s\n\n(%3$s)\n\nReady to submit?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">開始は終了前にする必要があります</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">最初にタイムバーに 2 つの場所をマークしてください</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">セグメントをプレビューし、スムーズにスキップするようにします</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">セグメントのタイミングを手動で編集</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">セグメントの開始または終了のタイミングを編集しますか?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">無効な時間の値です</string>
+ <string name="revanced_sb_stats">統計</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">統計は一時的に利用できません(APIがダウンしています)</string>
+ <string name="revanced_sb_stats_loading">読み込み中...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock は無効です</string>
+ <string name="revanced_sb_stats_username">あなたのユーザー名: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">ここをタップしてユーザー名を変更してください</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">ユーザー名を変更できませんでした。ステータス: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">ユーザー名は正常に変更されました</string>
+ <string name="revanced_sb_stats_reputation">あなたの評判は <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions"><b>%s</b> セグメントを作成しました</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlockリーダーボード</string>
+ <string name="revanced_sb_stats_saved"><b>%s</b> セグメントから人を保存しました</string>
+ <string name="revanced_sb_stats_saved_sum_zero">ここをタップすると、世界的な統計とトップの貢献者を見ることができます</string>
+ <string name="revanced_sb_stats_saved_sum">それは <b>%s</b> の生活です。<br>ここをタップしてリーダーボードを見る</string>
+ <string name="revanced_sb_stats_self_saved"><b>%s</b> セグメントをスキップしました</string>
+ <string name="revanced_sb_stats_self_saved_sum"><b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">スキップされたセグメントカウンターをリセットしますか?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s時間%2$s分</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s 分 %2$s 秒</string>
+ <string name="revanced_sb_stats_saved_second_format">%s 秒</string>
+ <string name="revanced_sb_color_dot_label">色:</string>
+ <string name="revanced_sb_color_changed">色を変更しました</string>
+ <string name="revanced_sb_color_reset">色をリセット</string>
+ <string name="revanced_sb_color_invalid">無効なカラーコード</string>
+ <string name="revanced_sb_reset_color">色をリセット</string>
+ <string name="revanced_sb_reset">リセット</string>
+ <string name="revanced_sb_about">このアプリについて</string>
+ <string name="revanced_sb_about_api_sum">SponsorBlock APIによって提供されるデータです。詳細はこちらをタップして他のプラットフォームのダウンロードをご覧ください。</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">アプリのバージョンを偽装する</string>
+ <string name="revanced_spoof_app_version_summary_on">バージョン偽装済み</string>
+ <string name="revanced_spoof_app_version_summary_off">バージョンはなりすましではありません</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">アプリのバージョンが以前のバージョンのYouTubeに偽装されます。\n\nこれによりアプリの外観や機能が変更されますが、予期せぬ結果が発生する可能性があります。\n\n後でオフにした場合は、UIのバグを防ぐためにアプリのデータを消去することをお勧めします。</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">アプリバージョンのターゲットを偽装する</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - ショートシークレットシークレットモードでRYDを復元</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - ワイドビデオスピード & クオリティメニューを復元</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - ライブラリタブを復元</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - 古いプレイリストシェルフを復元する</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - 古いUIレイアウトを復元</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">開始ページを設定</string>
+ <string name="revanced_start_page_entry_0">既定</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">ホーム</string>
+ <string name="revanced_start_page_entry_2">検索</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">サブスクリプション</string>
+ <string name="revanced_start_page_entry_4">探索</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">あなたタブ</string>
+ <string name="revanced_start_page_entry_7">いいね!された動画</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">沿革</string>
+ <string name="revanced_start_page_entry_9">トレンド</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Shortsプレイヤーの再開を無効にする</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shortsプレーヤーはアプリの起動時に再開しません</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">ショートプレイヤーはアプリの起動時に再開します</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">タブレットのレイアウトを有効にする</string>
+ <string name="revanced_tablet_layout_summary_on">タブレットのレイアウトは有効です</string>
+ <string name="revanced_tablet_layout_summary_off">タブレットのレイアウトは無効です</string>
+ <string name="revanced_tablet_layout_user_dialog_message">タブレットのレイアウトにコミュニティ投稿が表示されません</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">ミニプレイヤー</string>
+ <string name="revanced_miniplayer_screen_summary">アプリの最小化プレイヤーのスタイルを変更する</string>
+ <string name="revanced_miniplayer_type_title">ミニプレーヤータイプ</string>
+ <string name="revanced_miniplayer_type_entry_1">オリジナル</string>
+ <string name="revanced_miniplayer_type_entry_2">電話番号</string>
+ <string name="revanced_miniplayer_type_entry_3">タブレット</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">モダン2</string>
+ <string name="revanced_miniplayer_type_entry_6">モダン3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">展開と閉じるボタンを非表示</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">展開と閉じる ボタンが表示されます</string>
+ <string name="revanced_miniplayer_hide_subtext_title">サブテキストを非表示</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">サブテキストは非表示です</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">サブテキストを表示します</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">スキップと戻るボタンを隠す</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">スキップとバックが非表示になります</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">スキップとバックが表示されます</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">0-100の間の不透明度の値 (0が透明)</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">ミニプレーヤーオーバーレイの不透明度は0-100の間でなければなりません</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">グラデーション読み込み画面を有効にする</string>
+ <string name="revanced_gradient_loading_screen_summary_on">画面をロードするとグラデーションの背景が表示されます</string>
+ <string name="revanced_gradient_loading_screen_summary_off">画面を読み込むと背景が正しく表示されます</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">カスタムシークバーの色を有効にする</string>
+ <string name="revanced_seekbar_custom_color_summary_on">カスタムシークバーの色を表示する</string>
+ <string name="revanced_seekbar_custom_color_summary_off">元のシークバーの色が表示されます</string>
+ <string name="revanced_seekbar_custom_color_value_title">カスタムシークバーの色</string>
+ <string name="revanced_seekbar_custom_color_value_summary">シークバーの色</string>
+ <string name="revanced_seekbar_custom_color_invalid">シークバーの色の値が無効です。デフォルト値を使用してください。</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">ホームタブ</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">サブスクリプションタブ</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">あなたタブ</string>
+ <string name="revanced_alt_thumbnail_player_title">プレイヤーのプレイリスト、推奨事項</string>
+ <string name="revanced_alt_thumbnail_search_title">検索結果</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & オリジナルのサムネイル</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & 静止画撮影</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">静止画撮影</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrowはYouTube動画のためにクラウドソースされたサムネイルを提供します。これらのサムネイルは、YouTubeが提供するものよりも関連性が高いことがよくあります\n\n有効にすると、ビデオのURLがAPIサーバーに送信され、他のデータは送信されません。ビデオにDeArrowサムネイルがない場合は、オリジナルのサムネイルまたは静止画キャプチャが表示されます\n\nDeArrowについて詳しく知るにはここをタップしてください</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">API が利用できない場合はトーストを表示</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">DeArrowが利用できない場合はトーストが表示されます</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">DeArrowが利用できない場合はトーストは表示されません</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrowサムネイルキャッシュエンドポイントのURL</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">静止画撮影</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">静止画は各動画の最初/中/終わりから撮影されます。これらの画像はYouTubeに組み込まれており、外部 API は使用されていません。</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">高速静止画を使用する</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">中品質の静止画キャプチャを使用します。サムネイルの読み込みは速くなりますが、ライブストリーム、未発表、または非常に古い動画には空白のサムネイルが表示されることがあります。</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">高品質のキャプチャを使用する</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">動画を撮影する時間</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">ビデオの始まり</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">ビデオの中央</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">ビデオの終わり</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrowは一時的に利用できません(ステータスコード: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrowは一時的に利用できません</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVancedアナウンスを表示</string>
+ <string name="revanced_announcements_summary_on">起動時にお知らせが表示されます</string>
+ <string name="revanced_announcements_summary_off">起動時にお知らせは表示されません</string>
+ <string name="revanced_announcements_enabled_summary">起動時にお知らせを表示する</string>
+ <string name="revanced_announcements_connection_failed">アナウンスプロバイダーへの接続に失敗しました</string>
+ <string name="revanced_announcements_dialog_dismiss">取り消し</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">自動繰り返しを有効化</string>
+ <string name="revanced_auto_repeat_summary_on">自動繰り返し処理は有効です</string>
+ <string name="revanced_auto_repeat_summary_off">自動繰り返し処理は無効です</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">端末の寸法を偽装する</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">端末の寸法なりすまし\n\nより高いビデオ品質がロック解除される可能性がありますが、ビデオ再生のステタリング、バッテリー寿命の悪化、および未知の副作用が発生する可能性があります</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">デバイスの寸法は偽装されていません\n\nこれを有効にすると、より高い画質のビデオが再生可能になります</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">これを有効にすると、ビデオ再生の吃音、バッテリー寿命の悪化、および不明な副作用を引き起こす可能性があります。</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore設定</string>
+ <string name="microg_settings_summary">GmsCoreの設定</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URLリダイレクトをバイパス</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL リダイレクトはバイパスされます</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL リダイレクトはバイパスされません</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">ブラウザでリンクを開く</string>
+ <string name="revanced_external_browser_summary_on">外部リンクを開く</string>
+ <string name="revanced_external_browser_summary_off">アプリ内でリンクを開く</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">バックグラウンド再生</string>
+ <string name="revanced_background_playback_summary">この設定は設定 -> 背景 で見つけることができます</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">トラッキングクエリパラメータを削除</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">トラッキングクエリパラメータがリンクから削除されました</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">トラッキングクエリパラメータはリンクから削除されません</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">ズームハプティクスを無効にする</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">ハプティクスは無効です</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">ハプティクスは有効です</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">自動品質</string>
+ <string name="revanced_remember_video_quality_last_selected_title">ビデオ画質の変更を記憶する</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">品質の変更はすべてのビデオに適用されます</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">品質の変更は現在のビデオにのみ適用されます</string>
+ <string name="revanced_video_quality_default_wifi_title">Wi-Fiネットワーク上のデフォルトのビデオ品質</string>
+ <string name="revanced_video_quality_default_mobile_title">モバイルネットワークの既定のビデオ品質</string>
+ <string name="revanced_remember_video_quality_mobile">モバイル</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">デフォルトの %1$s 品質を %2$sに変更しました</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">スピードダイアログボタンを表示</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">ボタンは表示されます</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">ボタンは表示されません</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">カスタム再生速度</string>
+ <string name="revanced_custom_playback_speeds_summary">使用可能な再生速度を追加または変更します</string>
+ <string name="revanced_custom_playback_speeds_invalid">カスタム速度は %s未満でなければなりません。デフォルト値を使用してください。</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">無効なカスタム再生速度です。デフォルト値を使用します。</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">再生速度の変更を記憶する</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">再生速度の変更はすべてのビデオに適用されます</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">再生速度の変更は現在のビデオにのみ適用されます</string>
+ <string name="revanced_playback_speed_default_title">デフォルトの再生速度</string>
+ <string name="revanced_remember_playback_speed_toast">デフォルトの速度を %sに変更しました</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">古いビデオ品質メニューを復元</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">古いビデオ品質のメニューが表示されます</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">古いビデオ品質のメニューは表示されません</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">シークするスライドを有効にする</string>
+ <string name="revanced_slide_to_seek_summary_on">Slide to seek is enabled</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide to seek is not enabled</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">クライアントを偽装する</string>
+ <string name="revanced_spoof_client_screen_summary">再生の問題を防ぐためにクライアントを偽装します</string>
+ <string name="revanced_spoof_client_title">クライアントを偽装する</string>
+ <string name="revanced_spoof_client_summary_on">クライアントは偽装されています</string>
+ <string name="revanced_spoof_client_summary_off">クライアントは偽装されていません\n\nビデオ再生が動作しない可能性があります</string>
+ <string name="revanced_spoof_client_user_dialog_message">この設定をオフにすると、ビデオ再生の問題が発生する可能性があります。</string>
+ <string name="revanced_spoof_client_use_ios_title">クライアントを iOS に偽装する</string>
+ <string name="revanced_spoof_client_storyboard_timeout">クライアントのサムネイルを偽装できません(APIがタイムアウトしました)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">クライアントのサムネイルを一時的に偽装できません: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">アプリの署名を偽装する</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">アプリの署名を偽装して再生の問題を防ぎます</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">アプリの署名を偽装する</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">アプリ署名なりすまし\n\n副作用:\n• 強化されたビットレートは利用できません\n• 動画をダウンロードできません\n• 有料動画にシークバーのサムネイルがありません</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">この設定をオフにすると、ビデオ再生の問題が発生します。</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">フィードにアプリの署名を偽装する</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">アプリの署名がフィード動画になりすましではありません\n\nフィードの動画は再生に問題が発生する前に1分未満再生されます</string>
+ <string name="revanced_spoof_storyboard_title">ストーリーボードを偽装する</string>
+ <string name="revanced_spoof_storyboard_summary_on">ストーリーボードのなりすまし</string>
+ <string name="revanced_spoof_storyboard_timeout">ストーリーボードを一時的に偽装できません(APIがタイムアウトしました)</string>
+ <string name="revanced_spoof_storyboard_io_exception">一時的にストーリーボードを偽装できません: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">自動HDR明るさを有効にする</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">自動HDRの明るさが有効です</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">自動HDRの明るさが無効です</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">オーディオ広告をブロック</string>
+ <string name="revanced_block_audio_ads_summary_on">オーディオ広告はブロックされています</string>
+ <string name="revanced_block_audio_ads_summary_off">オーディオ広告のブロックが解除されました</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s は利用できません。広告が表示される場合があります。設定から別の広告ブロックサービスに切り替えてみてください。</string>
+ <string name="revanced_embedded_ads_service_failed">%s サーバーがエラーを返しました。広告が表示される場合があります。設定で別の広告ブロックサービスに切り替えてみてください。</string>
+ <string name="revanced_block_embedded_ads_title">埋め込みビデオ広告をブロック</string>
+ <string name="revanced_block_embedded_ads_entry_1">無効</string>
+ <string name="revanced_block_embedded_ads_entry_2">光沢のあるプロキシ</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock プロキシ</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">ビデオ広告をブロック</string>
+ <string name="revanced_block_video_ads_summary_on">ビデオ広告はブロックされています</string>
+ <string name="revanced_block_video_ads_summary_off">ビデオ広告のブロックが解除されました</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">メッセージが削除されました</string>
+ <string name="revanced_show_deleted_messages_title">削除されたメッセージを表示</string>
+ <string name="revanced_show_deleted_messages_entry_1">削除されたメッセージを表示しない</string>
+ <string name="revanced_show_deleted_messages_entry_2">スポイラーの後ろに削除されたメッセージを非表示にする</string>
+ <string name="revanced_show_deleted_messages_entry_3">クロスアウトテキストとして削除されたメッセージを表示</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">チャンネルポイントを自動的に獲得する</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">チャンネルポイントは自動的に請求されます</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">チャンネルポイントは自動的に請求されません</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch デバッグモードを有効にする</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch デバッグモードが有効になっています(非推奨)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitchデバッグモードは無効です</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Revancedの設定</string>
+ <string name="revanced_ads_screen_title">広告</string>
+ <string name="revanced_ads_screen_summary">広告ブロックの設定</string>
+ <string name="revanced_chat_screen_title">チャット</string>
+ <string name="revanced_chat_screen_summary">チャットの設定</string>
+ <string name="revanced_misc_screen_title">その他</string>
+ <string name="revanced_misc_screen_summary">その他の設定</string>
+ <string name="revanced_general_category_title">一般設定</string>
+ <string name="revanced_other_category_title">その他の設定</string>
+ <string name="revanced_client_ads_category_title">クライアントサイド広告</string>
+ <string name="revanced_surestream_ads_category_title">サーバー側サレストリーム広告</string>
+ <string name="revanced_twitch_debug_title">デバッグログ</string>
+ <string name="revanced_twitch_debug_summary_on">デバッグログは有効です</string>
+ <string name="revanced_twitch_debug_summary_off">デバッグログは無効です</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ka-rGE/strings.xml b/src/main/resources/addresources/values-ka-rGE/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-ka-rGE/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-kk-rKZ/strings.xml b/src/main/resources/addresources/values-kk-rKZ/strings.xml
new file mode 100644
index 0000000000..8147fb5791
--- /dev/null
+++ b/src/main/resources/addresources/values-kk-rKZ/strings.xml
@@ -0,0 +1,266 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Reset</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">About</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Appearance</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Loading...</string>
+ <string name="revanced_sb_reset">Reset</string>
+ <string name="revanced_sb_about">About</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Default</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Елемеу</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Сөндірулі</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-km-rKH/strings.xml b/src/main/resources/addresources/values-km-rKH/strings.xml
new file mode 100644
index 0000000000..b2334ae0c8
--- /dev/null
+++ b/src/main/resources/addresources/values-km-rKH/strings.xml
@@ -0,0 +1,264 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">តើអ្នកចង់បន្តធ្វើទេ?</string>
+ <string name="revanced_settings_reset">កំណត់ឡើងវិញ</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_reset">កំណត់ឡើងវិញ</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">ទាត់ចោល</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">បានផ្ដាច់</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-kn-rIN/strings.xml b/src/main/resources/addresources/values-kn-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-kn-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ko-rKR/strings.xml b/src/main/resources/addresources/values-ko-rKR/strings.xml
new file mode 100644
index 0000000000..2b877680c3
--- /dev/null
+++ b/src/main/resources/addresources/values-ko-rKR/strings.xml
@@ -0,0 +1,1194 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">계속하겠습니까?</string>
+ <string name="revanced_settings_reset">초기화</string>
+ <string name="revanced_settings_restart_title">새로고침 및 다시 시작</string>
+ <string name="revanced_settings_restart">다시 시작</string>
+ <string name="revanced_settings_import">가져오기</string>
+ <string name="revanced_settings_import_copy">복사하기</string>
+ <string name="revanced_settings_import_reset">ReVanced 설정을 기본값으로 초기화합니다</string>
+ <string name="revanced_settings_import_success">%d 설정을 가져왔습니다</string>
+ <string name="revanced_settings_import_failure_parse">설정을 가져올 수 없습니다: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">GmsCore가 설치되어 있지 않습니다. 설치하세요</string>
+ <string name="gms_core_dialog_title">필수 조치</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore에 백그라운드에서 실행할 수 있는 권한이 없습니다\n\n휴대폰에 대한 \"Don\'t kill my app\" 가이드를 읽어보고, MicroG 설치 지침을 적용하세요\n\n앱이 실행하려면 이 과정이 필요합니다</string>
+ <string name="gms_core_dialog_open_website_text">웹사이트 열기</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore를 배터리 최적화 목록에서 제외하여 앱 문제를 방지할 수 있습니다\n\n배터리 최적화 목록에서 제외하려면 \'계속하기\' 버튼을 누르세요</string>
+ <string name="gms_core_dialog_continue_text">계속하기</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">ReVanced Patches <i>%s</i> 버전을 사용 중입니다</string>
+ <string name="revanced_settings_about_links_dev_header">알림</string>
+ <string name="revanced_settings_about_links_dev_body">개발자 버전이므로 알려지지 않은 문제점이 발생할 수 있습니다</string>
+ <string name="revanced_settings_about_links_header">공식 링크</string>
+ <string name="revanced_pref_import_export_title">가져오기 / 내보내기</string>
+ <string name="revanced_pref_import_export_summary">ReVanced 설정을 가져오거나 내보낼 수 있습니다</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">정보</string>
+ <string name="revanced_settings_screen_01_ads_title">광고</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">대체 썸네일</string>
+ <string name="revanced_settings_screen_03_feed_title">피드</string>
+ <string name="revanced_settings_screen_04_player_title">플레이어</string>
+ <string name="revanced_settings_screen_05_general_title">일반 레이아웃</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">재생바</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">스와이프 제스처</string>
+ <string name="revanced_settings_screen_11_misc_title">기타</string>
+ <string name="revanced_settings_screen_12_video_title">동영상</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">디버깅</string>
+ <string name="revanced_debug_screen_summary">디버깅 옵션을 활성화하거나 비활성화할 수 있습니다</string>
+ <string name="revanced_debug_title">디버그 로깅</string>
+ <string name="revanced_debug_summary_on">디버그 로그를 출력합니다</string>
+ <string name="revanced_debug_summary_off">디버그 로그를 출력하지 않습니다</string>
+ <string name="revanced_debug_protobuffer_title">로그 프로토콜 버퍼</string>
+ <string name="revanced_debug_protobuffer_summary_on">디버그 로그에 프로토콜 버퍼를 포함합니다</string>
+ <string name="revanced_debug_protobuffer_summary_off">디버그 로그에 프로토콜 버퍼를 포함하지 않습니다</string>
+ <string name="revanced_debug_stacktrace_title">로그 스택 트레이스</string>
+ <string name="revanced_debug_stacktrace_summary_on">디버그 로그에 로그 스택 트레이스을 포함합니다</string>
+ <string name="revanced_debug_stacktrace_summary_off">디버그 로그에 로그 스택 트레이스을 포함하지 않습니다</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced 오류 팝업 메시지 표시하기</string>
+ <string name="revanced_debug_toast_on_error_summary_on">오류가 발생하면 팝업 메시지를 표시합니다</string>
+ <string name="revanced_debug_toast_on_error_summary_off">오류가 발생하면 팝업 메시지를 표시하지 않습니다</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">오류 메시지를 비활성화하면 모든 ReVanced 오류 알림이 숨겨집니다\n\n예상되지 않은 이벤트에 대한 알림을 받지 못할 수 있습니다</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">빛나는 \'좋아요\' / \'구독\' 버튼 비활성화하기</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">동영상에서 \'Like (좋아요)\' 또는 \'Subscribe (구독)\' 버튼이 언급되었을 때, 버튼에 빛나는 애니메이션을 적용하지 않습니다\n• 일부 언어는 아직 지원되지 않습니다</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">동영상에서 \'Like (좋아요)\' 또는 \'Subscribe (구독)\' 버튼이 언급되었을 때, 버튼에 빛나는 애니메이션을 적용합니다.\n• 일부 언어는 아직 지원되지 않습니다</string>
+ <string name="revanced_hide_gray_separator_title">회색 구분선 숨기기</string>
+ <string name="revanced_hide_gray_separator_summary_on">동영상들 사이에서 회색 구분선이 숨겨집니다</string>
+ <string name="revanced_hide_gray_separator_summary_off">동영상들 사이에서 회색 구분선이 노출됩니다</string>
+ <string name="revanced_hide_channel_watermark_title">동영상 하단에서 채널 워터마크 숨기기</string>
+ <string name="revanced_hide_channel_watermark_summary_on">워터마크가 숨겨집니다</string>
+ <string name="revanced_hide_channel_watermark_summary_off">워터마크가 노출됩니다</string>
+ <string name="revanced_hide_horizontal_shelves_title">좌우 슬라이드 선반 숨기기</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">다음 선반이 숨겨집니다:\n• 다시 듣기\n• 다시 시청하기\n• 이어서 시청하기\n• 채널 더보기\n• 이 게임 더보기\n• 주요 뉴스\n• 맞춤 실시간 스트림\n• 라이브 쇼핑\n• 보건 정보 출처, etc.</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">다음 선반이 노출됩니다:\n• 다시 듣기\n• 다시 시청하기\n• 이어서 시청하기\n• 채널 더보기\n• 이 게임 더보기\n• 주요 뉴스\n• 맞춤 실시간 스트림\n• 라이브 쇼핑\n• 보건 정보 출처, etc</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">가입 버튼 숨기기</string>
+ <string name="revanced_hide_join_membership_button_summary_on">버튼이 숨겨집니다</string>
+ <string name="revanced_hide_join_membership_button_summary_off">버튼이 노출됩니다</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">채널 프로필에서 추천 선반 숨기기</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">선반이 숨겨집니다</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">선반이 노출됩니다</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\'알림 받기\' 버튼 숨기기</string>
+ <string name="revanced_hide_notify_me_button_summary_on">버튼이 숨겨집니다</string>
+ <string name="revanced_hide_notify_me_button_summary_off">버튼이 노출됩니다</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">\'시청자가 이 동영상도 시청함\' 추천 숨기기</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">추천이 숨겨집니다</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">추천이 노출됩니다</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'자세히 보기\' 버튼 숨기기</string>
+ <string name="revanced_hide_show_more_button_summary_on">버튼이 숨겨집니다</string>
+ <string name="revanced_hide_show_more_button_summary_off">버튼이 노출됩니다</string>
+ <string name="revanced_hide_timed_reactions_title">실시간 이모티콘 리액션 숨기기</string>
+ <string name="revanced_hide_timed_reactions_summary_on">실시간 이모티콘 리액션이 숨겨집니다</string>
+ <string name="revanced_hide_timed_reactions_summary_off">실시간 이모티콘 리액션이 노출됩니다</string>
+ <string name="revanced_hide_search_result_shelf_header_title">검색 결과에서 선반 헤더 숨기기</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">선반 헤더가 숨겨집니다</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">선반 헤더가 노출됩니다</string>
+ <string name="revanced_hide_channel_guidelines_title">채널 가이드라인 숨기기</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">채널 가이드라인이 숨겨집니다</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">채널 가이드라인이 노출됩니다</string>
+ <string name="revanced_hide_expandable_chip_title">썸네일 하단에서 동영상 관련 정보 숨기기</string>
+ <string name="revanced_hide_expandable_chip_summary_on">다음 정보들이 숨겨집니다:\n동영상 설명, 챕터, 주요 순간, 스크립트,\n재생목록의 동영상, 이 동영상에 나온 제품</string>
+ <string name="revanced_hide_expandable_chip_summary_off">다음 정보들이 노출됩니다:\n동영상 설명, 챕터, 주요 순간, 스크립트,\n재생목록의 동영상, 이 동영상에 나온 제품</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">화질 설정 메뉴에서 하단 설명 숨기기</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">화질 설정 메뉴에서 하단 설명이 숨겨집니다</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">화질 설정 메뉴에서 하단 설명이 노출됩니다</string>
+ <string name="revanced_hide_community_posts_title">커뮤니티 게시물 숨기기</string>
+ <string name="revanced_hide_community_posts_summary_on">커뮤니티 게시물이 숨겨집니다</string>
+ <string name="revanced_hide_community_posts_summary_off">커뮤니티 게시물이 노출됩니다</string>
+ <string name="revanced_hide_compact_banner_title">소형 배너 숨기기</string>
+ <string name="revanced_hide_compact_banner_summary_on">소형 배너가 숨겨집니다</string>
+ <string name="revanced_hide_compact_banner_summary_off">소형 배너가 노출됩니다</string>
+ <string name="revanced_hide_movies_section_title">영화 섹션 숨기기</string>
+ <string name="revanced_hide_movies_section_summary_on">영화 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_movies_section_summary_off">영화 섹션이 노출됩니다</string>
+ <string name="revanced_hide_feed_survey_title">피드 설문 조사 숨기기</string>
+ <string name="revanced_hide_feed_survey_summary_on">피드 설문 조사가 숨겨집니다</string>
+ <string name="revanced_hide_feed_survey_summary_off">피드 설문 조사가 노출됩니다</string>
+ <string name="revanced_hide_community_guidelines_title">커뮤니티 가이드라인 숨기기</string>
+ <string name="revanced_hide_community_guidelines_summary_on">커뮤니티 가이드라인이 숨겨집니다</string>
+ <string name="revanced_hide_community_guidelines_summary_off">커뮤니티 가이드가인이 노출됩니다</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">구독자를 위한 커뮤니티 가이드라인 숨기기</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">구독자를 위한 커뮤니티 가이드라인이 숨겨집니다</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">구독자를 위한 커뮤니티 가이드라인이 노출됩니다</string>
+ <string name="revanced_hide_channel_member_shelf_title">채널 회원 선반 숨기기</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">채널 회원 선반이 숨겨집니다</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">채널 회원 선반이 노출됩니다</string>
+ <string name="revanced_hide_emergency_box_title">긴급 정보 패널 숨기기</string>
+ <string name="revanced_hide_emergency_box_summary_on">긴급 정보 패널이 숨겨집니다</string>
+ <string name="revanced_hide_emergency_box_summary_off">긴급 정보 패널이 노출됩니다</string>
+ <string name="revanced_hide_info_panels_title">정보 패널 숨기기</string>
+ <string name="revanced_hide_info_panels_summary_on">정보 패널이 숨겨집니다</string>
+ <string name="revanced_hide_info_panels_summary_off">정보 패널이 노출됩니다</string>
+ <string name="revanced_hide_medical_panels_title">의학 정보 패널 숨기기</string>
+ <string name="revanced_hide_medical_panels_summary_on">의학 정보 패널이 숨겨집니다</string>
+ <string name="revanced_hide_medical_panels_summary_off">의학 정보 패널이 노출됩니다</string>
+ <string name="revanced_hide_channel_bar_title">채널바 숨기기</string>
+ <string name="revanced_hide_channel_bar_summary_on">채널바가 숨겨집니다</string>
+ <string name="revanced_hide_channel_bar_summary_off">채널바가 노출됩니다</string>
+ <string name="revanced_hide_playables_title">Playables(게임 룸) 선반 숨기기</string>
+ <string name="revanced_hide_playables_summary_on">Playables(게임 룸) 선반이 숨겨집니다\n• YouTube 앱에 내장된 미니 게임\n• 일부 국가에서는 아직 서비스가 제공되지 않습니다</string>
+ <string name="revanced_hide_playables_summary_off">Playables(게임 룸) 선반이 노출됩니다\n• YouTube 앱에 내장된 미니 게임\n• 일부 국가에서는 아직 서비스가 제공되지 않습니다</string>
+ <string name="revanced_hide_quick_actions_title">전체 화면에서 빠른 작업 컨테이너 숨기기</string>
+ <string name="revanced_hide_quick_actions_summary_on">빠른 작업 컨테이너가 숨겨집니다</string>
+ <string name="revanced_hide_quick_actions_summary_off">빠른 작업 컨테이너가 노출됩니다</string>
+ <string name="revanced_hide_related_videos_title">빠른 작업 컨테이너에서 관련 동영상 숨기기</string>
+ <string name="revanced_hide_related_videos_summary_on">관련 동영상이 숨겨집니다</string>
+ <string name="revanced_hide_related_videos_summary_off">관련 동영상이 노출됩니다</string>
+ <string name="revanced_hide_image_shelf_title">검색 결과에서 이미지 선반 숨기기</string>
+ <string name="revanced_hide_image_shelf_summary_on">이미지 선반이 숨겨집니다</string>
+ <string name="revanced_hide_image_shelf_summary_off">이미지 선반이 노출됩니다</string>
+ <string name="revanced_hide_latest_posts_ads_title">최신 게시물 숨기기</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">최신 게시물이 숨겨집니다</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">최신 게시물이 노출됩니다</string>
+ <string name="revanced_hide_mix_playlists_title">믹스 재생목록 숨기기</string>
+ <string name="revanced_hide_mix_playlists_summary_on">믹스 재생목록이 숨겨집니다</string>
+ <string name="revanced_hide_mix_playlists_summary_off">믹스 재생목록이 노출됩니다</string>
+ <string name="revanced_hide_artist_cards_title">아티스트 카드 숨기기</string>
+ <string name="revanced_hide_artist_cards_summary_on">아티스트 카드가 숨겨집니다</string>
+ <string name="revanced_hide_artist_cards_summary_off">아티스트 카드가 노출됩니다</string>
+ <string name="revanced_hide_chips_shelf_title">더 많은 주제 선반 숨기기</string>
+ <string name="revanced_hide_chips_shelf_summary_on">더 많은 주제 선반이 숨겨집니다</string>
+ <string name="revanced_hide_chips_shelf_summary_off">더 많은 주제 선반이 노출됩니다</string>
+ <string name="revanced_hide_attributes_section_title">속성 섹션 숨기기</string>
+ <string name="revanced_hide_attributes_section_summary_on">게임 섹션, 음악 섹션 그리고 동영상 속 장소 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_attributes_section_summary_off">게임 섹션, 음악 섹션 그리고 동영상 속 장소 섹션이 노출됩니다</string>
+ <string name="revanced_hide_chapters_section_title">챕터 섹션 숨기기</string>
+ <string name="revanced_hide_chapters_section_summary_on">챕터 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_chapters_section_summary_off">챕터 섹션이 노출됩니다</string>
+ <string name="revanced_hide_podcast_section_title">\'팟캐스트 살펴보기\' 섹션 숨기기</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'팟캐스트 살펴보기\' 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_podcast_section_summary_off">\'팟캐스트 살펴보기\' 섹션이 노출됩니다</string>
+ <string name="revanced_hide_info_cards_section_title">정보 카드 섹션 숨기기</string>
+ <string name="revanced_hide_info_cards_section_summary_on">정보 카드 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_info_cards_section_summary_off">정보 카드 섹션이 노출됩니다</string>
+ <string name="revanced_hide_transcript_section_title">스크립트 섹션 숨기기</string>
+ <string name="revanced_hide_transcript_section_summary_on">스크립트 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_transcript_section_summary_off">스크립트 섹션이 노출됩니다</string>
+ <string name="revanced_hide_description_components_screen_title">동영상 설명</string>
+ <string name="revanced_hide_description_components_screen_summary">동영상 설명에서 구성요소를 숨기거나 표시할 수 있습니다</string>
+ <string name="revanced_custom_filter_screen_title">사용자 정의 필터</string>
+ <string name="revanced_custom_filter_screen_summary">사용자 정의 필터를 사용하여 구성요소를 숨길 수 있습니다</string>
+ <string name="revanced_custom_filter_title">사용자 정의 필터 활성화하기</string>
+ <string name="revanced_custom_filter_summary_on">사용자 정의 필터를 활성화합니다</string>
+ <string name="revanced_custom_filter_summary_off">사용자 정의 필터를 비활성화합니다</string>
+ <string name="revanced_custom_filter_strings_title">사용자 정의 필터</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">필터링할 구성요소를 줄바꿈으로 구분하여 설정합니다</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">잘못된 사용자 정의 필터 값입니다: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">키워드 필터링</string>
+ <string name="revanced_hide_keyword_content_screen_summary">키워드 필터를 사용하여 검색 결과와 피드에서 동영상을 숨길 수 있습니다</string>
+ <string name="revanced_hide_keyword_content_home_title">홈 탭에서 키워드 필터 활성화하기</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">홈 탭에서 키워드 필터를 활성화합니다</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">홈 탭에서 키워드 필터를 비활성화합니다</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">구독 탭에서 키워드 필터 활성화하기</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">구독 탭에서 키워드 필터를 활성화합니다</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">구독 탭에서 키워드 필터를 비활성화합니다</string>
+ <string name="revanced_hide_keyword_content_search_title">검색 결과에서 키워드 필터 활성화하기</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">검색 결과에서 키워드 필터를 활성화합니다</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">검색 결과에서 키워드 필터를 비활성화합니다</string>
+ <string name="revanced_hide_keyword_content_phrases_title">키워드 필터</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">필터링할 키워드 및 구문을 줄바꿈으로 구분하여 설정합니다\n\n영어 키워드는 대소문자를 구분하여 입력해야 합니다 (예: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">키워드 필터링 정보</string>
+ <string name="revanced_hide_keyword_content_about_summary">홈 피드 / 구독 피드 / 검색 결과에서 키워드와 일치하는 콘텐츠가 숨겨집니다\n\n알려진 문제점:\n• 일부 Shorts는 숨겨지지 않을 수 있습니다\n• 일부 화면 구성요소가 숨겨지지 않을 수 있습니다\n• 키워드를 검색하면 결과가 표시되지 않을 수 있습니다</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">잘못된 키워드입니다. \'%s\'를 필터로 사용할 수 없습니다</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">\'%1$s\'는 잘못된 키워드입니다. 필터링 키워드는 %2$d 글자 이상이어야 합니다.</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">키워드 \'$s\'를 사용하면 모든 동영상이 숨겨집니다</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">일반 레이아웃 광고 숨기기</string>
+ <string name="revanced_hide_general_ads_summary_on">일반 레이아웃 광고가 숨겨집니다</string>
+ <string name="revanced_hide_general_ads_summary_off">일반 레이아웃 광고가 노출됩니다</string>
+ <string name="revanced_hide_fullscreen_ads_title">전체 화면 광고 숨기기</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">전체 화면 광고가 숨겨집니다\n\n알림: 이 설정은 구형 기기에서만 사용할 수 있습니다</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">전체 화면 광고가 노출됩니다</string>
+ <string name="revanced_hide_buttoned_ads_title">일반 레이아웃 광고 숨기기</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">일반 레이아웃 광고가 숨겨집니다</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">일반 레이아웃 광고가 노출됩니다</string>
+ <string name="revanced_hide_paid_promotion_label_title">유료 광고 포함 라벨 숨기기</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">유료 광고 포함 라벨이 숨겨집니다</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">유료 광고 포함 라벨이 노출됩니다</string>
+ <string name="revanced_hide_self_sponsor_ads_title">셀프 스폰서 카드 숨기기</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">셀프 스폰서 카드가 숨겨집니다</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">셀프 스폰서 카드가 노출됩니다</string>
+ <string name="revanced_hide_products_banner_title">제품 쇼핑 배너 숨기기</string>
+ <string name="revanced_hide_products_banner_summary_on">배너가 숨겨집니다</string>
+ <string name="revanced_hide_products_banner_summary_off">배너가 노출됩니다</string>
+ <string name="revanced_hide_shopping_links_title">동영상 설명에서 쇼핑 링크 숨기기</string>
+ <string name="revanced_hide_shopping_links_summary_on">쇼핑 링크가 숨겨집니다</string>
+ <string name="revanced_hide_shopping_links_summary_off">쇼핑 링크가 노출됩니다</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">채널 페이지에서 \'스토어 방문\' 버튼 숨기기</string>
+ <string name="revanced_hide_visit_store_button_summary_on">버튼이 숨겨집니다</string>
+ <string name="revanced_hide_visit_store_button_summary_off">버튼이 노출됩니다</string>
+ <string name="revanced_hide_web_search_results_title">웹 검색 결과 숨기기</string>
+ <string name="revanced_hide_web_search_results_summary_on">웹 검색 결과가 숨겨집니다</string>
+ <string name="revanced_hide_web_search_results_summary_off">웹 검색 결과가 노출됩니다</string>
+ <string name="revanced_hide_merchandise_banners_title">상품 배너 숨기기</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">상품 배너가 숨겨집니다</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">상품 배너가 노출됩니다</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">\'전체 화면 광고 숨기기\'는 구형 기기에서만 사용할 수 있습니다</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube Premium 광고 숨기기</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium 광고가 숨겨집니다</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium 광고가 노출됩니다</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">동영상 광고 숨기기</string>
+ <string name="revanced_hide_video_ads_summary_on">동영상 광고가 숨겨집니다</string>
+ <string name="revanced_hide_video_ads_summary_off">동영상 광고가 노출됩니다</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL을 클립보드에 복사하였습니다</string>
+ <string name="revanced_share_copy_url_timestamp_success">타임스탬프를 표기한 URL을 클립보드에 복사하였습니다</string>
+ <string name="revanced_copy_video_url_title">동영상 URL 복사 버튼 표시하기</string>
+ <string name="revanced_copy_video_url_summary_on">버튼을 표시합니다.
+버튼을 눌러서 동영상 URL을 복사할 수 있습니다. 길게 누르면 타임스탬프를 표기한 동영상 URL이 복사됩니다</string>
+ <string name="revanced_copy_video_url_summary_off">버튼을 표시하지 않습니다</string>
+ <string name="revanced_copy_video_url_timestamp_title">타임스탬프를 표기한 URL 복사 버튼 표시하기</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">버튼을 표시합니다.
+버튼을 눌러서 타임스탬프를 표기한 동영상 URL을 복사할 수 있습니다. 길게 누르면 타임스탬프를 표기하지 않은 동영상 URL이 복사됩니다</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">버튼을 표시하지 않습니다</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">시청 경고 다이얼로그 제거하기</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">다이얼로그가 숨겨집니다</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">다이얼로그가 노출됩니다</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">이 설정은 연령 제한(성인인증 절차)을 우회할 수 없고, 다이얼로그를 자동으로 허용하기만 합니다</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">외부 다운로드</string>
+ <string name="revanced_external_downloader_screen_summary">외부 다운로더 설정을 할 수 있습니다</string>
+ <string name="revanced_external_downloader_title">외부 다운로드 버튼 표시하기</string>
+ <string name="revanced_external_downloader_summary_on">플레이어에서 외부 다운로드 버튼을 표시합니다</string>
+ <string name="revanced_external_downloader_summary_off">플레이어에서 외부 다운로드 버튼을 표시하지 않습니다</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">오프라인 저장 버튼 재정의하기</string>
+ <string name="revanced_external_downloader_action_button_summary_on">오프라인 저장 버튼으로 외부 다운로더를 실행할 수 있습니다</string>
+ <string name="revanced_external_downloader_action_button_summary_off">오프라인 저장 버튼으로 기본 다운로더를 실행할 수 있습니다 (YouTube Premium 기능)</string>
+ <string name="revanced_external_downloader_name_title">외부 다운로더 패키지명</string>
+ <string name="revanced_external_downloader_name_summary">NewPipe 또는 Seal와 같은 설치된 외부 다운로더 패키지명입니다</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s은(는) 설치되어 있지 않습니다. 설치하세요</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">정확한 탐색 제스처 비활성화하기</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">정확한 탐색 제스처를 비활성화합니다\n• 필름 스트립 오버레이</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">정확한 탐색 제스처를 활성화합니다\n• 필름 스트립 오버레이</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">재생바 터치 조작 활성화하기</string>
+ <string name="revanced_seekbar_tapping_summary_on">재생바 터치 조작을 활성화합니다</string>
+ <string name="revanced_seekbar_tapping_summary_off">재생바 터치 조작을 비활성화합니다</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">스와이프 제스처로 밝기 조절 활성화하기</string>
+ <string name="revanced_swipe_brightness_summary_on">스와이프 제스처로 밝기 조절을 활성화합니다</string>
+ <string name="revanced_swipe_brightness_summary_off">스와이프 제스처로 밝기 조절을 비활성화합니다</string>
+ <string name="revanced_swipe_volume_title">스와이프 제스처로 볼륨 조절 활성화하기</string>
+ <string name="revanced_swipe_volume_summary_on">스와이프 제스처로 볼륨 조절을 활성화합니다</string>
+ <string name="revanced_swipe_volume_summary_off">스와이프 제스처로 볼륨 조절을 비활성화합니다</string>
+ <string name="revanced_swipe_press_to_engage_title">길게 눌러서 스와이프 제스처 사용하기</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">화면을 길게 눌러서 스와이프 제스처를 사용합니다</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">화면을 짧게 눌러서 스와이프 제스처를 사용합니다</string>
+ <string name="revanced_swipe_haptic_feedback_title">진동 피드백 활성화하기</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">진동 피드백을 활성화합니다</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">진동 피드백을 비활성화합니다</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">화면 밝기 저장 및 복원 활성화하기</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">전체 화면에서 나가거나 들어갈 때마다 밝기 값을 저장 및 복원합니다</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">전체 화면에서 나가거나 들어갈 때마다 밝기 값을 저장 및 복원하지 않습니다</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">스와이프 제스처로 자동 밝기 활성화하기</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">스와이프 제스처로 밝기가 0이 되면 자동 밝기를 활성화합니다</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">스와이프 제스처로 밝기가 0이 되더라도 자동 밝기를 활성화하지 않습니다</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">자동</string>
+ <string name="revanced_swipe_overlay_timeout_title">오버레이 타임아웃</string>
+ <string name="revanced_swipe_overlay_timeout_summary">오버레이가 표시되는 시간을 지정할 수 있습니다 (밀리초)</string>
+ <string name="revanced_swipe_text_overlay_size_title">오버레이 텍스트 크기</string>
+ <string name="revanced_swipe_text_overlay_size_summary">오버레이 텍스트 크기를 지정할 수 있습니다</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">오버레이 투명도</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">오버레이 투명도 값을 지정할 수 있습니다 (0–255)</string>
+ <string name="revanced_swipe_threshold_title">스와이프 한계치</string>
+ <string name="revanced_swipe_threshold_summary">제스처 인식을 위해 얼마나 스와이프를 해야 할지를 설정할 수 있으며, 원하지 않은 제스처 인식을 방지할 수 있습니다</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">자동 자막 비활성화하기</string>
+ <string name="revanced_auto_captions_summary_on">자막 사용이 강제된 동영상에서 자막을 비활성화합니다</string>
+ <string name="revanced_auto_captions_summary_off">자막 사용이 강제된 동영상에서 자막을 활성화합니다</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">액션 버튼</string>
+ <string name="revanced_hide_buttons_screen_summary">플레이어 하단에서 액션 버튼을 숨기거나 표시할 수 있습니다</string>
+ <string name="revanced_hide_like_dislike_button_title">좋아요 & 싫어요 버튼 숨기기</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">좋아요 & 싫어요 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">좋아요 & 싫어요 버튼이 노출됩니다</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">공유 버튼 숨기기</string>
+ <string name="revanced_hide_share_button_summary_on">공유 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_share_button_summary_off">공유 버튼이 노출됩니다</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">신고 버튼 숨기기</string>
+ <string name="revanced_hide_report_button_summary_on">신고 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_report_button_summary_off">신고 버튼이 노출됩니다</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">리믹스 버튼 숨기기</string>
+ <string name="revanced_hide_remix_button_summary_on">리믹스 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_remix_button_summary_off">리믹스 버튼이 노출됩니다</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">오프라인 저장 버튼 숨기기</string>
+ <string name="revanced_hide_download_button_summary_on">오프라인 저장 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_download_button_summary_off">오프라인 저장 버튼이 노출됩니다</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Thanks 버튼 숨기기</string>
+ <string name="revanced_hide_thanks_button_summary_on">Thanks 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_thanks_button_summary_off">Thanks 버튼이 노출됩니다</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">클립 버튼 숨기기</string>
+ <string name="revanced_hide_clip_button_summary_on">클립 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_clip_button_summary_off">클립 버튼이 노출됩니다</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">(재생목록에) 저장 버튼 숨기기</string>
+ <string name="revanced_hide_playlist_button_summary_on">(재생목록에) 저장 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_playlist_button_summary_off">(재생목록에) 저장 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">자동재생 버튼 숨기기</string>
+ <string name="revanced_hide_autoplay_button_summary_on">자동재생 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_autoplay_button_summary_off">자동재생 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">자막 버튼 숨기기</string>
+ <string name="revanced_hide_captions_button_summary_on">자막 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_captions_button_summary_off">자막 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">크롬캐스트 버튼 숨기기</string>
+ <string name="revanced_hide_cast_button_summary_on">크롬캐스트 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_cast_button_summary_off">크롬캐스트 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">하단바 버튼</string>
+ <string name="revanced_navigation_buttons_screen_summary">하단바에서 버튼을 숨기거나 변경할 수 있습니다</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">홈 버튼 숨기기</string>
+ <string name="revanced_hide_home_button_summary_on">홈 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_home_button_summary_off">홈 버튼이 노출됩니다</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Shorts 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shorts 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shorts 버튼이 노출됩니다</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">만들기 버튼 숨기기</string>
+ <string name="revanced_hide_create_button_summary_on">만들기 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_create_button_summary_off">만들기 버튼이 노출됩니다</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">구독 버튼 숨기기</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">구독 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">구독 버튼이 노출됩니다</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">만들기 버튼과 알림 버튼 위치 교환하기</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">만들기 버튼과 알림 버튼의 위치를 교환합니다\n\n알려진 문제점:\n• 이 설정을 비활성화하면 서버에서 광고 필터에 등록되지 않은 광고(Shorts 광고)가 로드됩니다\n• 이 설정을 활성화하면 일부 광고가 강제로 숨겨집니다 (동영상 광고, 일반 레이아웃 광고)\n• 광고 설정에 있는 일부 설정들을 비활성화하려면 이 설정도 비활성화해야 합니다</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">만들기 버튼과 알림 버튼을 위치를 교환하지 않습니다\n\n알려진 문제점:\n• 이 설정을 비활성화하면 서버에서 광고 필터에 등록되지 않은 광고(Shorts 광고)가 로드됩니다\n• 이 설정을 활성화하면 일부 광고가 강제로 숨겨집니다 (동영상 광고, 일반 레이아웃 광고)\n• 광고 설정에 있는 일부 설정들을 비활성화하려면 이 설정도 비활성화해야 합니다</string>
+ <string name="revanced_hide_navigation_button_labels_title">하단바 버튼 라벨 숨기기</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">라벨이 숨겨집니다</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">라벨이 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">메뉴 구성요소</string>
+ <string name="revanced_hide_player_flyout_summary">플레이어에서 메뉴 구성요소를 숨기거나 표시할 수 있습니다</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">자막 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">자막 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">자막 메뉴가 노출됩니다</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">추가 설정 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">추가 설정 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">추가 설정 메뉴가 노출됩니다</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">동영상 연속 재생 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">동영상 연속 재생 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">동영상 연속 재생 메뉴가 노출됩니다</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">앰비언트 모드 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">앰비언트 모드 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">앰비언트 모드 메뉴가 노출됩니다</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">고객센터 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">고객센터 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">고객센터 메뉴가 노출됩니다</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">재생 속도 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">재생 속도 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">재생 속도 메뉴가 노출됩니다</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">콘텐츠 더보기 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">콘텐츠 더보기 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">콘텐츠 더보기 메뉴가 노출됩니다</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">잠금 화면 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">잠금 화면 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">잠금 화면 메뉴가 노출됩니다</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">오디오 트랙 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">오디오 트랙 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">오디오 트랙 메뉴가 노출됩니다</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">VR로 보기 메뉴 숨기기</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">VR로 보기 메뉴가 숨겨집니다</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">VR로 보기 메뉴가 노출됩니다</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">이전 동영상 & 다음 동영상 버튼 숨기기</string>
+ <string name="revanced_hide_player_buttons_summary_on">이전 동영상 & 다음 동영상 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_player_buttons_summary_off">이전 동영상 & 다음 동영상 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">음악 앨범 카드 숨기기</string>
+ <string name="revanced_hide_album_cards_summary_on">검색 결과에서 음악 앨범 카드가 숨겨집니다</string>
+ <string name="revanced_hide_album_cards_summary_off">검색 결과에서 음악 앨범 카드가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">댓글</string>
+ <string name="revanced_comments_screen_summary">댓글 섹션에서 구성요소가 숨기거나 표시할 수 있습니다</string>
+ <string name="revanced_hide_comments_by_members_header_title">\'회원별 댓글\' 헤더 숨기기</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'회원별 댓글\' 헤더가 숨겨집니다</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'회원별 댓글\' 헤더가 노출됩니다</string>
+ <string name="revanced_hide_comments_section_title">댓글 섹션 숨기기</string>
+ <string name="revanced_hide_comments_section_summary_on">댓글 섹션이 숨겨집니다</string>
+ <string name="revanced_hide_comments_section_summary_off">댓글 섹션이 노출됩니다</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">\'Shorts 만들기\' 버튼 숨기기</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Shorts 만들기\' 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">\'Shorts 만들기\' 버튼이 노출됩니다</string>
+ <string name="revanced_hide_comments_preview_comment_title">댓글 미리 보기 숨기기</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">댓글 미리 보기가 숨겨집니다</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">댓글 미리 보기가 노출됩니다</string>
+ <string name="revanced_hide_comments_thanks_button_title">Thanks 버튼 숨기기</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Thanks 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Thanks 버튼이 노출됩니다</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">타임스탬프 & 이모지 버튼 숨기기</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">타임스탬프 & 이모지 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">타임스탬프 & 이모지 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">크라우드 펀딩 박스 숨기기</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">플레이어 하단에서 크라우드펀딩 박스가 숨겨집니다</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">플레이어 하단에서 크라우드펀딩 박스가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">최종 화면 카드 숨기기</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">최종 화면 카드가 숨겨집니다</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">최종 화면 카드가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">카테고리 바</string>
+ <string name="revanced_hide_filter_bar_screen_summary">피드, 검색 결과, 관련 동영상에서 카테고리 바를 숨기거나 표시할 수 있습니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">피드에서 카테고리 바 숨기기</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">피드에서 카테고리 바가 숨겨집니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">피드에서 카테고리 바가 노출됩니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">검색 결과에서 카테고리 바 숨기기</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">검색 결과에서 카테고리 바가 숨겨집니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">검색 결과에서 카테고리 바가 노출됩니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">관련 동영상에서 카테고리 바 숨기기</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">플레이어 하단에 있는 관련 동영상에서 카테고리 바가 숨겨집니다</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">플레이어 하단에 있는 관련 동영상에서 카테고리 바가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">플로팅 마이크 버튼 숨기기</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">플로팅 마이크 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">플로팅 마이크 버튼이 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">전체 화면에서 앰비언트 모드 비활성화하기</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">앰비언트 모드를 비활성화합니다</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">앰비언트 모드를 활성화합니다</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">정보 카드 숨기기</string>
+ <string name="revanced_hide_info_cards_summary_on">정보 카드가 숨겨집니다</string>
+ <string name="revanced_hide_info_cards_summary_off">정보 카드가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">실시간 조회수 카운팅 애니메이션 비활성화하기</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">실시간 조회수 카운팅 애니메이션을 비활성화합니다</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">실시간 조회수 카운팅 애니메이션을 활성화합니다</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">동영상 플레이어 재생바 숨기기</string>
+ <string name="revanced_hide_seekbar_summary_on">동영상 플레이어 재생바가 숨겨집니다</string>
+ <string name="revanced_hide_seekbar_summary_off">동영상 플레이어 재생바가 노출됩니다</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">동영상 썸네일 재생바 숨기기</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">썸네일 재생바가 숨겨집니다</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">썸네일 재생바가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">홈 피드에서 Shorts 선반 숨기기</string>
+ <string name="revanced_hide_shorts_home_summary_on">홈 피드에서 Shorts 선반이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_home_summary_off">홈 피드에서 Shorts 선반이 노출됩니다</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">구독 피드에서 Shorts 선반 숨기기</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">구독 피드에서 Shorts 선반이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">구독 피드에서 Shorts 선반이 노출됩니다</string>
+ <string name="revanced_hide_shorts_search_title">검색 결과에서 Shorts 선반 숨기기</string>
+ <string name="revanced_hide_shorts_search_summary_on">검색 결과에서 Shorts 선반이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_search_summary_off">검색 결과에서 Shorts 선반이 노출됩니다</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">가입 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">가입 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">가입 버튼이 노출됩니다</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">구독 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">구독 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">구독 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">일시 정지 오버레이 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">플레이어 왼쪽 상단에서 \'구독\' & \'라이브\' & \'쇼핑\' 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">플레이어 왼쪽 상단에서 \'구독\' & \'라이브\' & \'쇼핑\' 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_shop_button_title">쇼핑 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">쇼핑 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">쇼핑 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Super Thanks 구매 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super Thanks 구매 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super Thanks 구매 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_tagged_products_title">태그된 제품 숨기기</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">태그된 제품이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">태그된 제품이 노출됩니다</string>
+ <string name="revanced_hide_shorts_location_label_title">위치 라벨 숨기기</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">위치 라벨이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">위치 라벨이 노출됩니다</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">(사운드를 재생목록에) 저장 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">(사운드를 재생목록에) 저장 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">(사운드를 재생목록에) 저장 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">검색 추천 숨기기</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">검색 추천이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">검색 추천이 노출됩니다</string>
+ <string name="revanced_hide_shorts_like_button_title">좋아요 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">좋아요 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">좋아요 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_dislike_button_title">싫어요 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">싫어요 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">싫어요 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_comments_button_title">댓글 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">댓글 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">댓글 버튼이 노출됩니다</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">리믹스 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">리믹스 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">리믹스 버튼이 노출됩니다</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">공유 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">공유 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">공유 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_info_panel_title">정보 패널 숨기기</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">정보 패널이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">정보 패널이 노출됩니다</string>
+ <string name="revanced_hide_shorts_channel_bar_title">채널바 숨기기</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">채널바가 숨겨집니다</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">채널바가 노출됩니다</string>
+ <string name="revanced_hide_shorts_video_title_title">동영상 제목 숨기기</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">제목이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">제목이 노출됩니다</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">사운드 메타데이터 라벨 숨기기</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">메타데이터 라벨이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">메타데이터 라벨이 노출됩니다</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">관련 동영상 링크 라벨 숨기기</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">동영상 링크 라벨이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">동영상 링크 라벨이 노출됩니다</string>
+ <string name="revanced_hide_shorts_sound_button_title">사운드 버튼 숨기기</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">사운드 버튼이 숨겨집니다</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">사운드 버튼이 노출됩니다</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">하단바 숨기기</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">하단바가 숨겨집니다</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">하단바가 노출됩니다</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">최종 화면에서 \'다음 재생 동영상 추천\' 비활성화하기</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">다음 재생 동영상 추천을 비활성화합니다</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">다음 재생 동영상 추천을 활성화합니다</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">동영상 타임스탬프 숨기기</string>
+ <string name="revanced_hide_timestamp_summary_on">타임스탬프가 숨겨집니다</string>
+ <string name="revanced_hide_timestamp_summary_off">타임스탬프가 노출됩니다</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">플레이어 팝업 패널 숨기기</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">플레이어 팝업 패널이 숨겨집니다
+• 재생목록, 실시간 채팅, etc.</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">플레이어 팝업 패널이 노출됩니다
+• 재생목록, 실시간 채팅, etc.</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">플레이어 오버레이 불투명도</string>
+ <string name="revanced_player_overlay_opacity_summary">불투명도 값은 0-100 사이이며, 0은 투명입니다</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">플레이어 오버레이 불투명도는 0-100 사이여야 합니다</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">숨겨짐</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">싫어요 개수를 일시적으로 표시할 수 없습니다 (API 시간 초과)</string>
+ <string name="revanced_ryd_failure_connection_status_code">싫어요 개수를 표시할 수 없습니다 (상태 코드: %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">싫어요 개수를 표시할 수 없습니다 (클라이언트 API 제한 도달)</string>
+ <string name="revanced_ryd_failure_generic">싫어요 개수를 표시할 수 없습니다 (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike를 사용하여 투표하려면 동영상을 다시 로드하세요</string>
+ <string name="revanced_ryd_enable_summary_on">싫어요 개수를 표시합니다</string>
+ <string name="revanced_ryd_enable_summary_off">싫어요 개수를 표시하지 않습니다</string>
+ <string name="revanced_ryd_shorts_title">Shorts에서 싫어요 개수 표시하기</string>
+ <string name="revanced_ryd_shorts_summary_on">Shorts에서 싫어요 개수를 표시합니다</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Shorts에서 싫어요 개수를 표시합니다\n\n알려진 문제점: 사용자가 로그인을 하지 않았거나 시크릿 모드에서는 싫어요 개수가 표시되지 않을 수 있습니다</string>
+ <string name="revanced_ryd_shorts_summary_off">Shorts에서 싫어요 개수를 표시하지 않습니다</string>
+ <string name="revanced_ryd_dislike_percentage_title">싫어요 개수를 퍼센트로 표시하기</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">싫어요 개수를 퍼센트로 표시합니다</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">싫어요 개수를 숫자로 표시합니다</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">좋아요 버튼에서 구분선 숨기기</string>
+ <string name="revanced_ryd_compact_layout_summary_on">좋아요 버튼에서 구분선을 표시하지 않습니다</string>
+ <string name="revanced_ryd_compact_layout_summary_off">좋아요 버튼에서 구분선을 표시합니다</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">API를 사용할 수 없을 때, 팝업 메시지 표시하기</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">ReturnYouTubeDislike를 사용할 수 없을 때, 팝업 메시지를 표시합니다</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">ReturnYouTubeDislike를 사용할 수 없을 때, 팝업 메시지를 표시하지 않습니다</string>
+ <string name="revanced_ryd_about">정보</string>
+ <string name="revanced_ryd_attribution_summary">싫어요 개수의 데이터는 Return YouTube Dislike API에 의해 제공됩니다. 자세한 내용을 보려면 여기를 누르세요</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">이 기기의 ReturnYouTubeDislike API 사용 통계</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">평균 API 응답 시간</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">최소 API 응답 시간</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">최대 API 응답 시간</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">최근 동영상 API 응답 시간</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">싫어요 개수를 일시적으로 표시할 수 없습니다 - 클라이언트 API 속도 제한이 적용됨</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API 투표 가져오기, 호출 횟수</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">네트워크 호출한 적이 없습니다</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d 건의 네트워크 호출이 이루어졌습니다</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API 투표 가져오기, 시간 초과 횟수</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">네트워크 호출 시간 초과한 적이 없습니다</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d 건의 네트워크 호출이 시간 초과하였습니다</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API 클라이언트 비율 제한</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">클라이언트 비율 제한한 적이 없습니다</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">%d 건의 클라이언트 비율 제한이 발생하였습니다</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d 밀리초</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">넓은 검색 바 활성화하기</string>
+ <string name="revanced_wide_searchbar_summary_on">넓은 검색 바를 활성화합니다</string>
+ <string name="revanced_wide_searchbar_summary_off">넓은 검색 바를 비활성화합니다</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">이전 재생바 썸네일 복원하기</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">재생바 상단에서 최소화된 썸네일을 표시합니다</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">플레이어에서 전체 화면으로 된 썸네일을 표시합니다</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock 활성화하기</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock은 YouTube 동영상 내 성가신 구간을 건너뛰게 해주는 크라우드소싱 시스템입니다</string>
+ <string name="revanced_sb_appearance_category">레이아웃</string>
+ <string name="revanced_sb_enable_voting">구간 투표 버튼 표시하기</string>
+ <string name="revanced_sb_enable_voting_sum_on">플레이어에서 구간 투표 버튼을 표시합니다</string>
+ <string name="revanced_sb_enable_voting_sum_off">플레이어에서 구간 투표 버튼을 표시하지 않습니다</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">최소화된 건너뛰기 버튼 표시하기</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">최소화된 건너뛰기 버튼을 표시합니다</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">일반적인 건너뛰기 버튼을 표시합니다</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">자동으로 건너뛰기 버튼 숨기기</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">건너뛰기 버튼이 몇 초 후에 사라집니다</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">건너뛰기 버튼이 해당 구간이 끝날 때까지 노출됩니다</string>
+ <string name="revanced_sb_general_skiptoast">자동으로 구간을 건너뛸 때, 팝업 메시지 표시하기</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">자동으로 구간을 건너뛸 때, 팝업 메시지를 표시합니다. 여기를 누르면 예시를 볼 수 있습니다</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">자동으로 구간을 건너뛸 때, 팝업 메시지를 표시하지 않습니다. 여기를 누르면 예시를 볼 수 있습니다</string>
+ <string name="revanced_sb_general_time_without">건너뛸 구간을 제외한 시간 표시하기</string>
+ <string name="revanced_sb_general_time_without_sum_on">건너뛸 구간을 제외한 전체 동영상 길이를 타임스탬프에 표시합니다</string>
+ <string name="revanced_sb_general_time_without_sum_off">건너뛸 구간을 포함한 전체 동영상 길이를 타임스탬프에 표시합니다</string>
+ <string name="revanced_sb_create_segment_category">새로운 구간 추가하기</string>
+ <string name="revanced_sb_enable_create_segment">구간 추가 버튼 표시하기</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">플레이어에서 구간 추가 버튼을 표시합니다</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">플레이어에서 구간 추가 버튼을 표시하지 않습니다</string>
+ <string name="revanced_sb_general_adjusting">구간 추가 시 최소 슬라이더 단위 설정</string>
+ <string name="revanced_sb_general_adjusting_sum">새로운 구간 추가 시에 시간 앞으로 버튼 또는 뒤로 버튼을 눌렀을 때 이동하는 최소 시간으로, 단위는 밀리초입니다</string>
+ <string name="revanced_sb_general_adjusting_invalid">값은 양수여야 합니다</string>
+ <string name="revanced_sb_guidelines_preference_title">가이드라인 보기</string>
+ <string name="revanced_sb_guidelines_preference_sum">구간 제출 시의 주의사항에 대한 내용을 포함하고 있습니다</string>
+ <string name="revanced_sb_guidelines_popup_title">가이드라인 읽어보기</string>
+ <string name="revanced_sb_guidelines_popup_content">광고 구간을 제출하기 전에 SponsorBlock 가이드라인을 읽어보시는 것을 추천합니다</string>
+ <string name="revanced_sb_guidelines_popup_already_read">이미 읽음</string>
+ <string name="revanced_sb_guidelines_popup_open">보기</string>
+ <string name="revanced_sb_general">일반</string>
+ <string name="revanced_sb_toast_on_connection_error_title">API를 사용할 수 없을 때, 팝업 메시지 표시하기</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">SponsorBlock을 사용할 수 없을 때, 팝업 메시지를 표시합니다</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">SponsorBlock을 사용할 수 없을 때, 팝업 메시지를 표시하지 않습니다</string>
+ <string name="revanced_sb_general_skipcount">건너뛴 횟수 기록 활성화하기</string>
+ <string name="revanced_sb_general_skipcount_sum_on">구간 건너뛰기를 통해 절약한 시간을 SponsorBlock의 리더보드 시스템에 알려줍니다. 건너뛴 구간에 대한 정보가 서버에 전송됩니다</string>
+ <string name="revanced_sb_general_skipcount_sum_off">건너뛴 횟수 기록을 비활성화합니다</string>
+ <string name="revanced_sb_general_min_duration">건너뛸 최소 구간 길이</string>
+ <string name="revanced_sb_general_min_duration_sum">설정한 값(초)보다 작은 구간은 건너뛰지 않으며, 재생바에도 표시하지 않습니다</string>
+ <string name="revanced_sb_general_uuid">비공개 사용자 아이디</string>
+ <string name="revanced_sb_general_uuid_sum">비공개 사용자 아이디는 SponsorBlock 서버에서 구간을 제출하거나 건너뛴 구간 정보를 기록하는데 사용되는 고유 아이디 입니다. 절대 다른 이에게 공개하지 마세요</string>
+ <string name="revanced_sb_general_uuid_invalid">비공개 사용자 아이디는 30자 이상이어야 합니다</string>
+ <string name="revanced_sb_general_api_url">API URL 변경하기</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlock이 요청을 보낼 서버 URL입니다</string>
+ <string name="revanced_sb_api_url_reset">API URL 초기화하기</string>
+ <string name="revanced_sb_api_url_invalid">잘못된 주소입니다</string>
+ <string name="revanced_sb_api_url_changed">API URL을 변경하였습니다</string>
+ <string name="revanced_sb_settings_ie">설정 가져오기 / 내보내기</string>
+ <string name="revanced_sb_settings_copy">복사하기</string>
+ <string name="revanced_sb_settings_ie_sum">ReVanced 및 다른 SponsorBlock 플랫폼에서 가져오거나 내보낼 수 있는 SponsorBlock JSON 구성입니다</string>
+ <string name="revanced_sb_settings_ie_sum_warning">ReVanced 및 다른 SponsorBlock 플랫폼에서 가져오거나 내보낼 수 있는 SponserBlock JSON의 전체 구성 파일입니다. 비공개 사용자 아이디를 포함하고 있으므로 주의하세요</string>
+ <string name="revanced_sb_settings_import_successful">설정을 성공적으로 가져왔습니다</string>
+ <string name="revanced_sb_settings_import_failed">설정을 가져올 수 없습니다: %s</string>
+ <string name="revanced_sb_settings_export_failed">설정을 내보낼 수 없습니다: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">설정에는 비공개 SponsorBlock 사용자 아이디가 포함되어 있습니다\n\n절대 다른 이에게 공개하지 마세요\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">다시 보지 않기</string>
+ <string name="revanced_sb_diff_segments">각 구간에 설정할 동작</string>
+ <string name="revanced_sb_segments_sponsor">스폰서 광고</string>
+ <string name="revanced_sb_segments_sponsor_sum">유료 광고, 협찬과 같은 직/간접적인 광고 구간입니다</string>
+ <string name="revanced_sb_segments_selfpromo">자체 홍보 구간</string>
+ <string name="revanced_sb_segments_selfpromo_sum">\'스폰서 광고\' 구간과 비슷하지만, 자발적으로 홍보하는 내용을 포함하는 구간입니다. 채널 굿즈 광고, 기부 광고와 동영상에 참여한 사람들을 홍보하는 광고가 해당합니다</string>
+ <string name="revanced_sb_segments_interaction">상호 작용 요청 (구독)</string>
+ <string name="revanced_sb_segments_interaction_sum">좋아요, 구독, 알림 설정을 요청하는 내용에 관한 구간입니다</string>
+ <string name="revanced_sb_segments_highlight">하이라이트</string>
+ <string name="revanced_sb_segments_highlight_sum">사람들이 동영상에서 가장 많이 찾는 구간입니다</string>
+ <string name="revanced_sb_segments_intro">무음 / 인트로 구간</string>
+ <string name="revanced_sb_segments_intro_sum">아무 내용도 없는 구간입니다. 애니메이션이나 정적 프레임과 같은 내용을 포함하고 있습니다</string>
+ <string name="revanced_sb_segments_outro">최종 화면 / 크레딧</string>
+ <string name="revanced_sb_segments_outro_sum">엔딩 크레딧이나 최종 화면이 나타나는 구간입니다</string>
+ <string name="revanced_sb_segments_preview">미리 보기 / 요약 / 흥미 유발</string>
+ <string name="revanced_sb_segments_preview_sum">이전 에피소드를 간략히 요약하거나 현재 동영상의 하이라이트를 미리 보여줍니다</string>
+ <string name="revanced_sb_segments_filler">주제와 관련 없는 구간</string>
+ <string name="revanced_sb_segments_filler_sum">전반적인 동영상의 주제를 이해하는 데 필요 없는 내용을 포함하고 있습니다</string>
+ <string name="revanced_sb_segments_nomusic">음악이 아닌 구간</string>
+ <string name="revanced_sb_segments_nomusic_sum">뮤직 비디오에서 음악이 아닌 구간이 해당합니다</string>
+ <string name="revanced_sb_skip_button_compact">건너뛰기</string>
+ <string name="revanced_sb_skip_button_compact_highlight">하이라이트</string>
+ <string name="revanced_sb_skip_button_sponsor">스폰서 광고 건너뛰기</string>
+ <string name="revanced_sb_skip_button_selfpromo">자체 홍보 구간 건너뛰기</string>
+ <string name="revanced_sb_skip_button_interaction">상호 작용 요청 건너뛰기</string>
+ <string name="revanced_sb_skip_button_highlight">하이라이트로 건너뛰기</string>
+ <string name="revanced_sb_skip_button_intro_beginning">인트로 건너뛰기</string>
+ <string name="revanced_sb_skip_button_intro_middle">무음 구간 건너뛰기</string>
+ <string name="revanced_sb_skip_button_intro_end">무음 구간 건너뛰기</string>
+ <string name="revanced_sb_skip_button_outro">최종 화면 건너뛰기</string>
+ <string name="revanced_sb_skip_button_preview_beginning">미리 보기 건너뛰기</string>
+ <string name="revanced_sb_skip_button_preview_middle">미리 보기 건너뛰기</string>
+ <string name="revanced_sb_skip_button_preview_end">요약 건너뛰기</string>
+ <string name="revanced_sb_skip_button_filler">주제와 관련 없는 구간 건너뛰기</string>
+ <string name="revanced_sb_skip_button_nomusic">음악이 아닌 구간 건너뛰기</string>
+ <string name="revanced_sb_skip_button_unsubmitted">미제출한 구간 건너뛰기</string>
+ <string name="revanced_sb_skipped_sponsor">스폰서 광고를 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_selfpromo">자체 홍보 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_interaction">상호 작용 요청을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_highlight">하이라이트로 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_intro_beginning">인트로를 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_intro_middle">무음 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_intro_end">무음 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_outro">최종 화면을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_preview_beginning">미리 보기를 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_preview_middle">미리 보기를 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_preview_end">요약을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_filler">주제와 관련 없는 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_nomusic">음악이 아닌 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_unsubmitted">미제출한 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skipped_multiple_segments">여러 구간을 건너뛰었습니다</string>
+ <string name="revanced_sb_skip_automatically">자동으로 건너뛰기</string>
+ <string name="revanced_sb_skip_automatically_once">한 번만 자동으로 건너뛰기</string>
+ <string name="revanced_sb_skip_showbutton">건너뛰기 버튼 표시하기</string>
+ <string name="revanced_sb_skip_seekbaronly">재생바에만 표시하기</string>
+ <string name="revanced_sb_skip_ignore">아무것도 하지 않기</string>
+ <string name="revanced_sb_submit_failed_invalid">구간을 제출할 수 없습니다: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock을 일시적으로 사용할 수 없습니다</string>
+ <string name="revanced_sb_submit_failed_unknown_error">구간을 제출할 수 없습니다 (상태 코드: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">구간을 제출할 수 없습니다\n동일 사용자 또는 동일 IP로 부터 제출된 요청이 너무 많습니다</string>
+ <string name="revanced_sb_submit_failed_forbidden">구간을 제출할 수 없습니다: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">구간을 제출할 수 없습니다\n이미 존재하는 구간입니다</string>
+ <string name="revanced_sb_submit_succeeded">구간을 성공적으로 제출하였습니다</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock을 일시적으로 사용할 수 없습니다 (응답 시간 초과)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock을 일시적으로 사용할 수 없습니다 (상태 코드: %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock을 일시적으로 사용할 수 없습니다</string>
+ <string name="revanced_sb_vote_failed_timeout">구간에 투표할 수 없습니다 (응답 시간 초과)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">구간에 투표할 수 없습니다 (상태 코드: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">구간에 투표할 수 없습니다: %s</string>
+ <string name="revanced_sb_vote_upvote">좋아요</string>
+ <string name="revanced_sb_vote_downvote">싫어요</string>
+ <string name="revanced_sb_vote_category">카테고리 변경</string>
+ <string name="revanced_sb_vote_no_segments">투표할 구간이 없습니다</string>
+ <string name="revanced_sb_new_segment_choose_category">구간 카테고리를 선택해주세요</string>
+ <string name="revanced_sb_new_segment_disabled_category">이 카테고리는 비활성화되어 있습니다. 제출하려면 설정에서 활성화해야 합니다</string>
+ <string name="revanced_sb_new_segment_title">새 SponsorBlock 구간</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">%1$02d:%2$02d:%3$03d을 구간의 시작 또는 끝으로 설정할까요?</string>
+ <string name="revanced_sb_new_segment_mark_start">시작</string>
+ <string name="revanced_sb_new_segment_mark_end">끝</string>
+ <string name="revanced_sb_new_segment_now">현재</string>
+ <string name="revanced_sb_new_segment_time_start">구간의 시작</string>
+ <string name="revanced_sb_new_segment_time_end">구간의 끝</string>
+ <string name="revanced_sb_new_segment_confirm_title">설정된 구간이 정확합니까?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">선택한 구간이\n\n%1$s\n부터\n%2$s\n\n(%3$s) 까지 입니다\n\n이렇게 제출하겠습니까?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">구간의 시작 또는 끝을 잘못 설정하였습니다</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">먼저 재생바에서 시작 지점과 끝 지점을 표시해주세요</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">구간 미리 보기 버튼을 눌러서 설정한 구간이 정상적으로 건너뛰기가 되는지 확인해주세요</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">직접 시간 구간 편집하기</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">구간의 시작이나 끝을 편집하겠습니까?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">잘못된 시간 형식입니다</string>
+ <string name="revanced_sb_stats">기록</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">기록을 일시적으로 가져올 수 없습니다 (응답 시간 초과)</string>
+ <string name="revanced_sb_stats_loading">불러오는 중 ...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock을 비활성화하였습니다</string>
+ <string name="revanced_sb_stats_username">사용자 이름: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">사용자 이름을 변경하려면 여기를 누르세요</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">사용자 이름을 변경할 수 없습니다. 상태 코드: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">사용자 이름을 성공적으로 변경하였습니다</string>
+ <string name="revanced_sb_stats_reputation">사용자의 평판: <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">제출 횟수: <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock 리더보드</string>
+ <string name="revanced_sb_stats_saved">다른 분들이 <b>%s</b>개의 구간을 건너뛸 수 있게 해주셨습니다</string>
+ <string name="revanced_sb_stats_saved_sum_zero">글로벌 기록 또는 상위 기여자를 확인하려면 여기를 누르세요</string>
+ <string name="revanced_sb_stats_saved_sum">이는 <b>%s</b>에 해당합니다.<br>리더보드를 보려면 여기를 누르세요</string>
+ <string name="revanced_sb_stats_self_saved">구간 <b>%s</b>개를 건너뛰었습니다</string>
+ <string name="revanced_sb_stats_self_saved_sum">이는 <b>%s</b>에 해당합니다</string>
+ <string name="revanced_sb_stats_self_saved_reset_title">건너뛴 횟수 기록을 초기화하겠습니까?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s 시간 %2$s 분</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s 분 %2$s 초</string>
+ <string name="revanced_sb_stats_saved_second_format">%s 초</string>
+ <string name="revanced_sb_color_dot_label">색상:</string>
+ <string name="revanced_sb_color_changed">설정한 색상을 적용하였습니다</string>
+ <string name="revanced_sb_color_reset">색상을 초기화하였습니다</string>
+ <string name="revanced_sb_color_invalid">잘못된 헥스 코드입니다</string>
+ <string name="revanced_sb_reset_color">색상 초기화</string>
+ <string name="revanced_sb_reset">초기화</string>
+ <string name="revanced_sb_about">정보</string>
+ <string name="revanced_sb_about_api_sum">건너뛸 구간의 데이터는 SponsorBlock API에 의해 제공됩니다. 자세한 내용을 보려면 여기를 누르세요</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">앱 버전 변경하기</string>
+ <string name="revanced_spoof_app_version_summary_on">앱 버전을 변경합니다</string>
+ <string name="revanced_spoof_app_version_summary_off">앱 버전을 변경하지 않습니다</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">앱 버전을 YouTube 이전 앱 버전으로 변경합니다\n\n이 경우 앱 레이아웃과 기능이 변경되지만 알려지지 않은 문제점이 발생할 수 있습니다\n\n나중에 이 설정을 비활성화하면 앱 레이아웃 버그를 방지하기 위해 앱 데이터를 지우는 것이 좋습니다</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">변경할 앱 버전 설정</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - 시크릿 모드에서 Shorts RYD를 복원합니다</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - 넓은 동영상 재생 속도 & 화질 메뉴를 복원합니다</string>
+ <string name="revanced_spoof_app_version_target_entry_3">16.09.39 - 이전 보관함 탭을 복원합니다 (나 탭을 비활성화합니다)</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - 이전 재생목록 선반으로 복원합니다</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - 이전 레이아웃으로 복원합니다</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">앱 시작 페이지 변경하기</string>
+ <string name="revanced_start_page_entry_0">기본</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">홈</string>
+ <string name="revanced_start_page_entry_2">검색</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">구독</string>
+ <string name="revanced_start_page_entry_4">탐색</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">나 (보관함)</string>
+ <string name="revanced_start_page_entry_7">좋아요 표시한 동영상</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">기록</string>
+ <string name="revanced_start_page_entry_9">인기 급상승</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">앱을 시작할 때, Shorts 플레이어 비활성화하기</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">앱을 시작할 때, Shorts 플레이어를 다시 실행하지 않습니다</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">앱을 시작할 때, Shorts 플레이어를 다시 실행합니다</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">태블릿 레이아웃 활성화하기</string>
+ <string name="revanced_tablet_layout_summary_on">일부 레이아웃을 태블릿 레이아웃으로 활성화합니다</string>
+ <string name="revanced_tablet_layout_summary_off">일부 레이아웃을 태블릿 레이아웃으로 활성화하지 않습니다</string>
+ <string name="revanced_tablet_layout_user_dialog_message">태블릿 레이아웃에서는 커뮤니티 게시물을 표시되지 않습니다</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">미니 플레이어</string>
+ <string name="revanced_miniplayer_screen_summary">앱 내에서 최소화된 플레이어의 스타일을 변경할 수 있습니다</string>
+ <string name="revanced_miniplayer_type_title">미니 플레이어 타입 설정</string>
+ <string name="revanced_miniplayer_type_entry_1">기기 기본값 사용</string>
+ <string name="revanced_miniplayer_type_entry_2">폰</string>
+ <string name="revanced_miniplayer_type_entry_3">태블릿</string>
+ <string name="revanced_miniplayer_type_entry_4">최신 스타일 1</string>
+ <string name="revanced_miniplayer_type_entry_5">최신 스타일 2</string>
+ <string name="revanced_miniplayer_type_entry_6">최신 스타일 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">\'펼치기\' & \'닫기\' 버튼 숨기기</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">\'펼치기\' & \'닫기\' 버튼이 숨겨집니다\n• 스와이프하여 미니 플레이어를 펼치거나 닫을 수 있습니다</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">\'펼치기\' & \'닫기\' 버튼이 노출됩니다</string>
+ <string name="revanced_miniplayer_hide_subtext_title">서브텍스트 숨기기</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">서브텍스트가 숨겨집니다\n• 왼쪽 하단에서 표시되는 \'유료 광고 포함\'과 같은 라벨</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">서브텍스트가 노출됩니다\n• 왼쪽 하단에서 표시되는 \'유료 광고 포함\'과 같은 라벨</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">\'되감기\' & \'빨리 감기\' 버튼 숨기기</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">\'되감기\' & \'빨리 감기\' 버튼이 숨겨집니다</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">\'되감기\' & \'빨리 감기\' 버튼이 노출됩니다</string>
+ <string name="revanced_miniplayer_opacity_title">미니 플레이어 오버레이 불투명도</string>
+ <string name="revanced_miniplayer_opacity_summary">불투명도 값은 0-100 사이이며, 0은 투명입니다</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">미니 플레이어 오버레이 불투명도는 0-100 사이여야 합니다</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">그라데이션 색상 로딩 화면 활성화하기</string>
+ <string name="revanced_gradient_loading_screen_summary_on">그라데이션 색상 로딩 화면을 활성화합니다</string>
+ <string name="revanced_gradient_loading_screen_summary_off">기본 로딩 화면을 활성화합니다</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">사용자 정의 재생바 색상 활성화하기</string>
+ <string name="revanced_seekbar_custom_color_summary_on">사용자 정의 재생바 색상을 활성화합니다</string>
+ <string name="revanced_seekbar_custom_color_summary_off">기본 재생바 색상을 활성화합니다</string>
+ <string name="revanced_seekbar_custom_color_value_title">사용자 정의 재생바 색상 설정</string>
+ <string name="revanced_seekbar_custom_color_value_summary">재생바 색상</string>
+ <string name="revanced_seekbar_custom_color_invalid">잘못된 재생바 색상 값이므로 기본값으로 초기화합니다</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">홈 탭</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">구독 탭</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">나(보관함) 탭</string>
+ <string name="revanced_alt_thumbnail_player_title">플레이어 구성요소: 재생목록, 관련 동영상, etc.</string>
+ <string name="revanced_alt_thumbnail_search_title">검색 결과</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">원본 썸네일</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & 원본 썸네일</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & 동영상 스틸 컷 썸네일</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">동영상 스틸 컷 썸네일</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow는 YouTube 동영상에 크라우드 소싱된 썸네일을 제공합니다. 이러한 썸네일은 YouTube에서 제공하는 썸네일보다 관련성이 높은 경우가 많습니다\n\n이 설정을 활성화하면 동영상 URL이 API 서버로 전송되며 다른 데이터는 전송되지 않습니다. 동영상에 DeArrow 썸네일이 없는 경우에는 원본 썸네일 또는 동영상 스틸 컷 썸네일을 표시합니다\n\nDeArrow에 대해 자세히 알아보려면 여기를 누르세요</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">API를 사용할 수 없을 때, 팝업 메시지 표시하기</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">DeArrow를 사용할 수 없을 때, 팝업 메시지를 표시합니다</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">DeArrow를 사용할 수 없을 때, 팝업 메시지를 표시하지 않습니다</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API 엔드포인트</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrow 썸네일 캐시 엔드포인트 URL입니다</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">동영상 스틸 컷 썸네일</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">동영상 스틸 컷 썸네일은 각 동영상의 시작 / 중간 / 끝 부분에서 캡쳐된 이미지입니다. 이러한 이미지는 YouTube에 내장되어 있으며 외부 API는 사용하지 않습니다</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">일반화질 동영상 스틸 컷 썸네일 표시하기</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">일반화질 동영상 스틸 컷 썸네일을 표시합니다. 썸네일을 빠르게 불러오지만 실시간 스트림, 비공개, 오래된 동영상에서는 아무것도 표시되지 않은 썸네일이 표시될 수 있습니다</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">고화질 동영상 스틸 컷 썸네일을 표시합니다</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">동영상 스틸 컷 썸네일에 표시되는 이미지</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">동영상의 시작 부분 이미지</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">동영상의 중간 부분 이미지</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">동영상의 끝 부분 이미지</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow를 일시적으로 사용할 수 없습니다 (상태 코드: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow를 일시적으로 사용할 수 없습니다</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVanced 공지 사항 팝업 표시하기</string>
+ <string name="revanced_announcements_summary_on">앱을 시작할 때, 공지 사항 팝업을 표시합니다</string>
+ <string name="revanced_announcements_summary_off">앱을 시작할 때, 공지 사항 팝업을 표시하지 않습니다</string>
+ <string name="revanced_announcements_enabled_summary">앱을 시작할 때, 공지 사항 팝업을 표시할 수 있습니다</string>
+ <string name="revanced_announcements_connection_failed">공지 사항 제공자와 연결할 수 없습니다</string>
+ <string name="revanced_announcements_dialog_dismiss">닫기</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">자동 반복 활성화하기</string>
+ <string name="revanced_auto_repeat_summary_on">자동 반복을 활성화합니다</string>
+ <string name="revanced_auto_repeat_summary_off">자동 반복을 비활성화합니다</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">기기 크기 정보 변경하기</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">기기 크기 정보를 변경합니다\n\n이 설정을 활성화하면 이 기기에서 사용되지 않을 수 있는 초고화질 동영상 값을 잠금 해제할 수 있지만 (1440p, 2160p), 동영상 재생이 끊기거나 배터리 수명이 단축되고 알려지지 않은 문제점이 발생할 수 있습니다</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">기기 크기 정보를 변경하지 않습니다\n\n이 설정을 활성화하면 이 기기에서 사용되지 않을 수 있는 초고화질 동영상 값을 잠금 해제할 수 있습니다 (1440p, 2160p)</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">이 설정을 활성화하면 동영상 재생이 끊기거나 배터리 수명이 단축되고 알려지지 않은 문제점이 발생할 수 있습니다</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore 설정</string>
+ <string name="microg_settings_summary">알림 수신을 위한 클라우드 메시징을 설정할 수 있습니다</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">리다이렉션 없이 링크 바로 열기</string>
+ <string name="revanced_bypass_url_redirects_summary_on">앱 내에서 외부 링크를 열 때, URL 리다이렉션(youtube.com/redirect)을 거치지 않고 연결됩니다</string>
+ <string name="revanced_bypass_url_redirects_summary_off">앱 내에서 외부 링크를 열 때, URL 리다이렉션(youtube.com/redirect)을 거쳐서 연결됩니다</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">외부 브라우저 사용하기</string>
+ <string name="revanced_external_browser_summary_on">앱 내에서 외부 링크를 열 때, 외부 브라우저를 사용합니다</string>
+ <string name="revanced_external_browser_summary_off">앱 내에서 외부 링크를 열 때, 내부 브라우저를 사용합니다</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">백그라운드 재생</string>
+ <string name="revanced_background_playback_summary">이 설정은 YouTube 설정에서 변경할 수 있습니다 → 백그라운드</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">추적 쿼리를 제거한 링크 공유하기</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">링크를 공유할 때, URL에서 추적 쿼리 매개변수를 제거합니다 (URL의 뒷부분 \'?si=...\' 이 제거됨)</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">링크를 공유할 때, URL에서 추적 쿼리 매개변수를 제거하지 않습니다</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">동영상을 확대할 때, 진동 피드백 비활성화하기</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">진동 피드백을 비활성화합니다</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">진동 피드백을 활성화합니다</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">자동</string>
+ <string name="revanced_remember_video_quality_last_selected_title">동영상 화질 저장 활성화하기</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">동영상 화질 값을 변경할 때마다 저장합니다</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">동영상 화질 값을 변경할 때마다 저장하지 않습니다</string>
+ <string name="revanced_video_quality_default_wifi_title">Wi-Fi 이용 시 기본 동영상 화질</string>
+ <string name="revanced_video_quality_default_mobile_title">모바일 네트워크 이용 시 기본 동영상 화질</string>
+ <string name="revanced_remember_video_quality_mobile">모바일 네트워크</string>
+ <string name="revanced_remember_video_quality_wifi">Wi-Fi</string>
+ <string name="revanced_remember_video_quality_toast">기본 동영상 화질을 %1$s 에서 %2$s 로 변경합니다</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">동영상 재생 속도 다이얼로그 버튼 표시하기</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">버튼이 노출됩니다</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">버튼을 표시하지 않습니다</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">사용자 정의 동영상 재생 속도</string>
+ <string name="revanced_custom_playback_speeds_summary">사용하고 싶은 동영상 재생 속도 값을 추가 또는 변경할 수 있습니다</string>
+ <string name="revanced_custom_playback_speeds_invalid">재생 속도 값은 %s배속을 초과할 수 없으므로 기본값으로 초기화합니다</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">잘못된 재생 속도 값이므로 기본값으로 초기화합니다</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">동영상 재생 속도 저장 활성화하기</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">동영상 재생 속도 값을 변경할 때마다 저장합니다</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">동영상 재생 속도 값을 변경할 때마다 저장하지 않습니다</string>
+ <string name="revanced_playback_speed_default_title">기본 동영상 재생 속도</string>
+ <string name="revanced_remember_playback_speed_toast">기본 동영상 재생 속도 값을 %s으로 변경합니다</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">이전 동영상 화질 설정 메뉴 활성화하기</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">이전 동영상 화질 설정 메뉴를 활성화합니다</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">이전 동영상 화질 설정 메뉴를 비활성화합니다</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">슬라이드하여 탐색 활성화하기</string>
+ <string name="revanced_slide_to_seek_summary_on">슬라이드하여 탐색을 활성화합니다</string>
+ <string name="revanced_slide_to_seek_summary_off">슬라이드하여 탐색을 비활성화합니다</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">클라이언트 변경하기</string>
+ <string name="revanced_spoof_client_screen_summary">클라이언트를 변경하여 재생 문제를 방지할 수 있습니다</string>
+ <string name="revanced_spoof_client_title">클라이언트 변경하기</string>
+ <string name="revanced_spoof_client_summary_on">클라이언트를 변경합니다</string>
+ <string name="revanced_spoof_client_summary_off">클라이언트를 변경하지 않습니다. 동영상이 재생되지 않을 수 있습니다</string>
+ <string name="revanced_spoof_client_user_dialog_message">이 설정을 비활성화하면 동영상 재생 문제가 발생할 수 있습니다</string>
+ <string name="revanced_spoof_client_use_ios_title">iOS 클라이언트로 변경하기</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">클라이언트를 iOS 클라이언트로 변경합니다\n\n알려진 문제점:\n• HDR 동영상을 재생할 수 없습니다\n• 브랜드 계정 사용자는 시청 기록을 사용할 수 없습니다\n• 동영상이 초고화질 동영상 값으로 재생되지 않을 수 있습니다 (1440p, 2160p)\n• 실시간 스트림에서 \'백그라운드 재생\'을 사용할 수 없습니다\n• Android 8.0 사용자는 실시간 스트림을 재생할 수 없습니다</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">클라이언트를 Android VR 클라이언트로 변경합니다\n\n알려진 문제점: \n• HDR 동영상을 재생할 수 없습니다\n- Kids 동영상을 재생할 수 없습니다\n• 일시 정지된 동영상이 갑자기 다시 시작될 수 있습니다\n• 저화질 Shorts 재생바 썸네일이 표시됩니다\n• 플레이어 하단에서 오프라인 저장 버튼이 표시되지 않습니다\n• 최종 화면 카드가 표지되지 않습니다</string>
+ <string name="revanced_spoof_client_storyboard_timeout">클라이언트 썸네일을 사용할 수 없습니다 (응답 시간 초과)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">클라이언트 썸네일을 일시적으로 사용할 수 없습니다: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">새로운 동영상 화질 설정을 활성화합니다</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">새로운 동영상 화질 설정을 활성화합니다</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">이 설정을 비활성화하면 동영상 재생 문제가 발생할 수 있습니다.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">피드 동영상에 대한 앱 서명 변경하기</string>
+ <string name="revanced_spoof_storyboard_title">스토리보드 변경하기</string>
+ <string name="revanced_spoof_storyboard_io_exception">스토리보드를 일시적으로 변경할 수 없습니다: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">슬라이드하여 탐색 활성화하기</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">음성 광고 차단하기</string>
+ <string name="revanced_block_audio_ads_summary_on">음성 광고를 차단합니다</string>
+ <string name="revanced_block_audio_ads_summary_off">음성 광고를 차단하지 않습니다</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s 를 차단할 수 없기 때문에 광고가 표시될 것입니다. 설정에서 다른 광고 차단 서비스로 전환해 보세요</string>
+ <string name="revanced_embedded_ads_service_failed">%s 서버에서 오류가 발생했기 때문에 광고가 표시될 것입니다. 설정에서 다른 광고 차단 서비스로 전환해 보세요</string>
+ <string name="revanced_block_embedded_ads_title">광고 차단 Proxy 서버 사용하기</string>
+ <string name="revanced_block_embedded_ads_entry_1">사용하지 않기</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">동영상 광고 차단하기</string>
+ <string name="revanced_block_video_ads_summary_on">동영상 광고를 차단합니다</string>
+ <string name="revanced_block_video_ads_summary_off">동영상 광고를 차단하지 않습니다</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">메시지를 삭제합니다</string>
+ <string name="revanced_show_deleted_messages_title">삭제된 메시지 표시하기</string>
+ <string name="revanced_show_deleted_messages_entry_1">삭제된 메시지 표시하지 않기</string>
+ <string name="revanced_show_deleted_messages_entry_2">스포일러 뒤에 삭제된 메시지 숨기기</string>
+ <string name="revanced_show_deleted_messages_entry_3">삭제된 메시지를 줄이 그어진 텍스트로 표시하기</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">채널 포인트 자동 적립하기</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">채널 포인트을 자동으로 적립합니다</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">채널 포인트를 자동으로 적립하지 않습니다</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch 디버그 모드 활성화하기</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch 디버그 모드를 활성화합니다 (추천하지 않음)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch 디버그 모드를 비활성화합니다</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced 설정</string>
+ <string name="revanced_ads_screen_title">광고</string>
+ <string name="revanced_ads_screen_summary">광고 차단을 설정할 수 있습니다</string>
+ <string name="revanced_chat_screen_title">채팅</string>
+ <string name="revanced_chat_screen_summary">채팅을 설정할 수 있습니다</string>
+ <string name="revanced_misc_screen_title">기타</string>
+ <string name="revanced_misc_screen_summary">그외 부분을 설정할 수 있습니다</string>
+ <string name="revanced_general_category_title">일반 설정</string>
+ <string name="revanced_other_category_title">기타 설정</string>
+ <string name="revanced_client_ads_category_title">클라이언트 광고</string>
+ <string name="revanced_surestream_ads_category_title">서버 광고</string>
+ <string name="revanced_twitch_debug_title">디버그 로깅</string>
+ <string name="revanced_twitch_debug_summary_on">디버그 로그를 출력합니다</string>
+ <string name="revanced_twitch_debug_summary_off">디버그 로그를 출력하지 않습니다</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ky-rKG/strings.xml b/src/main/resources/addresources/values-ky-rKG/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-ky-rKG/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-lo-rLA/strings.xml b/src/main/resources/addresources/values-lo-rLA/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-lo-rLA/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-lt-rLT/strings.xml b/src/main/resources/addresources/values-lt-rLT/strings.xml
new file mode 100644
index 0000000000..314fb0d44b
--- /dev/null
+++ b/src/main/resources/addresources/values-lt-rLT/strings.xml
@@ -0,0 +1,268 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Nustatyti iš naujo</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Apie</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Derinimas</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Apie</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Išvaizda</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Įkeliama...</string>
+ <string name="revanced_sb_reset">Nustatyti iš naujo</string>
+ <string name="revanced_sb_about">Apie</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Numatyti</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Atmesti</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Išjungta</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-lv-rLV/strings.xml b/src/main/resources/addresources/values-lv-rLV/strings.xml
new file mode 100644
index 0000000000..95c71c146f
--- /dev/null
+++ b/src/main/resources/addresources/values-lv-rLV/strings.xml
@@ -0,0 +1,266 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Atiestatīt</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Par</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Par</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Izskats</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Notiek ielāde...</string>
+ <string name="revanced_sb_reset">Atiestatīt</string>
+ <string name="revanced_sb_about">Par</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Parasts</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Atspējots</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-mk-rMK/strings.xml b/src/main/resources/addresources/values-mk-rMK/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-mk-rMK/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ml-rIN/strings.xml b/src/main/resources/addresources/values-ml-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-ml-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-mn-rMN/strings.xml b/src/main/resources/addresources/values-mn-rMN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-mn-rMN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-mr-rIN/strings.xml b/src/main/resources/addresources/values-mr-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-mr-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ms-rMY/strings.xml b/src/main/resources/addresources/values-ms-rMY/strings.xml
new file mode 100644
index 0000000000..41dd8aad41
--- /dev/null
+++ b/src/main/resources/addresources/values-ms-rMY/strings.xml
@@ -0,0 +1,265 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Set semula</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Tentang</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Tentang</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Penampilan</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Memuatkan...</string>
+ <string name="revanced_sb_reset">Set semula</string>
+ <string name="revanced_sb_about">Tentang</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Dimatikan</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-my-rMM/strings.xml b/src/main/resources/addresources/values-my-rMM/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-my-rMM/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-nb-rNO/strings.xml b/src/main/resources/addresources/values-nb-rNO/strings.xml
new file mode 100644
index 0000000000..204add9d71
--- /dev/null
+++ b/src/main/resources/addresources/values-nb-rNO/strings.xml
@@ -0,0 +1,1187 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Ønsker du å fortsette?</string>
+ <string name="revanced_settings_reset">Reset</string>
+ <string name="revanced_settings_restart_title">Oppdater og start på nytt</string>
+ <string name="revanced_settings_restart">Omstart</string>
+ <string name="revanced_settings_import">Importer</string>
+ <string name="revanced_settings_import_copy">Kopier</string>
+ <string name="revanced_settings_import_reset">Forbedrede innstillinger tilbakestilt til standard</string>
+ <string name="revanced_settings_import_success">Importerte %d innstillinger</string>
+ <string name="revanced_settings_import_failure_parse">Import mislyktes: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore er ikke installert. Installer den.</string>
+ <string name="gms_core_dialog_title">Handling nødvendig</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore har ikke tillatelse til å kjøre i bakgrunnen.\n\nFølg \"Ikke drep min app\"-veiledningen for telefonen din og bruk instruksjonene på MicroG installasjonen.\n\nDette er nødvendig for at appen skal fungere.</string>
+ <string name="gms_core_dialog_open_website_text">Åpne nettsted</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore batterioptimalisering må deaktiveres for å forhindre problemer.\n\nTrykk på fortsett knappen og deaktiver batterioptimaliseringer.</string>
+ <string name="gms_core_dialog_continue_text">Fortsett</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Du bruker Revananserte Patches versjon <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Notat</string>
+ <string name="revanced_settings_about_links_dev_body">Denne versjonen er en forhåndsutgivelse, og du kan oppleve uventede problemer</string>
+ <string name="revanced_settings_about_links_header">Offisielle lenker</string>
+ <string name="revanced_pref_import_export_title">Import / Eksport</string>
+ <string name="revanced_pref_import_export_summary">Import / Export ReVanced Settings</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Om</string>
+ <string name="revanced_settings_screen_01_ads_title">Reklame</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternative miniatyrbilder</string>
+ <string name="revanced_settings_screen_03_feed_title">MATE</string>
+ <string name="revanced_settings_screen_04_player_title">Spiller</string>
+ <string name="revanced_settings_screen_05_general_title">Generelt oppsett</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Søkbar</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Sveip kontroller</string>
+ <string name="revanced_settings_screen_11_misc_title">Diverse</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Feilsøking</string>
+ <string name="revanced_debug_screen_summary">Aktivere eller deaktivere feilsøkingsalternativer</string>
+ <string name="revanced_debug_title">Feilsøk logging</string>
+ <string name="revanced_debug_summary_on">Feilsøkingslogger er aktivert</string>
+ <string name="revanced_debug_summary_off">Feilsøkingslogger er deaktivert</string>
+ <string name="revanced_debug_protobuffer_title">Logg protokollbuffer</string>
+ <string name="revanced_debug_protobuffer_summary_on">Feilsøkingslogger inkluderer proto-buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Feilsøkingslogger inkluderer ikke proto-buffer</string>
+ <string name="revanced_debug_stacktrace_title">Logge stacketspor</string>
+ <string name="revanced_debug_stacktrace_summary_on">Feilsøkingslogger inkluderer stablingsspor</string>
+ <string name="revanced_debug_stacktrace_summary_off">Feilsøkingslogger inkluderer ikke stablingsspor</string>
+ <string name="revanced_debug_toast_on_error_title">Vis toast på ReVanced error</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast vises ved feil</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast ikke vist ved feil</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Slår av feil i altfor å skjule alle ReVanced feilmeldinger.\n\nDu vil ikke bli varslet om noen uventede hendelser.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Deaktiver \'liker\' / abonnér på glød</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Som og abonner-knappen vil ikke glød når den nevnes</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Som og abbonér vil glød når det nevnes</string>
+ <string name="revanced_hide_gray_separator_title">Skjul grå skilletegn</string>
+ <string name="revanced_hide_gray_separator_summary_on">Grå skilletegn er skjult</string>
+ <string name="revanced_hide_gray_separator_summary_off">Grå skilletegn vises</string>
+ <string name="revanced_hide_channel_watermark_title">Skjul kanalvannmerke</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Vannmerket er skjult</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vannmerke er vist</string>
+ <string name="revanced_hide_horizontal_shelves_title">Skjul horisontale hyller</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Hyller er vist</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Skjul \'Bli med\' knapp</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Knappen er skjult</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Knappen vises</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Skjul «For deg» hylle på kanalside</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Sokkelen er skjult</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Holdbarhet er vist</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Skjul \"Varsle meg\"-knapp</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Knappen er skjult</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Knappen vises</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Skjul \'Personer også overvåket\' anbefalinger</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Anbefalinger er skjult</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Anbefalinger er vist</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Skjul \'Vis mer\' knapp</string>
+ <string name="revanced_hide_show_more_button_summary_on">Knappen er skjult</string>
+ <string name="revanced_hide_show_more_button_summary_off">Knappen vises</string>
+ <string name="revanced_hide_timed_reactions_title">Skjul tidsbestemte reaksjoner</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Tidsbestemte reaksjoner er skjult</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Tidsbestemte reaksjoner er vist</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Skjul søkeresultat topptekst på hyllen</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Sokkeltoppen er skjult</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Sokkelhode er vist</string>
+ <string name="revanced_hide_channel_guidelines_title">Skjul kanalretningslinjer</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanal retningslinjer er skjult</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanal retningslinjer er vist</string>
+ <string name="revanced_hide_expandable_chip_title">Skjul ekspanderbar chip under videoer</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Utvidbare brikker er skjult</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Utvidbare brikker vises</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Skjul meny for bildekvalitet bunntekst</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Menybunntekst for videokvalitet er skjult</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Menybunntekst for videokvalitet vises</string>
+ <string name="revanced_hide_community_posts_title">Skjul samfunnsinnlegg</string>
+ <string name="revanced_hide_community_posts_summary_on">Samfunnets innlegg er skjult</string>
+ <string name="revanced_hide_community_posts_summary_off">Samfunnsinnlegg vises</string>
+ <string name="revanced_hide_compact_banner_title">Skjul kompakte bannere</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakte bannere er skjult</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakte bannere er vist</string>
+ <string name="revanced_hide_movies_section_title">Skjul filmseksjonen</string>
+ <string name="revanced_hide_movies_section_summary_on">Deler av filmer er skjult</string>
+ <string name="revanced_hide_movies_section_summary_off">Deler av filmer vises</string>
+ <string name="revanced_hide_feed_survey_title">Skjul feed undersøkelser</string>
+ <string name="revanced_hide_feed_survey_summary_on">Feed-undersøkelser er skjult</string>
+ <string name="revanced_hide_feed_survey_summary_off">Feed undersøkelser vises</string>
+ <string name="revanced_hide_community_guidelines_title">Skjul samfunnets retningslinjer</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Retningslinjer for fellesskap er skjult</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Retningslinjer for fellesskap er vist</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Skjul samfunnsretningslinjer fra abonnenter</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Retningslinjer for abonnenter er skjult</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Nettstedsveiledninger for abonnenter vises</string>
+ <string name="revanced_hide_channel_member_shelf_title">Skjul kanalens hylle</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanal medlem hylle er skjult</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanal medlem hylle er vist</string>
+ <string name="revanced_hide_emergency_box_title">Skjul nødbokser</string>
+ <string name="revanced_hide_emergency_box_summary_on">Nødbokser er skjult</string>
+ <string name="revanced_hide_emergency_box_summary_off">Nødbokser er vist</string>
+ <string name="revanced_hide_info_panels_title">Skjul informasjonspaneler</string>
+ <string name="revanced_hide_info_panels_summary_on">Info paneler er skjult</string>
+ <string name="revanced_hide_info_panels_summary_off">Info paneler vises</string>
+ <string name="revanced_hide_medical_panels_title">Skjul medisinske paneler</string>
+ <string name="revanced_hide_medical_panels_summary_on">Medisinske paneler er skjult</string>
+ <string name="revanced_hide_medical_panels_summary_off">Medisinske paneler er vist</string>
+ <string name="revanced_hide_channel_bar_title">Skjul kanallinje</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanal bar er skjult</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanalbar vises</string>
+ <string name="revanced_hide_playables_title">Skjul spillbare</string>
+ <string name="revanced_hide_playables_summary_on">Spillbare er skjult</string>
+ <string name="revanced_hide_playables_summary_off">Spillbare vises</string>
+ <string name="revanced_hide_quick_actions_title">Skjul hurtighandlinger i fullskjerm</string>
+ <string name="revanced_hide_quick_actions_summary_on">Raske handlinger er skjult</string>
+ <string name="revanced_hide_quick_actions_summary_off">Hurtighandlinger er vist</string>
+ <string name="revanced_hide_related_videos_title">Skjul relaterte videoer i raske handlinger</string>
+ <string name="revanced_hide_related_videos_summary_on">Relaterte videoer er skjult</string>
+ <string name="revanced_hide_related_videos_summary_off">Relaterte videoer vises</string>
+ <string name="revanced_hide_image_shelf_title">Skjul bildets hylle i søkeresultater</string>
+ <string name="revanced_hide_image_shelf_summary_on">Bilde hylle er skjult</string>
+ <string name="revanced_hide_image_shelf_summary_off">Bilde shelf is shown</string>
+ <string name="revanced_hide_latest_posts_ads_title">Skjul siste innlegg</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Siste innlegg er skjult</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Siste innlegg vises</string>
+ <string name="revanced_hide_mix_playlists_title">Skjul miks spillelister</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Blandet spillelister er skjult</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Blandet spillelister er vist</string>
+ <string name="revanced_hide_artist_cards_title">Skjul artistkort</string>
+ <string name="revanced_hide_artist_cards_summary_on">Kunstnerkort er skjult</string>
+ <string name="revanced_hide_artist_cards_summary_off">Artistkort vises</string>
+ <string name="revanced_hide_chips_shelf_title">Skjul brikker hylle</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips shelf er gjemt</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips shelf er vist</string>
+ <string name="revanced_hide_attributes_section_title">Skjul attributter del</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Utvalgte steder\', leker og musikkseksjoner er skjult</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Utvalgte steder\', spill og musikk seksjoner av spill blir vist</string>
+ <string name="revanced_hide_chapters_section_title">Skjul kapitler i seksjonen</string>
+ <string name="revanced_hide_chapters_section_summary_on">Kapittel delen er skjult</string>
+ <string name="revanced_hide_chapters_section_summary_off">Kapittel delen er vist</string>
+ <string name="revanced_hide_podcast_section_title">Skjul «Utforsk podcast»-seksjonen</string>
+ <string name="revanced_hide_podcast_section_summary_on">«Utforsk podcast»-delen er skjult</string>
+ <string name="revanced_hide_podcast_section_summary_off">«Utforsk podcast»-delen vises</string>
+ <string name="revanced_hide_info_cards_section_title">Skjule seksjonen for informasjonskort</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Informasjonskort seksjonen er skjult</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Informasjonskort delen vises</string>
+ <string name="revanced_hide_transcript_section_title">Skjul transkripsjonsseksjonen</string>
+ <string name="revanced_hide_transcript_section_summary_on">Transkripsjonsseksjonen er skjult</string>
+ <string name="revanced_hide_transcript_section_summary_off">Transskripsjonsseksjonen vises</string>
+ <string name="revanced_hide_description_components_screen_title">Beskrivelse av videoen</string>
+ <string name="revanced_hide_description_components_screen_summary">Skjul eller vis video-beskrivelse komponenter</string>
+ <string name="revanced_custom_filter_screen_title">Egne filtre</string>
+ <string name="revanced_custom_filter_screen_summary">Skjul komponenter ved hjelp av tilpassede filtre</string>
+ <string name="revanced_custom_filter_title">Aktiver tilpasset filter</string>
+ <string name="revanced_custom_filter_summary_on">Egendefinert filter er aktivert</string>
+ <string name="revanced_custom_filter_summary_off">Egendefinert filter er deaktivert</string>
+ <string name="revanced_custom_filter_strings_title">Egne filtre</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Liste over komponentstier byggere for å filtrere atskilt med ny linje</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Ugyldig tilpasset filter: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Skjul nøkkelordinnhold</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Skjul søk og feed videoer ved hjelp av nøkkelordfiltre</string>
+ <string name="revanced_hide_keyword_content_home_title">Skjul startvideoer med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videoer i hjem-fanen filtreres med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videoer på hjem-fanen filtreres ikke med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Skjul abonnementsvideoer med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videoer på abonnementsfanen filtreres med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videoer på abonnementsfanen filtreres ikke med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_search_title">Skjul søkeresultater med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Søkeresultatene filtreres etter nøkkelord</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Søkeresultater filtreres ikke med nøkkelord</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Nøkkelord for å skjule</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Nøkkelord og fraser å gjemme seg; atskilt av nye linjer\n\nord med store bokstaver i midten må angis med bokstaven i forhenget (ie: iPhone, TikTok, blanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Om nøkkelordfiltrering</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ugyldig søkeord. Kan ikke bruke: \'%s\' som et filter</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ugyldig nøkkelord. \'%1$s\' er mindre enn %2$d tegn</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Nøkkelord \'$s\' vil skjule alle videoer</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Skjul generelle annonser</string>
+ <string name="revanced_hide_general_ads_summary_on">Generelle annonser er skjult</string>
+ <string name="revanced_hide_general_ads_summary_off">Generelle annonser er vist</string>
+ <string name="revanced_hide_fullscreen_ads_title">Skjul fullskjerm annonser</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Fullskjermsannonser er skjult\n\nDenne funksjonen er kun tilgjengelig for eldre enheter</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Fullskjerm annonser vises</string>
+ <string name="revanced_hide_buttoned_ads_title">Skjul knapper annonser</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Knappede annonser er skjult</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Knappede annonser blir vist</string>
+ <string name="revanced_hide_paid_promotion_label_title">Skjul merket for betalt kampanje</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Betalt kampanje etikett er skjult</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Etikett for betalt kampanje vises</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Skjul egne sponsede kort</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Selvsponsede kort er skjult</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Selvsponsede oppgavelapper vises</string>
+ <string name="revanced_hide_products_banner_title">Skjul banner for å se produkter</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner er skjult</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner vises</string>
+ <string name="revanced_hide_shopping_links_title">Skjul innkjøpslenker i videobeskrivelse</string>
+ <string name="revanced_hide_shopping_links_summary_on">Handlelenker er skjult</string>
+ <string name="revanced_hide_shopping_links_summary_off">Lenker for handlekurv vises</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Skjul knappen \"Besøk butikk\" på kanalsider</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Knappen er skjult</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Knappen vises</string>
+ <string name="revanced_hide_web_search_results_title">Skjul søkeresultater</string>
+ <string name="revanced_hide_web_search_results_summary_on">Søkeresultater for web-søk er skjult</string>
+ <string name="revanced_hide_web_search_results_summary_off">Søkeresultater for Web-søk vises</string>
+ <string name="revanced_hide_merchandise_banners_title">Skjul vare-bannere</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Handelsvare bannere er skjult</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Varsel-bannere vises</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Skjul fullskjermsannonser bare som fungerer med eldre enheter</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Skjul YouTube Premium kampanjer</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium kampanjer under videospiller er skjult</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium kampanjer under videospiller er vist</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Skjul video annonser</string>
+ <string name="revanced_hide_video_ads_summary_on">Videoannonser er skjult</string>
+ <string name="revanced_hide_video_ads_summary_off">Videoannonser vises</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL kopiert til utklippstavlen</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL med tidsstempel kopiert</string>
+ <string name="revanced_copy_video_url_title">Vis knapp for \"Kopier video-URL\"</string>
+ <string name="revanced_copy_video_url_summary_on">Knappen er vist. Trykk for å kopiere videoadresse. Trykk og hold inne for å kopiere video-URL med tidsstempel</string>
+ <string name="revanced_copy_video_url_summary_off">Knappen vises ikke</string>
+ <string name="revanced_copy_video_url_timestamp_title">Vis knapp for \'Kopier tidsstempel\'-URL</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Knappen er vist. Trykk for å kopiere videoURL med tidsstempel. Trykk og hold for å kopiere video uten tidsstempel</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Knappen vises ikke</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Fjern dialogboksen for viserdiskresjon</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialogvindu vil bli fjernet</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialogvindu vil bli vist</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Dette forbigår ikke aldersbegrensningen. Det godtar bare den automatisk.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Eksterne nedlastinger</string>
+ <string name="revanced_external_downloader_screen_summary">Innstillinger for å bruke ekstern nedlasting</string>
+ <string name="revanced_external_downloader_title">Vis ekstern nedlastingsknapp</string>
+ <string name="revanced_external_downloader_summary_on">Laste ned knappen som vises i spilleren</string>
+ <string name="revanced_external_downloader_summary_off">Laste ned knappen som ikke vises i spiller</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Overstyr handlingsknappen for nedlasting</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Nedlasting knappen åpner din eksterne nedlaster</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Nedlastingsknappen åpner den innebygde nedlasteren</string>
+ <string name="revanced_external_downloader_name_title">Last ned pakkenavn</string>
+ <string name="revanced_external_downloader_name_summary">Pakkenavn på din installerte eksterne nedlastingsapp, slik som NewPipe eller Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s er ikke installert. Installer den.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Deaktivere presis søkefelt</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Bevegelse er deaktivert</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gest er aktivert</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Aktiver søkerklikk</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar tapping er aktivert</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar kartlegging er deaktivert</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Aktiver lysstyrkebevegelser</string>
+ <string name="revanced_swipe_brightness_summary_on">Lysstyrke swipe er aktivert</string>
+ <string name="revanced_swipe_brightness_summary_off">Lysstyrke swipe er deaktivert</string>
+ <string name="revanced_swipe_volume_title">Aktiver volumbevegelser</string>
+ <string name="revanced_swipe_volume_summary_on">Volum swipe er aktivert</string>
+ <string name="revanced_swipe_volume_summary_off">Volum swipe er deaktivert</string>
+ <string name="revanced_swipe_press_to_engage_title">Aktiver trykk-til-sveipe-bevegelse</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Trykk-til-sveip er aktivert</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Trykk-til-sveip er deaktivert</string>
+ <string name="revanced_swipe_haptic_feedback_title">Aktiver haptisk tilbakemelding</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptisk tilbakemelding er aktivert</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptisk tilbakemelding er deaktivert</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Lagre og gjenopprett lysstyrke</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Lagre og gjenopprett lysstyrke når du avslutter eller skriver inn fullskjerm</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Ikke lagre eller gjenopprett lysstyrke når du avslutter eller åpner fullskjerm</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Aktiver auto-lysstyrkebevegelse</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Sveip ned til den laveste verdien for lysstyrkebevegelser aktiverer automatisk lysstyrke</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Sveip ned til laveste verdi aktiverer ikke automatisk lysstyrke</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatisk</string>
+ <string name="revanced_swipe_overlay_timeout_title">Sveip overlegg tidsavbrudd</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Mengden av millisekunder overlegget er synlig</string>
+ <string name="revanced_swipe_text_overlay_size_title">Sveip overlegg tekststørrelse</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Tekststørrelsen for sveipeoverlegg</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Sveip bakgrunnssynlighet</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Bakgrunn for sveipeoverlegg er synlig</string>
+ <string name="revanced_swipe_threshold_title">Sveip størrelse terskel</string>
+ <string name="revanced_swipe_threshold_summary">Mengden terskel du må bruke</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Deaktiver bildetekst</string>
+ <string name="revanced_auto_captions_summary_on">Automatisk bildetekst er deaktivert</string>
+ <string name="revanced_auto_captions_summary_off">Automatisk bildetekst er aktivert</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Handlingsknapper</string>
+ <string name="revanced_hide_buttons_screen_summary">Skjul eller vis knapper under videoer</string>
+ <string name="revanced_hide_like_dislike_button_title">Skjul \'Like and Disliker\'</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Liker og liker ikke knapper er skjult</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Liker og feilaktige knapper blir vist</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Skjul deling</string>
+ <string name="revanced_hide_share_button_summary_on">Dele-knappen er skjult</string>
+ <string name="revanced_hide_share_button_summary_off">Dele-knappen vises</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Skjul rapport</string>
+ <string name="revanced_hide_report_button_summary_on">Rapport-knappen er skjult</string>
+ <string name="revanced_hide_report_button_summary_off">Rapport-knappen vises</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Skjul Remiks</string>
+ <string name="revanced_hide_remix_button_summary_on">Remiks-knappen er skjult</string>
+ <string name="revanced_hide_remix_button_summary_off">Remiks-knappen vises</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Skjul nedlasting</string>
+ <string name="revanced_hide_download_button_summary_on">Nedlastingsknappen er skjult</string>
+ <string name="revanced_hide_download_button_summary_off">Last ned-knappen vises</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Skjul takk</string>
+ <string name="revanced_hide_thanks_button_summary_on">Tusen takk er skjult</string>
+ <string name="revanced_hide_thanks_button_summary_off">Tusen takk vises</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Klipp knappen er skjult</string>
+ <string name="revanced_hide_clip_button_summary_off">Klipp knappen vises</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Skjul lagring til spilleliste</string>
+ <string name="revanced_hide_playlist_button_summary_on">Lagre i spilleliste-knappen er skjult</string>
+ <string name="revanced_hide_playlist_button_summary_off">Lagre i spilleliste-knappen vises</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Skjul automatisk avspillingsknapp</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Autospill-knappen er skjult</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Autospill-knappen vises</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Skjul undertekst-knappen</string>
+ <string name="revanced_hide_captions_button_summary_on">Tekstknappen er skjult</string>
+ <string name="revanced_hide_captions_button_summary_off">Tekst-knappen vises</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Skjul kast knapp</string>
+ <string name="revanced_hide_cast_button_summary_on">Støp-knappen er skjult</string>
+ <string name="revanced_hide_cast_button_summary_off">Oversiktsknappen er vist</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Skjul eller endre knapper i navigasjonslinjen</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Skjul startsiden</string>
+ <string name="revanced_hide_home_button_summary_on">Hjem-knappen er skjult</string>
+ <string name="revanced_hide_home_button_summary_off">Hjem knappen vises</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Skjul kort</string>
+ <string name="revanced_hide_shorts_button_summary_on">Kortstokk-knappen er skjult</string>
+ <string name="revanced_hide_shorts_button_summary_off">Kortstokk-knappen vises</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Skjul Lag</string>
+ <string name="revanced_hide_create_button_summary_on">Lage knappen er skjult</string>
+ <string name="revanced_hide_create_button_summary_off">Opprett knapp er vist</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Skjul abonnementer</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Abonnementer-knappen er skjult</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Abonnementer-knappen er vist</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Bytt ved opprettelse av varsler</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Opprette knapp er slått på med Varslingsknappen\n\nMerk: Aktivering av dette også tvangsskjuler video-annonser</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Opprette knapp er ikke slått på med varslingsknapp</string>
+ <string name="revanced_hide_navigation_button_labels_title">Skjul navigasjonsknapp etiketter</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etiketter er skjult</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etiketter er vist</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Skjul eller vis spillere flukte menyelementer</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Skjul tekst</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Tekstmenyen er skjult</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Tekstmeny er vist</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Skjul tilleggsinnstillinger</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Ytterlige innstillingsmeny er skjult</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Flere innstillingsmeny er vist</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Skjul video på løkke</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Video-menyen en loop er skjult</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Sløyfe video-menyen vises</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Skjul Ambient modus</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Meny for omgivelsesmodus er skjult</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Ambient modus meny er vist</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Skjul hjelp & tilbakemelding</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Hjelp & Tilbakemeldingsmenyen er skjult</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Hjelp & Tilbakemeldingsmeny vises</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Skjul avspillingshastighet</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menyen avspillingshastighet er gjemt</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Menyen for avspillingshastighet er vist</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Skjul mer informasjon</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Mer informasjonsmeny er skjult</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Mer informasjonsmeny vises</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Skjul låseskjermen</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Låseskjermmenyen er skjult</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Låseskjermmeny vises</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Skjul lydspor</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Lydspor-meny er skjult</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Lydspor-meny er vist</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Skjul klokke i VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Se i VR-menyen er skjult</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Se i VR-meny for å vise</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Skjul forrige & neste videoknapper</string>
+ <string name="revanced_hide_player_buttons_summary_on">Knappene er skjult</string>
+ <string name="revanced_hide_player_buttons_summary_off">Det vises knapper</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Skjul albumkort</string>
+ <string name="revanced_hide_album_cards_summary_on">Albumkort er skjult</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumkort vises</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Kommentarer</string>
+ <string name="revanced_comments_screen_summary">Skjul eller vis kommentar-deler komponenter</string>
+ <string name="revanced_hide_comments_by_members_header_title">Skjul \'Kommentarer etter medlemmer\' topptekst</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Kommentarer av medlemmer\' topptekst er skjult</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Kommentarer etter medlemmer\' topptekst er vist</string>
+ <string name="revanced_hide_comments_section_title">Skjul kommentarfeltet</string>
+ <string name="revanced_hide_comments_section_summary_on">Kommentarer seksjonen er skjult</string>
+ <string name="revanced_hide_comments_section_summary_off">Kommentarer er vist</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Skjul \"Lag en kort\"-knapp</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Opprett en kort\' knapp er skjult</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">\'Opprett en kort\' knapp vises</string>
+ <string name="revanced_hide_comments_preview_comment_title">Skjul forhåndsvisningskommentar</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Forhåndsvisningskommentaren er skjult</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Forhåndsvisningskommentar vises</string>
+ <string name="revanced_hide_comments_thanks_button_title">Skjul takks-knappen</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Tusen takk er skjult</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Tusen takk vises</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Skjul knapper for tidsstempel og emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Tidsstempel og emoji-knapper er skjult</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Det vises tidsstempel og emoji-knapper</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Skjul crowdfunding boks</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding box er skjult</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Det er vist dekningsboks</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Skjul avsluttende skjerm-kort</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Sluttskjerm kort er skjult</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Sluttskjerm vises</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filtrer bar</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Skjul eller vis filterlinjen i matingen, søk og relaterte videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Skjul i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Skjult i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Vist i feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Skjul i søk</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Skjult i søk</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Vist i søk</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Skjul i relaterte videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Skjult i relaterte videoer</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Vises i relaterte videoer</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Skjul flytende mikrofonknapp</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofonknappen er skjult</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofon knapp vist</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Deaktiver omgivelsesmodus i fullskjerm</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Ambient modus deaktivert</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Ambient modus aktivert</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Skjul informasjonskort</string>
+ <string name="revanced_hide_info_cards_summary_on">Informasjonskort er skjult</string>
+ <string name="revanced_hide_info_cards_summary_off">Informasjonskort vises</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Deaktiver animasjoner i rullende tall</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Rullende nummer er ikke animert</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rullende nummer er animert</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Skjul søkefelt i videospiller</string>
+ <string name="revanced_hide_seekbar_summary_on">Videospillers søkefelt er skjult</string>
+ <string name="revanced_hide_seekbar_summary_off">Vises Videospiller-søkefelt</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Skjul søkefelt i video-miniatyrbilder</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Miniatyrbilde søkefeltet er skjult</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Miniatyrbilde søkefelt vises</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Skjul kort i hjemmeskjermen</string>
+ <string name="revanced_hide_shorts_home_summary_on">Korter i hjemmelagningen er skjult</string>
+ <string name="revanced_hide_shorts_home_summary_off">Korter i hjemmeskjermen vises</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Skjul kort i abonnementsfeed</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Korter i abonnements-feed er skjult</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Koraller i abonnementsfeed vises</string>
+ <string name="revanced_hide_shorts_search_title">Skjul kort i søkeresultater</string>
+ <string name="revanced_hide_shorts_search_summary_on">Kortere i søkeresultatene er skjult</string>
+ <string name="revanced_hide_shorts_search_summary_off">Kortere i søkeresultatene vises</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Skjul join knapp</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Bli-med knappen er skjult</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Bli-med knapp vises</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Skjul abbontknapp</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Abonner knappen er skjult</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Abonner er vist</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Skjul pausede overleggsknapper</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Malete dekningsknapper er skjult</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Malte knapper for dekking er vist</string>
+ <string name="revanced_hide_shorts_shop_button_title">Skjul butikkknapp</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Butikkknappen er skjult</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Butikkknappen vises</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Gjem supertakknapp</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super takk-knappen er skjult</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super takk knappen er vist</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Skjul merkede produkter</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Merkede produkter er skjult</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Merkede produkter blir vist</string>
+ <string name="revanced_hide_shorts_location_label_title">Skjul merkelapp for plassering</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Posisjonsetiketten er skjult</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Posisjonsetikett vises</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Skjul lyd fra spilleliste knapp</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Lagre lyd i spillelisten er skjult</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Lagre lyd i spilleliste vises</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Skjul søkeforslag</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Søkeforslag er skjult</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Søk forslag vises</string>
+ <string name="revanced_hide_shorts_like_button_title">Skjul som knappen</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Lik knappen er skjult</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Liker-knappen vises</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Skjul mislik knapp</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Mislik knappen er skjult</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Mislik knappen blir vist</string>
+ <string name="revanced_hide_shorts_comments_button_title">Skjul kommentar-knappen</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Kommentarknappen er skjult</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Kommentarer er vist</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Skjule remiksknappen</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remiks-knappen er skjult</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remiks-knappen vises</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Skjul delingsknappen</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Dele-knappen er skjult</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Dele-knappen vises</string>
+ <string name="revanced_hide_shorts_info_panel_title">Skjul informasjonspanelet</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Info panelet er skjult</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Informasjonspanelet vises</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Skjul kanallinje</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanal bar er skjult</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanalbar vises</string>
+ <string name="revanced_hide_shorts_video_title_title">Skjul videotittel</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Tittelen er skjult</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Tittelen vises</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Skjul metadata for lyd</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metadata etikett er skjult</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metadata etikett vises</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Skjul etikett for full videokobling</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etikett for videolenke er skjult</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etikett for videolenke vises</string>
+ <string name="revanced_hide_shorts_sound_button_title">Skjul lydknapp</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Lydknappen er skjult</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Lydknappen vises</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Skjul navigasjonsfelt</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigasjonslinjen er skjult</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigasjonslinjen vises</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Deaktiver foreslått videoslutskjerm</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Foreslåtte videoer blir deaktivert</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Foreslåtte videoer vises</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Skjul video tidsstempel</string>
+ <string name="revanced_hide_timestamp_summary_on">Tidsstempel er skjult</string>
+ <string name="revanced_hide_timestamp_summary_off">Tidsstempel vises</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Skjul spiller popup-panel</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Spillerens popup-paneler er skjult</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Spillerpopup-paneler vises</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Spiller overlegg ugjennomsiktighet</string>
+ <string name="revanced_player_overlay_opacity_summary">Gjennomsiktighet mellom 0-100, der 0 er gjennomsiktig</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Spiller overlegg opasitet må være mellom 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_generic">Misliker ikke tilgjengelig (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Oppdater video for å stemme ved å bruke YouTube Retur</string>
+ <string name="revanced_ryd_enable_summary_on">Misliker vises</string>
+ <string name="revanced_ryd_enable_summary_off">Misliker vises ikke</string>
+ <string name="revanced_ryd_shorts_title">Vis mislykte på Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Misliker vist på shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Misliker som vises på Shorts\n\nLimitasjon: Misdannelser kan hende i inkognito-modus ikke vises i inkognito-modus</string>
+ <string name="revanced_ryd_shorts_summary_off">Misliker skjult på shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Misliker som prosent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Misliker vises som prosent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Misliker som vist som tall</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt som knappen</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Lik knappen stilet for minimumsbredde</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Lik knappen stilen for å få best utseende</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Vis en toast hvis API ikke er tilgjengelig</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast er vist hvis Retur YouTube Mislike ikke er tilgjengelig</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast er ikke vist hvis YouTube Returner er ikke tilgjengelig</string>
+ <string name="revanced_ryd_about">Om</string>
+ <string name="revanced_ryd_attribution_summary">Data er gitt av YouTube Returner Dislike API. Trykk her for å lære mer</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API statistikk for denne enheten</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API responstid, gjennomsnittlig</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API responstid, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API responstid, maksimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API svartid, siste video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Misliker midlertidig ikke tilgjengelig - klient API grense i effekt</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API henting av stemmer, antall samtaler</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Ingen nettverksanrop er utført</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d nettverk samtaler</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API henting av stemmer, antall tidsavbrudd</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Ingen nettverkssamtaler ble tidsavbrutt</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d nettverk samtaler ble tidsavbrutt</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API klient sats grense</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Ingen klient rate grense funnet</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Klientrate grense oppdaget %d ganger</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisekunder</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Aktiver bredt søkefelt</string>
+ <string name="revanced_wide_searchbar_summary_on">Bred søkefeltet er aktivert</string>
+ <string name="revanced_wide_searchbar_summary_off">Bred søkefeltet er deaktivert</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Gjenopprett gamle miniatyrbilder for søkefelt</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Seekbar miniatyrbilder vil vises over søkefeltet</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Seekbar miniatyrbilder vil vises i fullskjerm</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Aktiver SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock er et crowsourced system for å hoppe over irriterende deler av YouTube-videoer</string>
+ <string name="revanced_sb_appearance_category">Utseende</string>
+ <string name="revanced_sb_enable_voting">Vis stemmeknapp</string>
+ <string name="revanced_sb_enable_voting_sum_on">Segment Vises</string>
+ <string name="revanced_sb_enable_voting_sum_off">Segment Avstemning-knappen er ikke vist</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Bruk kompakt sprang-knappen</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Hopp over stilen for minimumsbredde</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Hopp over knappen som er stylet for best utseende</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Skjul knappen automatisk</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Hopp over knappen skjuler etter noen sekunder</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Hopp over knappen som vises for hele segmentet</string>
+ <string name="revanced_sb_general_skiptoast">Vis en toast når du hopper over automatisk</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast vises når et segment hoppes over automatisk. Trykk her for å se et eksempel</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast er ikke vist. Trykk her for å se et eksempel</string>
+ <string name="revanced_sb_general_time_without">Vis videolengde uten segmenter</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videolengde minus alle segmenter, vist i parentes ved siden av full videolengde</string>
+ <string name="revanced_sb_general_time_without_sum_off">Full videolengde vist</string>
+ <string name="revanced_sb_create_segment_category">Oppretter nye segmenter</string>
+ <string name="revanced_sb_enable_create_segment">Vis opprett nytt segment knapp</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Lage ny segmentknapp vises</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Lage ny segmentknapp er ikke vist</string>
+ <string name="revanced_sb_general_adjusting">Juster nye segmenttrinn</string>
+ <string name="revanced_sb_general_adjusting_sum">Antall millisekunder tiden justeringsknappene flytter når nye segmenter lages</string>
+ <string name="revanced_sb_general_adjusting_invalid">Verdien må være et positivt tall</string>
+ <string name="revanced_sb_guidelines_preference_title">Se retningslinjer</string>
+ <string name="revanced_sb_guidelines_preference_sum">Retningslinjer inneholder regler og tips for å opprette nye segmenter</string>
+ <string name="revanced_sb_guidelines_popup_title">Følg retningslinjene</string>
+ <string name="revanced_sb_guidelines_popup_content">Les SponsorBlock retningslinjer før du oppretter nye segmenter</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Allerede lest</string>
+ <string name="revanced_sb_guidelines_popup_open">Vis meg</string>
+ <string name="revanced_sb_general">Generelt</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Vis en toast hvis API ikke er tilgjengelig</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast vises dersom SponsorBlock ikke er tilgjengelig</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast vises ikke dersom SponsorBlock ikke er tilgjengelig</string>
+ <string name="revanced_sb_general_skipcount">Aktiver hopp over tellersporing</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Lar SponsorBlock ledertavlen vite hvor lang tid som blir lagret. En melding sendes til ledertavlen hver gang et segment blir hoppet over</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Hopp over tellersporing er ikke aktivert</string>
+ <string name="revanced_sb_general_min_duration">Minste segmentvarighet</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmenter kortere enn denne verdien (i sekunder) vil ikke bli vist eller hoppet over</string>
+ <string name="revanced_sb_general_uuid">Din private bruker-ID</string>
+ <string name="revanced_sb_general_uuid_sum">Dette burde holdes privat. Dette er som et passord og burde ikke deles med noen. Hvis noen har dette, kan de impersonere deg</string>
+ <string name="revanced_sb_general_uuid_invalid">Privat bruker-ID må være minst 30 tegn</string>
+ <string name="revanced_sb_general_api_url">Endre API URL</string>
+ <string name="revanced_sb_general_api_url_sum">Adressen SponsorBlock bruker til å ringe til serveren</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">API-adressen er ugyldig</string>
+ <string name="revanced_sb_api_url_changed">API URL endret</string>
+ <string name="revanced_sb_settings_ie">Importér/Eksport innstillinger</string>
+ <string name="revanced_sb_settings_copy">Kopier</string>
+ <string name="revanced_sb_settings_ie_sum">Din SponsorBlock JSON-konfigurasjon som kan importeres/eksporteres til ReVanced og andre SponsorBlock plattformer</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Din SponsorBlock JSON-konfigurasjon som kan importeres/eksporteres til ReVanced og andre SponsorBlock plattformer. Dette inkluderer din private bruker-id. Husk å dele denne klokt</string>
+ <string name="revanced_sb_settings_import_successful">Innstillingene ble importert</string>
+ <string name="revanced_sb_settings_import_failed">Kan ikke importere: %s</string>
+ <string name="revanced_sb_settings_export_failed">Kunne ikke eksportere: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Innstillingene inneholder en privat SponsorBlock brukerid.\n\nBruker-id er som et passord og det skal aldri deles.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Ikke vis dette igjen</string>
+ <string name="revanced_sb_diff_segments">Endre segmentatferd</string>
+ <string name="revanced_sb_segments_sponsor">Spons</string>
+ <string name="revanced_sb_segments_sponsor_sum">Betalt kampanje, betalte henvisninger og direkte annonser. Ikke for selvpromotering eller gratis utrop for årsaker/skapere/websider/produkter som de liker</string>
+ <string name="revanced_sb_segments_selfpromo">Ubetalt/Selv forfremmelse</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Lik \"Sponsor\" unntatt ubetalt eller selvforfremmelse. Inkluderer seksjoner om vare, donasjoner eller informasjon om hvem de samarbeider med</string>
+ <string name="revanced_sb_segments_interaction">Interaksjonspåminnelse (Delebrev)</string>
+ <string name="revanced_sb_segments_interaction_sum">En kort påminnelse om å ønske, abonnere på eller følge dem midt i innholdet. Hvis det er lang eller om noe spesifikk, må det i stedet være under selvforfremmelse</string>
+ <string name="revanced_sb_segments_highlight">Uthev</string>
+ <string name="revanced_sb_segments_highlight_sum">Den delen av videoen flest ser etter</string>
+ <string name="revanced_sb_segments_intro">Intermission/Introduksjon Animasjon</string>
+ <string name="revanced_sb_segments_intro_sum">Angi intervall uten faktisk innhold. Kan være en pause, en statisk ramme eller gjenta animasjon. Inneholder ikke overganger som inneholder informasjon</string>
+ <string name="revanced_sb_segments_outro">Endekort/Kreditt</string>
+ <string name="revanced_sb_segments_outro_sum">Kreditt eller når YouTube sluttkort vises. Ikke for konklusjoner med informasjon</string>
+ <string name="revanced_sb_segments_preview">Forhåndsvisning/oppslag/krok</string>
+ <string name="revanced_sb_segments_preview_sum">Samling av klipp som viser hva som kommer eller hva som har skjedd i videoen eller i andre videoer av en serie, der all informasjon gjentas andre steder</string>
+ <string name="revanced_sb_segments_filler">Filtre Tangent/Jokes</string>
+ <string name="revanced_sb_segments_filler_sum">Tangensielle scener tilsatt bare for filler eller humor som ikke er nødvendig for å forstå hovedinnholdet i videoen. Inkluderer ikke segmenter som gir kontekst eller bakgrunnsopplysninger</string>
+ <string name="revanced_sb_segments_nomusic">Musikk: ikke-musikkseksjon</string>
+ <string name="revanced_sb_segments_nomusic_sum">Bare for bruk i musikkvideoer. Seksjoner av musikkvideoer uten musikk, som ikke allerede dekkes av en annen kategori</string>
+ <string name="revanced_sb_skip_button_compact">Hopp</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Uthev</string>
+ <string name="revanced_sb_skip_button_sponsor">Hopp over sponsor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Hopp over promo</string>
+ <string name="revanced_sb_skip_button_interaction">Hopp over samhandling</string>
+ <string name="revanced_sb_skip_button_highlight">Hopp over å fremheve</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Hopp over introduksjon</string>
+ <string name="revanced_sb_skip_button_intro_middle">Hopp over oppdrag</string>
+ <string name="revanced_sb_skip_button_intro_end">Hopp over oppdrag</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Hopp over forhåndsvisning</string>
+ <string name="revanced_sb_skip_button_preview_middle">Hopp over forhåndsvisning</string>
+ <string name="revanced_sb_skip_button_preview_end">Hopp over recap</string>
+ <string name="revanced_sb_skip_button_filler">Hopp over fylling</string>
+ <string name="revanced_sb_skip_button_nomusic">Hopp over ikke-musikk</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Hopp over segment</string>
+ <string name="revanced_sb_skipped_sponsor">Hoppet over sponsor</string>
+ <string name="revanced_sb_skipped_selfpromo">Hoppet over selv-kampanje</string>
+ <string name="revanced_sb_skipped_interaction">Hoppet over irriterende påminnelse</string>
+ <string name="revanced_sb_skipped_highlight">Hoppet til fremheving</string>
+ <string name="revanced_sb_skipped_intro_beginning">Hoppet over intro</string>
+ <string name="revanced_sb_skipped_intro_middle">Hoppet over opptak</string>
+ <string name="revanced_sb_skipped_intro_end">Hoppet over opptak</string>
+ <string name="revanced_sb_skipped_outro">Hoppet over kupong</string>
+ <string name="revanced_sb_skipped_preview_beginning">Hoppet over forhåndsvisning</string>
+ <string name="revanced_sb_skipped_preview_middle">Hoppet over forhåndsvisning</string>
+ <string name="revanced_sb_skipped_preview_end">Hoppet over recap</string>
+ <string name="revanced_sb_skipped_filler">Hoppet over fylleren</string>
+ <string name="revanced_sb_skipped_nomusic">Hoppet over en ikke-musikkseksjon</string>
+ <string name="revanced_sb_skipped_unsubmitted">Hoppet uspesifisert segment</string>
+ <string name="revanced_sb_skipped_multiple_segments">Hoppet over flere segmenter</string>
+ <string name="revanced_sb_skip_automatically">Hopp over automatisk</string>
+ <string name="revanced_sb_skip_automatically_once">Hopp over automatisk én gang</string>
+ <string name="revanced_sb_skip_showbutton">Vis en hoppe</string>
+ <string name="revanced_sb_skip_seekbaronly">Vis i søkefelt</string>
+ <string name="revanced_sb_skip_ignore">Deaktiver</string>
+ <string name="revanced_sb_submit_failed_invalid">Kan ikke sende segment: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock er midlertidig nede</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Kan ikke sende segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Kan ikke sende segment.\nRate Limited (for mange fra samme bruker eller IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Kan ikke sende segmentet: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Kan ikke sende segmentet.\nfinnes allerede</string>
+ <string name="revanced_sb_submit_succeeded">Segment vellykket sendt</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock er midlertidig ikke tilgjengelig</string>
+ <string name="revanced_sb_vote_failed_timeout">Kan ikke stemme på segment (API tidsavbrutt)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Kan ikke stemme på segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Kan ikke stemme på segmentet: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Nedstemme</string>
+ <string name="revanced_sb_vote_category">Endre kategori</string>
+ <string name="revanced_sb_vote_no_segments">Det er ingen segmenter å stemme på</string>
+ <string name="revanced_sb_new_segment_choose_category">Velg segmentkategori</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategorien er deaktivert i innstillinger. Aktiver kategori for å sende.</string>
+ <string name="revanced_sb_new_segment_title">Nytt sponsorBlock segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Satte %1$02d:%2$02d:%3$03d som start eller slutt for et nytt segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">start</string>
+ <string name="revanced_sb_new_segment_mark_end">slutt</string>
+ <string name="revanced_sb_new_segment_now">nå</string>
+ <string name="revanced_sb_new_segment_time_start">Tidsrom segmentet begynner ved</string>
+ <string name="revanced_sb_new_segment_time_end">Tid segmentet slutter ved</string>
+ <string name="revanced_sb_new_segment_confirm_title">Er tidene riktig?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmentet er fra\n\n%1$s\ntil\n%2$s\n\n(%3$s)\n\nklar til å sende?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Start må være før slutten</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marker to lokasjoner på tidslinjen først</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Forhåndsvis segmentet, og sikre at det hopper jevnt over</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Rediger tidspunkt for segment manuelt</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Vil du redigere tidspunktet for start eller slutten av segmentet?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Ugyldig tid gitt</string>
+ <string name="revanced_sb_stats">Statistikk</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistikk er midlertidig ikke tilgjengelig (API er nede)</string>
+ <string name="revanced_sb_stats_loading">Laster...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock er deaktivert</string>
+ <string name="revanced_sb_stats_username">Ditt brukernavn: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Trykk her for å endre brukernavnet</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Kan ikke endre brukernavn: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Brukernavnet ble endret</string>
+ <string name="revanced_sb_stats_reputation">Ditt omdømme er <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Du har opprettet segmenter for <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock leaderboard</string>
+ <string name="revanced_sb_stats_saved">Du har lagret folk fra <b>%s</b> segmenter</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Trykk her for å se den globale statistikken og de øverste bidragsyterne</string>
+ <string name="revanced_sb_stats_self_saved">Du har hoppet over <b>%s</b> segmenter</string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Tilbakestille segmentene teller?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s timer %2$s minutter</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutter %2$s sekunder</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekunder</string>
+ <string name="revanced_sb_color_dot_label">Farge:</string>
+ <string name="revanced_sb_color_changed">Farge endret</string>
+ <string name="revanced_sb_color_reset">Farge tilbakestilt</string>
+ <string name="revanced_sb_color_invalid">Ugyldig fargekode</string>
+ <string name="revanced_sb_reset_color">Tilbakestill farge</string>
+ <string name="revanced_sb_reset">Reset</string>
+ <string name="revanced_sb_about">Om</string>
+ <string name="revanced_sb_about_api_sum">Data leveres av SponsorBlock API. Trykk her for å lære mer og se nedlastinger for andre plattformer</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof app versjon</string>
+ <string name="revanced_spoof_app_version_summary_on">Versjon skremt</string>
+ <string name="revanced_spoof_app_version_summary_off">Versjon ikke skremt</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">App-versjon vil bli spoofet til en eldre versjon av YouTube.\n\nDette vil endre utseende og egenskaper til appen, men det kan oppstå ukjente bivirkninger.\n\nhvis senere er slått av, anbefales det å fjerne appdataene for å forhindre nedsatt brukergrensesnitt.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app-versjonen mål</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Gjenopprett RYD på Shorts incognito-modus</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Gjenopprette bred videokastighet & kvalitetsmeny</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Gjenopprett bibliotek-fane</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Gjenopprett gammel spilleliste</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Gjenopprett gammelt UI oppsett</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Angi startside</string>
+ <string name="revanced_start_page_entry_0">Standard</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Hjem</string>
+ <string name="revanced_start_page_entry_2">Søk</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonnementer</string>
+ <string name="revanced_start_page_entry_4">Utforsk</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Du har fane</string>
+ <string name="revanced_start_page_entry_7">Likte videoer</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historikk</string>
+ <string name="revanced_start_page_entry_9">Populært</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Deaktiver gjenopptakelse av Shorts spiller</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Kort spiller vil ikke gjenoppta ved oppstart av app</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Kortere spiller vil gjenoppta ved oppstart av app</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Aktiver oppsett for nettbrett</string>
+ <string name="revanced_tablet_layout_summary_on">Nettbrettets oppsett er aktivert</string>
+ <string name="revanced_tablet_layout_summary_off">Nettbrett-oppsett er deaktivert</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Samfunnsinnlegg dukker ikke opp på nettbrett-oppsett</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Smittespiller</string>
+ <string name="revanced_miniplayer_screen_summary">Endre stil på appen til den minimerte spilleren</string>
+ <string name="revanced_miniplayer_type_title">Type Minispiller</string>
+ <string name="revanced_miniplayer_type_entry_1">Opprinnelig</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Nettbrett</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderne 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderne 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderne 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Skjul utvid og lukk-knapper</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Knapper er skjult\n(sveip miniplayer for å utvide eller lukke)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Utvid og lukk knapper vises</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Skjul undertekster</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Undertekster er skjult</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Undertekster er vist</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Skjul hopp forover og tilbake knapper</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Hopp over og tilbake er skjult</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Hopp over og tilbake vises</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Gjennomsiktighet mellom 0-100, der 0 er gjennomsiktig</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Minispiller overlegg opasitet må være mellom 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Aktiver gradient lastingsskjerm</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Lasting av skjerm vil ha en gradert bakgrunn</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Lasting av skjerm har en solid bakgrunn</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Aktiver egendefinert søkelinje-farge</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Tilpasset søkelinjefarge vises</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Opprinnelig søkelinjens farge vises</string>
+ <string name="revanced_seekbar_custom_color_value_title">Egendefinert søkelinjefarge</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Farge på søkefeltet</string>
+ <string name="revanced_seekbar_custom_color_invalid">Ugyldig farge på søkelinjen. Bruker standardverdien.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Hjem fane</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Abonnementsfanen</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Du har fane</string>
+ <string name="revanced_alt_thumbnail_player_title">Spillerspillelister, anbefalinger</string>
+ <string name="revanced_alt_thumbnail_search_title">Søk i resultater</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Depil & Opprinnelige miniatyrbilder</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Depil & fremdeles fanger</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Fremdeles fangster</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DePil tilbyr crowdssourced thumbnails for YouTube-videoer. Disse miniatyrbildene er ofte mer relevante enn de som er angitt av YouTube\n\nHvis aktivert, Video-URL-er vil bli sendt til API-serveren og ingen andre data blir sendt. Hvis en video ikke har miniatyrbilder fra DeArrow og original eller fortsatt trekk er vist\n\nTrykk her for å lære mer om DePil</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Vis en toast hvis API ikke er tilgjengelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast vises dersom DeArrow ikke er tilgjengelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast blir ikke vist hvis DeArrow ikke er tilgjengelig</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL-adressen for miniatyrbilde av DeArrow (bruker-mellomlager)</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Fremdeles videofanger</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Fremdeles fanger er tatt fra begynnels/middels/slutten av hver video. Disse bildene er bygd inn i YouTube, og ingen ekstern API er brukt</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Bruk raske kaptinger</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Ved hjelp av middels kvalitet bilder. Miniatyrbilder lastes fortsatt raskere, men direktesendinger, avgløslet, eller svært gamle videoer kan vise tomme miniatyrbilder</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Bruker høy kvalitet fanger fortsatt</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Videotid for å ta fortsatt bilder fra</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Begynnelsen av video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Midten av video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Slutt på video</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Pil er midlertidig ikke tilgjengelig (statuskode: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Pil midlertidig ikke tilgjengelig</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Vis rehabiliterte kunngjøringer</string>
+ <string name="revanced_announcements_summary_on">Kunngjøringer er vist ved oppstart</string>
+ <string name="revanced_announcements_summary_off">Kunngjøringer er ikke vist ved oppstart</string>
+ <string name="revanced_announcements_enabled_summary">Vis kunngjøringer ved oppstart</string>
+ <string name="revanced_announcements_connection_failed">Kan ikke koble til kunngjøringstjenesten</string>
+ <string name="revanced_announcements_dialog_dismiss">Avvis</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Aktiver automatisk gjenta</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-Repetering er aktivert</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-Repetering er deaktivert</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Utforming av enheten</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Enhetens dimensjoner skremt\n\nHøyere videokvaliteter kan låses opp, men du kan oppleve videospillingsstilling, forverret batterilevetid og ukjente bivirkninger</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Enhetdimensjonene ikke spoofed\n\nAktivering av dette kan låse opp høyere videokvaliteter</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Aktivering av dette kan forårsake utsettelse av videospilling, dårligere batteritid og ukjente bivirkninger.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Innstillinger</string>
+ <string name="microg_settings_summary">Innstillinger for GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Omgå for omdirigeringer</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Omadressering av URL-adresser skjer forbipassert</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL-omdirigeringer blir ikke omgått</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Åpne linker i nettleser</string>
+ <string name="revanced_external_browser_summary_on">Åpne koblinger eksternt</string>
+ <string name="revanced_external_browser_summary_off">Åpner lenker i appen</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Bakgrunnsavspilling</string>
+ <string name="revanced_background_playback_summary">Denne innstillingen kan finnes i Innstillinger -> Bakgrunn</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Fjern sporingsspørringens parameter</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Spores parameteren for spørring fjernes fra linker</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Spores parameteren for spørring fjernes ikke fra lenker</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Deaktiver zoom-haptics</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hapetikk er deaktivert</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Hapetikk er aktivert</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatisk kvalitet</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Husk endringer i videokvalitet</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitetsendringer gjelder for alle videoer</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Kvalitetsendringer gjelder kun for gjeldende video</string>
+ <string name="revanced_video_quality_default_wifi_title">Standard videokvalitet på Wi-Fi-nettverk</string>
+ <string name="revanced_video_quality_default_mobile_title">Standard videokvalitet på mobilnettverk</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Endret standard %1$s kvalitet til: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Vis hastighetsdialogknapp</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Knappen vises</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Knappen vises ikke</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Egendefinert avspillingshastighet</string>
+ <string name="revanced_custom_playback_speeds_summary">Legg til eller endre tilgjengelige avspillingshastigheter</string>
+ <string name="revanced_custom_playback_speeds_invalid">Tilpassede hastigheter må være mindre enn %s. Bruker standardverdier.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Ugyldige tilpassede avspillingshastigheter. Bruker standardverdier.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Husk endringer i avspillingshastighet</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Avspillingshastighet endringer gjelder for alle videoer</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Hastighetsendringer for avspilling gjelder kun for gjeldende video</string>
+ <string name="revanced_playback_speed_default_title">Standard avspillingshastighet</string>
+ <string name="revanced_remember_playback_speed_toast">Endret standard hastighet til: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Gjenopprett gammel video kvalitet meny</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Gammel video kvalitet meny er vist</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Gammel video kvalitet meny er ikke vist</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Aktiver lysbilde for å søke</string>
+ <string name="revanced_slide_to_seek_summary_on">Slide for å søke er aktivert</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide for å søke er ikke aktivert</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Etterligning av kunde</string>
+ <string name="revanced_spoof_client_screen_summary">Spot klienten for å forhindre problemer med avspilling</string>
+ <string name="revanced_spoof_client_title">Etterligning av kunde</string>
+ <string name="revanced_spoof_client_summary_on">Klienten er spoofed</string>
+ <string name="revanced_spoof_client_summary_off">Klienten er ikke spoofed\n\nVideo playback fungerer kanskje ikke</string>
+ <string name="revanced_spoof_client_user_dialog_message">Ved å slå av denne innstillingen kan problemer med videoavspilling.</string>
+ <string name="revanced_spoof_client_use_ios_title">Forside klienten til iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Klienten er for øyeblikket skummet til Android VR\n\nSide effects include:\n• Ingen HDR video\n• Barn videoer ikke spiller tilbake\n• Paused videoer kan tilfeldig gjenoppta\n• Lavkvalitet Shorts seekbar miniatyrbilder\n• Last ned handlingsknappen alltid ligger skjult\n• Sluttskjermkort er alltid skjult</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Etterligning av klient miniatyrbilder er ikke tilgjengelige (API tidsavbrutt)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Spoav klientens miniatyrbilder er midlertidig ikke tilgjengelig: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Falsk app signatur</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Etterlign appens signatur for å forhindre problemer i avspillingen</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Falsk app signatur</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Appen signatur som ikke er spoofed\n\nVideoavspilling fungerer kanskje ikke</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Ved å slå av denne innstillingen, vil avspilling av video forårsake.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Falsk appens signatur i feeden</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">App-signatur spoofed\n\nBivirkninger inkluderer:\n• Feed videoer mangler undertekster\n• Spillte feed videoer vises automatisk i overvåkningshistorien</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">App-signatur som ikke spobefant seg for feed videoene\n\nFeed-videoer spilles av mindre enn 1 minutt før det møter spillproblemer</string>
+ <string name="revanced_spoof_storyboard_title">Kjøringstavle</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storjboard skremt</string>
+ <string name="revanced_spoof_storyboard_summary_off">Oppsprukket\n\nSide omfatter:\n• Ingen omgivelsesmodus\n• Miniatyrbilder i Seekbar</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof Storyboard midlertidig ikke tilgjengelig (API tidsavbrutt)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Forsprang midlertidig ikke tilgjengelig: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Aktiver automatisk HDR lysstyrke</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatisk HDR lysstyrke er aktivert</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automatisk HDR lysstyrke er deaktivert</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blokker lydannonser</string>
+ <string name="revanced_block_audio_ads_summary_on">Lydannonser er blokkert</string>
+ <string name="revanced_block_audio_ads_summary_off">Lydannonser er ikke blokkert</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s er utilgjengelig. Annonser kan vise. Prøv å bytte til en annen annonseblokkerings tjeneste i innstillingene.</string>
+ <string name="revanced_embedded_ads_service_failed">%s -serveren returnerte en feil. Annonser kan vise. Prøv å bytte til en annen annonseblokkerings tjeneste i innstillingene.</string>
+ <string name="revanced_block_embedded_ads_title">Blokker innebygde videoannonser</string>
+ <string name="revanced_block_embedded_ads_entry_1">Deaktivert</string>
+ <string name="revanced_block_embedded_ads_entry_2">Lysrør proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blokker video annonser</string>
+ <string name="revanced_block_video_ads_summary_on">Videoannonser er blokkert</string>
+ <string name="revanced_block_video_ads_summary_off">Videoannonser er ublokkert</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">melding slettet</string>
+ <string name="revanced_show_deleted_messages_title">Vis slettede meldinger</string>
+ <string name="revanced_show_deleted_messages_entry_1">Ikke vis slettede meldinger</string>
+ <string name="revanced_show_deleted_messages_entry_2">Skjul slettede meldinger bak en spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Vis slettede meldinger som utfylt tekst</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Krev automatisk kanalpoeng</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanalpoeng blir hentet automatisk</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanalpoeng blir ikke hentet automatisk</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Aktiver Twitch feilsøkingsmodus</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch debug modus er aktivert (ikke anbefalt)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch debug modus er deaktivert</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Forbedret innstillinger</string>
+ <string name="revanced_ads_screen_title">Reklame</string>
+ <string name="revanced_ads_screen_summary">Innstillinger for annonseblokkering</string>
+ <string name="revanced_chat_screen_title">Samtale</string>
+ <string name="revanced_chat_screen_summary">Chat innstillinger</string>
+ <string name="revanced_misc_screen_title">Diverse</string>
+ <string name="revanced_misc_screen_summary">Andre innstillinger</string>
+ <string name="revanced_general_category_title">Generelle innstillinger</string>
+ <string name="revanced_other_category_title">Andre instillinger</string>
+ <string name="revanced_client_ads_category_title">Klientside annonser</string>
+ <string name="revanced_surestream_ads_category_title">Serverside surestream annonser</string>
+ <string name="revanced_twitch_debug_title">Feilsøk logging</string>
+ <string name="revanced_twitch_debug_summary_on">Feilsøkingslogger er aktivert</string>
+ <string name="revanced_twitch_debug_summary_off">Feilsøkingslogger er deaktivert</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ne-rIN/strings.xml b/src/main/resources/addresources/values-ne-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-ne-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-nl-rNL/strings.xml b/src/main/resources/addresources/values-nl-rNL/strings.xml
new file mode 100644
index 0000000000..1965611d38
--- /dev/null
+++ b/src/main/resources/addresources/values-nl-rNL/strings.xml
@@ -0,0 +1,1198 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Wilt u doorgaan?</string>
+ <string name="revanced_settings_reset">Herstellen naar standaard</string>
+ <string name="revanced_settings_restart_title">Vernieuwen en herstarten</string>
+ <string name="revanced_settings_restart">Herstarten</string>
+ <string name="revanced_settings_import">Importeren</string>
+ <string name="revanced_settings_import_copy">Kopiëren</string>
+ <string name="revanced_settings_import_reset">Verbeterde instellingen hersteld naar standaard</string>
+ <string name="revanced_settings_import_success">Geïmporteerde %d instellingen</string>
+ <string name="revanced_settings_import_failure_parse">Importeren mislukt: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore is niet geïnstalleerd. Installeer het.</string>
+ <string name="gms_core_dialog_title">Actie vereist</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore heeft geen toestemming om op de achtergrond uit te voeren.\n\nVolg de \"Vermoord mijn app niet\" handleiding voor je telefoon en pas de instructies toe op je MicroG installatie.\n\nDit is vereist om de app te laten werken.</string>
+ <string name="gms_core_dialog_open_website_text">Website openen</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore batterij optimalisaties moeten worden uitgeschakeld om problemen te voorkomen.\n\nDruk op de knop \'Doorgaan\' en schakel batterij optimalisaties uit.</string>
+ <string name="gms_core_dialog_continue_text">Doorgaan</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">U gebruikt ReVanced Patches versie <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Notitie</string>
+ <string name="revanced_settings_about_links_dev_body">Deze versie is een pre-release en je kunt onverwachte problemen ondervinden</string>
+ <string name="revanced_settings_about_links_header">Officiële links</string>
+ <string name="revanced_pref_import_export_title">Importeren / exporteren</string>
+ <string name="revanced_pref_import_export_summary">Import / Export ReVanced instellingen</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Over</string>
+ <string name="revanced_settings_screen_01_ads_title">Advertenties</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternatieve miniaturen</string>
+ <string name="revanced_settings_screen_03_feed_title">Feed</string>
+ <string name="revanced_settings_screen_04_player_title">Speler</string>
+ <string name="revanced_settings_screen_05_general_title">Algemene lay-out</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Zoekbalk</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Veegbediening</string>
+ <string name="revanced_settings_screen_11_misc_title">Diversen</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Foutopsporing</string>
+ <string name="revanced_debug_screen_summary">Debugging opties in- of uitschakelen</string>
+ <string name="revanced_debug_title">Logboek foutopsporing</string>
+ <string name="revanced_debug_summary_on">Debug logs zijn ingeschakeld</string>
+ <string name="revanced_debug_summary_off">Debug logs zijn uitgeschakeld</string>
+ <string name="revanced_debug_protobuffer_title">Log protocol buffer</string>
+ <string name="revanced_debug_protobuffer_summary_on">Debug logs omvatten de proto-buffer</string>
+ <string name="revanced_debug_protobuffer_summary_off">Debug logs bevatten geen proto-buffer</string>
+ <string name="revanced_debug_stacktrace_title">Log stack sporen</string>
+ <string name="revanced_debug_stacktrace_summary_on">Debug logs omvatten stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">Debug logs bevatten geen stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Toon toast bij ReVanced error</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toastmelding weergegeven als er een fout optreedt</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast niet weergegeven als er een fout optreedt</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Uitschakelen van foutmeldingen verbergt alle ReVanced error meldingen.\n\nJe wordt niet op de hoogte gesteld van onverwachte gebeurtenissen.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Uitschakelen zoals / inschrijfknop gloed</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">De knop \'Like\' en \'abonneren\' zal niet gloeien wanneer deze vermeld wordt</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">\'Like en abonneren\' knop zal gloeien wanneer genoemd</string>
+ <string name="revanced_hide_gray_separator_title">Grijs scheidingsteken verbergen</string>
+ <string name="revanced_hide_gray_separator_summary_on">Grijze scheidingstekens zijn verborgen</string>
+ <string name="revanced_hide_gray_separator_summary_off">Grijze scheidingstekens worden weergegeven</string>
+ <string name="revanced_hide_channel_watermark_title">Verberg kanaal watermerk</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Watermerk is verborgen</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Watermerk wordt getoond</string>
+ <string name="revanced_hide_horizontal_shelves_title">Verberg horizontale planken</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Granaten zijn verborgen zoals:\n• A\n• Bak nieuws \n • Doorgaan kijken\n• Verken meer kanalen\n• Shopping\n• Bekijk het opnieuw</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Scholen worden weergegeven</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Knop \'Aansluiten\' verbergen</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Knop is verborgen</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Knop wordt weergegeven</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Verberg \'Voor jou\' blijven op kanaalpagina</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Schuilplaats is verborgen</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Schil wordt weergegeven</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\'Melden me\' knop verbergen</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Knop is verborgen</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Knop wordt weergegeven</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Verberg \'Mensen die ook hebben gekeken\' aanbevelingen</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Aanbevelingen zijn verborgen</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Aanbevelingen worden getoond</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Verberg de \'Toon meer\' knop</string>
+ <string name="revanced_hide_show_more_button_summary_on">Knop is verborgen</string>
+ <string name="revanced_hide_show_more_button_summary_off">Knop wordt weergegeven</string>
+ <string name="revanced_hide_timed_reactions_title">Verberg getimede reacties</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Tijdgebonden reacties zijn verborgen</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Tijdgebonden reacties worden weergegeven</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Verberg koptekst van zoekresultaat</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Schuilkop is verborgen</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Shelf header wordt weergegeven</string>
+ <string name="revanced_hide_channel_guidelines_title">Kanaalrichtlijnen verbergen</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanaalrichtlijnen zijn verborgen</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanaalrichtlijnen worden getoond</string>
+ <string name="revanced_hide_expandable_chip_title">Uitbreidbare chip verbergen onder video\'s</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Uitklapbare chips zijn verborgen</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Uitklapbare chips worden getoond</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Verberg video kwaliteit menu voettekst</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Video kwaliteit menu voettekst is verborgen</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Videokwaliteit menu voettekst wordt weergegeven</string>
+ <string name="revanced_hide_community_posts_title">Verberg community berichten</string>
+ <string name="revanced_hide_community_posts_summary_on">Gemeenschapsberichten zijn verborgen</string>
+ <string name="revanced_hide_community_posts_summary_off">Community berichten worden getoond</string>
+ <string name="revanced_hide_compact_banner_title">Verberg compacte banners</string>
+ <string name="revanced_hide_compact_banner_summary_on">Compacte banners worden verborgen</string>
+ <string name="revanced_hide_compact_banner_summary_off">Compacte banners worden weergegeven</string>
+ <string name="revanced_hide_movies_section_title">Verberg filmsectie</string>
+ <string name="revanced_hide_movies_section_summary_on">Films sectie is verborgen</string>
+ <string name="revanced_hide_movies_section_summary_off">Films sectie wordt weergegeven</string>
+ <string name="revanced_hide_feed_survey_title">Verberg feed enquêtes</string>
+ <string name="revanced_hide_feed_survey_summary_on">Enquêtes van feeds zijn verborgen</string>
+ <string name="revanced_hide_feed_survey_summary_off">Enquêtes worden getoond</string>
+ <string name="revanced_hide_community_guidelines_title">Verberg communityrichtlijnen</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Communautaire richtlijnen worden verborgen</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Communautaire richtlijnen worden getoond</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Verberg richtlijnen voor abonnees</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Abonnees communityrichtlijnen zijn verborgen</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Abonnees communityrichtlijnen worden getoond</string>
+ <string name="revanced_hide_channel_member_shelf_title">Zenderlid zelf verbergen</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanaallid is verborgen in de plank</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanaallid wordt weergegeven</string>
+ <string name="revanced_hide_emergency_box_title">Hulpmiddelen verbergen</string>
+ <string name="revanced_hide_emergency_box_summary_on">Noodgevallen zijn verborgen</string>
+ <string name="revanced_hide_emergency_box_summary_off">De noodboxen worden getoond</string>
+ <string name="revanced_hide_info_panels_title">Verberg info panelen</string>
+ <string name="revanced_hide_info_panels_summary_on">Info panelen zijn verborgen</string>
+ <string name="revanced_hide_info_panels_summary_off">Info panelen worden weergegeven</string>
+ <string name="revanced_hide_medical_panels_title">Verberg medische panelen</string>
+ <string name="revanced_hide_medical_panels_summary_on">Medische panelen zijn verborgen</string>
+ <string name="revanced_hide_medical_panels_summary_off">Medische panelen worden weergegeven</string>
+ <string name="revanced_hide_channel_bar_title">Zenderbalk verbergen</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanaalbalk is verborgen</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanaalbalk wordt weergegeven</string>
+ <string name="revanced_hide_playables_title">Verberg afspeellijsten</string>
+ <string name="revanced_hide_playables_summary_on">Afspeellijsten zijn verborgen</string>
+ <string name="revanced_hide_playables_summary_off">Afspeellijsten worden weergegeven</string>
+ <string name="revanced_hide_quick_actions_title">Verberg snelle acties in volledig scherm</string>
+ <string name="revanced_hide_quick_actions_summary_on">Snelle acties zijn verborgen</string>
+ <string name="revanced_hide_quick_actions_summary_off">Snelle acties worden weergegeven</string>
+ <string name="revanced_hide_related_videos_title">Verberg gerelateerde video\'s in snelle acties</string>
+ <string name="revanced_hide_related_videos_summary_on">Gerelateerde video\'s zijn verborgen</string>
+ <string name="revanced_hide_related_videos_summary_off">Gerelateerde video\'s worden weergegeven</string>
+ <string name="revanced_hide_image_shelf_title">Verberg afbeelding in zoekresultaten</string>
+ <string name="revanced_hide_image_shelf_summary_on">Afbeeldingsplank is verborgen</string>
+ <string name="revanced_hide_image_shelf_summary_off">Afbeeldingsplank wordt weergegeven</string>
+ <string name="revanced_hide_latest_posts_ads_title">Laatste berichten verbergen</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Laatste berichten zijn verborgen</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Laatste berichten worden weergegeven</string>
+ <string name="revanced_hide_mix_playlists_title">Verberg mix afspeellijsten</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Mix afspeellijsten zijn verborgen</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mix afspeellijsten worden weergegeven</string>
+ <string name="revanced_hide_artist_cards_title">Verberg artiest kaarten</string>
+ <string name="revanced_hide_artist_cards_summary_on">Kunstenaartjes zijn verborgen</string>
+ <string name="revanced_hide_artist_cards_summary_off">Kunstenaarkaarten worden weergegeven</string>
+ <string name="revanced_hide_chips_shelf_title">Verberg chips plank</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips plank is verborgen</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips plank wordt weergegeven</string>
+ <string name="revanced_hide_attributes_section_title">Attributensectie verbergen</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Aanbevolen plaatsen\', Games en Muziek secties zijn verborgen</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Aanbevolen plaatsen\', spellen en Muziek secties worden weergegeven</string>
+ <string name="revanced_hide_chapters_section_title">Verberg hoofdstuk sectie</string>
+ <string name="revanced_hide_chapters_section_summary_on">Hoofdstukken sectie is verborgen</string>
+ <string name="revanced_hide_chapters_section_summary_off">Hoofdstukken sectie wordt weergegeven</string>
+ <string name="revanced_hide_podcast_section_title">\'Verken de podcast\' sectie verbergen</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Verken de podcast\' sectie is verborgen</string>
+ <string name="revanced_hide_podcast_section_summary_off">\'Verken de podcast\' sectie wordt weergegeven</string>
+ <string name="revanced_hide_info_cards_section_title">Verberg info kaarten sectie</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Sectie informatiekaarten is verborgen</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Sectie informatiekaarten wordt weergegeven</string>
+ <string name="revanced_hide_transcript_section_title">Transcriptsectie verbergen</string>
+ <string name="revanced_hide_transcript_section_summary_on">Transcriptsectie is verborgen</string>
+ <string name="revanced_hide_transcript_section_summary_off">Transcriptsectie wordt weergegeven</string>
+ <string name="revanced_hide_description_components_screen_title">Video beschrijving</string>
+ <string name="revanced_hide_description_components_screen_summary">Verberg of toon video beschrijving componenten</string>
+ <string name="revanced_custom_filter_screen_title">Aangepast filter</string>
+ <string name="revanced_custom_filter_screen_summary">Componenten met aangepaste filters verbergen</string>
+ <string name="revanced_custom_filter_title">Aangepaste filter inschakelen</string>
+ <string name="revanced_custom_filter_summary_on">Aangepast filter is ingeschakeld</string>
+ <string name="revanced_custom_filter_summary_off">Aangepast filter is uitgeschakeld</string>
+ <string name="revanced_custom_filter_strings_title">Aangepast filter</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lijst van componentpadbouwer tekenreeksen te filteren gescheiden door een nieuwe regel</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Ongeldig aangepast filter: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Verberg inhoud van trefwoorden</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Verberg zoek en feed video\'s met trefwoord filters</string>
+ <string name="revanced_hide_keyword_content_home_title">Verberg Thuisvideo\'s door trefwoorden</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Video\'s in de home tab worden gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Video\'s in het home tabblad worden niet gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Verberg inschrijvingsvideo\'s door trefwoorden</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Video\'s in het tabblad abonnementen worden gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Video\'s in het tabblad abonnementen worden niet gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_search_title">Zoekresultaten verbergen op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Zoekresultaten worden gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Zoekresultaten worden niet gefilterd op trefwoorden</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Trefwoorden om te verbergen</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Trefwoorden en zinnen te verbergen, gescheiden door nieuwe regels\n\nWoorden met hoofdletters in het midden moeten worden ingevoerd met de behuizing (bv: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Over trefwoord filteren</string>
+ <string name="revanced_hide_keyword_content_about_summary">Thuis/Abonnement/Zoekresultaten worden gefilterd om de inhoud te verbergen die overeenkomt met trefwoordzinnen\n\nBeperkingen\n• Sommige Kortingen kunnen niet verborgen zijn\n• Sommige UI-componenten kunnen niet verborgen zijn\n• Zoeken naar een trefwoord kan geen resultaten laten zien</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ongeldig sleutelwoord. Kan niet gebruiken: \'%s\' als filter</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ongeldig sleutelwoord. \'%1$s\' is minder dan %2$d tekens</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">$szal alle video\'s verbergen</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Algemene advertenties verbergen</string>
+ <string name="revanced_hide_general_ads_summary_on">Algemene advertenties zijn verborgen</string>
+ <string name="revanced_hide_general_ads_summary_off">Algemene advertenties worden weergegeven</string>
+ <string name="revanced_hide_fullscreen_ads_title">Verberg advertenties op volledig scherm</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Volledig scherm advertenties zijn verborgen\n\nDeze functie is alleen beschikbaar voor oudere apparaten</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Volledig scherm advertenties worden weergegeven</string>
+ <string name="revanced_hide_buttoned_ads_title">Verberg geknopte advertenties</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Knoppen zijn verborgen</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Knoppen worden weergegeven</string>
+ <string name="revanced_hide_paid_promotion_label_title">Verberg betaalde promotie label</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Betaalde promotie label is verborgen</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Betaalde promotie label is weergegeven</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Verberg zelfgesponsorde kaarten</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Zelfgesponsorde kaarten zijn verborgen</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Zelf gesponsorde kaarten worden weergegeven</string>
+ <string name="revanced_hide_products_banner_title">Verberg banner om producten te bekijken</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner is verborgen</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner wordt getoond</string>
+ <string name="revanced_hide_shopping_links_title">Verberg shopping links in video beschrijving</string>
+ <string name="revanced_hide_shopping_links_summary_on">Shopping links zijn verborgen</string>
+ <string name="revanced_hide_shopping_links_summary_off">Shopping links worden weergegeven</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Verberg de \'Bezoek winkel\' knop op kanaal pagina\'s</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Knop is verborgen</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Knop wordt weergegeven</string>
+ <string name="revanced_hide_web_search_results_title">Verberg web zoekresultaten</string>
+ <string name="revanced_hide_web_search_results_summary_on">Web zoekresultaten zijn verborgen</string>
+ <string name="revanced_hide_web_search_results_summary_off">Web zoekresultaten worden weergegeven</string>
+ <string name="revanced_hide_merchandise_banners_title">Verberg banners van artikelen</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Merchandise banners zijn verborgen</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Producten worden getoond</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Verberg advertenties op volledig scherm werkt alleen met oudere apparaten</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Verberg YouTube Premium promoties</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium promoties onder videospeler zijn verborgen</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium promoties onder videospeler worden getoond</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Video-advertenties verbergen</string>
+ <string name="revanced_hide_video_ads_summary_on">Video-advertenties zijn verborgen</string>
+ <string name="revanced_hide_video_ads_summary_off">Video-advertenties worden weergegeven</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL gekopieerd naar klembord</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL met tijdstempel gekopieerd</string>
+ <string name="revanced_copy_video_url_title">Knop voor kopie video weergeven</string>
+ <string name="revanced_copy_video_url_summary_on">Knop wordt weergegeven. Tik om de video URL te kopiëren. Tik en houd vast om de video URL te kopiëren met een tijdstempel</string>
+ <string name="revanced_copy_video_url_summary_off">Knop wordt niet weergegeven</string>
+ <string name="revanced_copy_video_url_timestamp_title">Kopiëer tijdstempel URL knop weergeven</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Knop wordt weergegeven. Tik om de video-URL te kopiëren met tijdstempel. Druk en houd vast om de video zonder tijdstempel te kopiëren</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Knop wordt niet weergegeven</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Verwijder discretie kijkvenster</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialoogvenster zal worden verwijderd</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialoogvenster wordt getoond</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Hiermee wordt de leeftijdsbeperking niet omzeild. Het accepteert deze gewoon automatisch.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Externe downloads</string>
+ <string name="revanced_external_downloader_screen_summary">Instellingen voor het gebruik van een externe downloader</string>
+ <string name="revanced_external_downloader_title">Externe downloadknop weergeven</string>
+ <string name="revanced_external_downloader_summary_on">Download knop weergegeven in speler</string>
+ <string name="revanced_external_downloader_summary_off">Downloadknop niet weergegeven in speler</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Download knop negeren</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Download knop opent uw externe downloader</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Download knop opent de native in-app downloader</string>
+ <string name="revanced_external_downloader_name_title">Naam downloader pakket</string>
+ <string name="revanced_external_downloader_name_summary">Pakketnaam van uw geïnstalleerde externe downloader-app, zoals NewPipe of Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s is niet geïnstalleerd. Installeer het alstublieft.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Schakel nauwkeurige zoektocht gebaar uit</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gebaar is uitgeschakeld</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gebaar is ingeschakeld</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Zoekbalk tappen inschakelen</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar tikken is ingeschakeld</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar tappen is uitgeschakeld</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Helderheid gebaar inschakelen</string>
+ <string name="revanced_swipe_brightness_summary_on">Helderheid vegen is ingeschakeld</string>
+ <string name="revanced_swipe_brightness_summary_off">Helderheid vegen is uitgeschakeld</string>
+ <string name="revanced_swipe_volume_title">Volumegebaar inschakelen</string>
+ <string name="revanced_swipe_volume_summary_on">Veeg volume is ingeschakeld</string>
+ <string name="revanced_swipe_volume_summary_off">Volume vegen is uitgeschakeld</string>
+ <string name="revanced_swipe_press_to_engage_title">Indrukken-naar-veeg gebaar inschakelen</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Press-to-swipe is ingeschakeld</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Press-to-swipe is uitgeschakeld</string>
+ <string name="revanced_swipe_haptic_feedback_title">Haptische feedback inschakelen</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptische feedback is ingeschakeld</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptische feedback is uitgeschakeld</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Opslaan en herstellen van helderheid</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Sla en herstel helderheid bij het sluiten of invoeren van volledig scherm</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Helderheid niet opslaan en herstellen bij het afsluiten of invoeren van volledig scherm</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Automatische helderheid gebaar inschakelen</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Omlaag vegen naar de laagste waarde van de helderheidsgebaar inschakelen automatische helderheid</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Omlaag vegen naar de laagste waarde schakelt automatische helderheid niet in</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatisch</string>
+ <string name="revanced_swipe_overlay_timeout_title">Time-out veeg overlay</string>
+ <string name="revanced_swipe_overlay_timeout_summary">De hoeveelheid milliseconden die de overlay zichtbaar is</string>
+ <string name="revanced_swipe_text_overlay_size_title">Swipe overlay tekst grootte</string>
+ <string name="revanced_swipe_text_overlay_size_summary">De grootte van de tekst voor veeg overlay</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Veeg achtergrond zichtbaarheid</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">De zichtbaarheid van de overlay veeg de achtergrond</string>
+ <string name="revanced_swipe_threshold_title">Veeg magnitude drempel</string>
+ <string name="revanced_swipe_threshold_summary">Het aantal drempelwaarden om te vegen</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Automatisch bijschrift uitschakelen</string>
+ <string name="revanced_auto_captions_summary_on">Automatisch bijschrift uitgeschakeld</string>
+ <string name="revanced_auto_captions_summary_off">Automatisch bijschrift is ingeschakeld</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Actie knoppen</string>
+ <string name="revanced_hide_buttons_screen_summary">Verberg of toon knoppen onder video\'s</string>
+ <string name="revanced_hide_like_dislike_button_title">Verberg Like en Niet leuk</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Leuk- en niet-leuk-knoppen zijn verborgen</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Leuk- en niet-leuk-knoppen worden weergegeven</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Verberg deel</string>
+ <string name="revanced_hide_share_button_summary_on">Share knop is verborgen</string>
+ <string name="revanced_hide_share_button_summary_off">Share knop wordt weergegeven</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Rapport verbergen</string>
+ <string name="revanced_hide_report_button_summary_on">Rapportknop is verborgen</string>
+ <string name="revanced_hide_report_button_summary_off">Rapportknop wordt weergegeven</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Verberg Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix knop is verborgen</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix knop wordt weergegeven</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Download verbergen</string>
+ <string name="revanced_hide_download_button_summary_on">Download knop is verborgen</string>
+ <string name="revanced_hide_download_button_summary_off">Download knop wordt weergegeven</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Bedankt verbergen</string>
+ <string name="revanced_hide_thanks_button_summary_on">Bedankt knop is verborgen</string>
+ <string name="revanced_hide_thanks_button_summary_off">Bedankt knop wordt weergegeven</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Clip knop is verborgen</string>
+ <string name="revanced_hide_clip_button_summary_off">Clip knop wordt weergegeven</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Verberg opslaan in afspeellijst</string>
+ <string name="revanced_hide_playlist_button_summary_on">Opslaan naar afspeellijst knop is verborgen</string>
+ <string name="revanced_hide_playlist_button_summary_off">Opslaan naar afspeellijst knop wordt weergegeven</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Knop voor automatisch afspelen verbergen</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Automatisch afspelen knop is verborgen</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Automatisch afspelen knop wordt weergegeven</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Knop voor onderschriften verbergen</string>
+ <string name="revanced_hide_captions_button_summary_on">Knop voor bijschriften is verborgen</string>
+ <string name="revanced_hide_captions_button_summary_off">Knop voor bijschriften wordt weergegeven</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Verberg cast knop</string>
+ <string name="revanced_hide_cast_button_summary_on">Cast knop is verborgen</string>
+ <string name="revanced_hide_cast_button_summary_off">Cast knop wordt weergegeven</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Verberg of wijzig knoppen in de navigatiebalk</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Verberg startpagina</string>
+ <string name="revanced_hide_home_button_summary_on">Thuisknop is verborgen</string>
+ <string name="revanced_hide_home_button_summary_off">Home-knop wordt weergegeven</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Verberg verkorten</string>
+ <string name="revanced_hide_shorts_button_summary_on">Shorts knop is verborgen</string>
+ <string name="revanced_hide_shorts_button_summary_off">Shorts knop wordt weergegeven</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Aanmaken verbergen</string>
+ <string name="revanced_hide_create_button_summary_on">Aanmaken knop is verborgen</string>
+ <string name="revanced_hide_create_button_summary_off">Maak knop wordt weergegeven</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Verberg abonnementen</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Inschrijvingen knop is verborgen</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Inschrijvingen knop wordt weergegeven</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Wissel Aanmaken met meldingen</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Knop maken wordt veranderd met de Notificatie knop\n\nOpmerking: dit ook inschakelen met behulp van video advertenties</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Maak knop is niet omgeschakeld met de Notificatie knop</string>
+ <string name="revanced_hide_navigation_button_labels_title">Verberg navigatieknop labels</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Labels zijn verborgen</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Labels worden weergegeven</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Menu-items van speler verbergen of tonen</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ondertiteling verbergen</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Ondertitelingsmenu is verborgen</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menu Ondertitelingen wordt getoond</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Aanvullende instellingen verbergen</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Extra instellingenmenu is verborgen</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Extra instellingenmenu wordt weergegeven</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Loop video verbergen</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Lusvideo menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Lus video menu wordt weergegeven</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Verberg omgevingsmodus</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menu voor omgevingsmodus is verborgen</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Menu omgevingsmodus wordt weergegeven</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Help verbergen & feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Help & feedback menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Help & feedback menu wordt getoond</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Verberg afspeelsnelheid</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Speelsnelheid menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Speelsnelheid menu wordt weergegeven</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Verberg meer informatie</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Meer info menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Meer info menu wordt weergegeven</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Vergrendelingsscherm verbergen</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Vergrendelscherm menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Vergrendelscherm menu wordt weergegeven</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Audio-spoor verbergen</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Audio track menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Audio-track menu wordt weergegeven</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Verberg horloge in VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Bekijk in het VR-menu is verborgen</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Bekijk in het VR-menu</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Vorige & volgende video knoppen verbergen</string>
+ <string name="revanced_hide_player_buttons_summary_on">Knoppen zijn verborgen</string>
+ <string name="revanced_hide_player_buttons_summary_off">Knoppen worden weergegeven</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Verberg albumkaarten</string>
+ <string name="revanced_hide_album_cards_summary_on">Albumkaarten zijn verborgen</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumkaarten worden weergegeven</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Opmerkingen</string>
+ <string name="revanced_comments_screen_summary">Opmerkingen sectie onderdelen verbergen of weergeven</string>
+ <string name="revanced_hide_comments_by_members_header_title">Verberg de titel \'Opmerkingen van leden\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">De header \'Reacties door leden\' is verborgen</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">De header \'Reacties door leden\' wordt getoond</string>
+ <string name="revanced_hide_comments_section_title">Reacties sectie verbergen</string>
+ <string name="revanced_hide_comments_section_summary_on">Reacties sectie is verborgen</string>
+ <string name="revanced_hide_comments_section_summary_off">Reacties sectie wordt weergegeven</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">\'Maak een kort\' knop verbergen</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Maak een kort\' knop is verborgen</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">De \'Maak een korting\' knop wordt weergegeven</string>
+ <string name="revanced_hide_comments_preview_comment_title">Verberg commentaar op voorbeeld</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Voorbeeldcommentaar is verborgen</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Voorbeeld commentaar wordt weergegeven</string>
+ <string name="revanced_hide_comments_thanks_button_title">Knop voor dank(en) verbergen</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Bedankt knop is verborgen</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Bedankt knop wordt weergegeven</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Verberg tijdstempel en emoji-knoppen</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Tijdstempel en emoji knoppen zijn verborgen</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Tijdstempel en emoji-knoppen worden getoond</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">crowdfunding box verbergen</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding box is verborgen</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Crowdfunding box wordt getoond</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Verberg eindschermkaarten</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Eindscherm kaarten zijn verborgen</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Eindschermkaarten worden weergegeven</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filter balk</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Verberg of toon de filterbalk in de feed, zoeken, en gerelateerde video\'s</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Verberg in feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Verborgen in feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Zichtbaar in feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Verbergen in zoekopdracht</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Verborgen in zoekopdracht</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Weergegeven in zoekopdracht</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Verbergen in gerelateerde video\'s</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Verborgen in gerelateerde video\'s</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Weergegeven in gerelateerde video\'s</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Zwevende microfoon knop verbergen</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Microfoon knop verborgen</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Microfoon knop weergegeven</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Schakel omgevingsmodus uit in volledig scherm</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Actieve modus uitgeschakeld</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Actieve modus ingeschakeld</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Verberg informatiekaarten</string>
+ <string name="revanced_hide_info_cards_summary_on">Info kaarten zijn verborgen</string>
+ <string name="revanced_hide_info_cards_summary_off">Info kaarten worden weergegeven</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Schakel rolnummer animaties uit</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Rolnummers zijn niet geanimeerd</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rolnummers zijn geanimeerd</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Verberg zoekbalk in videospeler</string>
+ <string name="revanced_hide_seekbar_summary_on">Zoekbalk videospeler verborgen</string>
+ <string name="revanced_hide_seekbar_summary_off">Zoekbalk videospeler is weergegeven</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Zoekbalk verbergen in video-miniaturen</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Thumbnail zoekbalk is verborgen</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Miniatuur zoekbalk wordt weergegeven</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Verberg verkorten in home feed</string>
+ <string name="revanced_hide_shorts_home_summary_on">Kortingen in de thuisfeed zijn verborgen</string>
+ <string name="revanced_hide_shorts_home_summary_off">Kortingen in de home feed worden weergegeven</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Verberg verkorten in de abonnementsfeed</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Schorten in de abonnementsfeed zijn verborgen</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Schorten in de abonnementsfeed worden weergegeven</string>
+ <string name="revanced_hide_shorts_search_title">Verberg verkorten in zoekresultaten</string>
+ <string name="revanced_hide_shorts_search_summary_on">Schorten in zoekresultaten zijn verborgen</string>
+ <string name="revanced_hide_shorts_search_summary_off">Korte zoekresultaten worden weergegeven</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Toetredingsknop verbergen</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Join knop is verborgen</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Toetredingsknop wordt weergegeven</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Verberg inschrijfknop</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Abonneren knop is verborgen</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">\'Abonneren\' knop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Verberg gepauzeerde overlayknoppen</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Gepauzeerde overlay knoppen zijn verborgen</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Gepauzeerde overlay knoppen worden weergegeven</string>
+ <string name="revanced_hide_shorts_shop_button_title">Winkelknop verbergen</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Winkelknop is verborgen</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Winkelknop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Verberg superbedankt knop</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Super bedankje is verborgen</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Super bedankje wordt getoond</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Verberg getagde producten</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Gelabelde producten zijn verborgen</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Gecodeerde producten worden weergegeven</string>
+ <string name="revanced_hide_shorts_location_label_title">Verberg locatie label</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Locatie label is verborgen</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Locatie label wordt weergegeven</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Geluid opslaan naar afspeellijst knop verbergen</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Geluid opslaan in afspeellijst is verborgen</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Geluid opslaan in de afspeellijst wordt weergegeven</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Zoeksuggesties verbergen</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Zoeksuggesties zijn verborgen</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Zoeksuggesties worden getoond</string>
+ <string name="revanced_hide_shorts_like_button_title">Verberg leuk-knop</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Vind-ik-leuk-knop is verborgen</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Vind-ik-leuk-knop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Verberg niet-leuk-knop</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Vind-ik-leuk-knop is verborgen</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Dislike knop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_comments_button_title">Knop voor reacties verbergen</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Reacties knop is verborgen</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Knop voor reacties wordt weergegeven</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Verberg remix knop</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remix knop is verborgen</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remix knop wordt weergegeven</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Verberg share knop</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Share knop is verborgen</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Share knop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_info_panel_title">Verberg informatiepaneel</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Info paneel is verborgen</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Info paneel wordt weergegeven</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Zenderbalk verbergen</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanaalbalk is verborgen</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanaalbalk wordt weergegeven</string>
+ <string name="revanced_hide_shorts_video_title_title">Videotitel verbergen</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titel is verborgen</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titel wordt weergegeven</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Verberg geluidmetagegevens label</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metagegevens label is verborgen</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metagegevens label wordt weergegeven</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Verberg volledige video link label</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Video link label is verborgen</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Label van de video-link wordt weergegeven</string>
+ <string name="revanced_hide_shorts_sound_button_title">Verberg geluid knop</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Geluid knop is verborgen</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Geluid knop wordt weergegeven</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Verberg navigatiebalk</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigatiebalk is verborgen</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigatiebalk wordt weergegeven</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Voorgestelde video eindscherm uitschakelen</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Voorgestelde video\'s worden uitgeschakeld</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Voorgestelde video\'s worden getoond</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Verberg video tijdstempel</string>
+ <string name="revanced_hide_timestamp_summary_on">Tijdstempel is verborgen</string>
+ <string name="revanced_hide_timestamp_summary_off">Tijdstempel wordt weergegeven</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Verberg speler popup panelen</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Speler pop-up panelen zijn verborgen</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Speler pop-up panelen worden getoond</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Doorzichtigheid speler overlay</string>
+ <string name="revanced_player_overlay_opacity_summary">Transparantiewaarde tussen 0-100, waarbij 0 transparant is</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Speler overlay transparantie moet tussen 0-100 liggen</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislikes tijdelijk niet beschikbaar (API time-out)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Niet beschikbaar (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Niet beschikbaar (client API limiet bereikt)</string>
+ <string name="revanced_ryd_failure_generic">Niet beschikbaar (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Herlaad video om te stemmen met behulp van Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislikes worden weergegeven</string>
+ <string name="revanced_ryd_enable_summary_off">Dislikes worden niet weergegeven</string>
+ <string name="revanced_ryd_shorts_title">Toon onlikes op korten</string>
+ <string name="revanced_ryd_shorts_summary_on">Niet leuk weergegeven op Korting</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Niet leuk weergegeven op Shorts\n\nLimitatie: Niet leuk vinden mag niet verschijnen in incognito modus</string>
+ <string name="revanced_ryd_shorts_summary_off">Vindt het niet leuk verborgen op Korte</string>
+ <string name="revanced_ryd_dislike_percentage_title">Niet leuk als percentage</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Niet leuk weergegeven als percentage</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Niet leuk weergegeven als nummer</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Compacte zoals knop</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Zoek-leuk-knop vormgegeven voor minimale breedte</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Like knop vormgegeven voor het beste uiterlijk</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Toast tonen als de API niet beschikbaar is</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast wordt getoond als Return YouTube Dislike niet beschikbaar is</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast wordt niet getoond als Return YouTube Dislike niet beschikbaar is</string>
+ <string name="revanced_ryd_about">Over</string>
+ <string name="revanced_ryd_attribution_summary">Gegevens worden verstrekt door de Return YouTube Dislike API. Tik hier om meer te weten te komen</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Retourneer YouTubeDislike API-statistieken van dit apparaat</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API responstijd, gemiddeld</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API responstijd, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API responstijd, maximum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API reactietijd, laatste video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislikes tijdelijk niet beschikbaar - Client API tarieflimiet van kracht</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API ophalen stemmen, aantal oproepen</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Geen netwerkoproepen gemaakt</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d netwerkoproepen gemaakt</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API haal stemmen, aantal time-outs</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Geen netwerkgesprekken duurde te lang</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d netwerkoproepen time-out</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API client rate limieten</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Geen klantentarief limieten gevonden</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Client rate limiet opgelopen %d keer</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milliseconden</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Schakel brede zoekbalk in</string>
+ <string name="revanced_wide_searchbar_summary_on">Brede zoekbalk is ingeschakeld</string>
+ <string name="revanced_wide_searchbar_summary_off">Brede zoekbalk is uitgeschakeld</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Herstel oude Zoekbalk miniaturen</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Zoekbalk miniaturen verschijnen boven de zoekbalk</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Zoekbalk miniaturen worden weergegeven op volledig scherm</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock inschakelen</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock is een crowd-sourced systeem om vervelende delen van YouTube video\'s over te slaan</string>
+ <string name="revanced_sb_appearance_category">Uiterlijk</string>
+ <string name="revanced_sb_enable_voting">Toon de stem knop</string>
+ <string name="revanced_sb_enable_voting_sum_on">De segmenten-knop wordt weergegeven</string>
+ <string name="revanced_sb_enable_voting_sum_off">De segmenten-knop wordt niet weergegeven</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Gebruik compacte overslaan knop</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Sla de knop over voor minimale breedte</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Knop overslaan voor het beste uiterlijk</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Automatisch de overslagknop verbergen</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Overslaan knop verbergt zich na enkele seconden</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Weergegeven knop voor hele segmenten overslaan</string>
+ <string name="revanced_sb_general_skiptoast">Toon een toast wanneer automatisch wordt overgeslagen</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toastmelding wordt weergegeven wanneer een segment automatisch wordt overgeslagen. Tik hier om een voorbeeld te zien</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast wordt niet getoond. Tik hier om een voorbeeld te zien</string>
+ <string name="revanced_sb_general_time_without">Videolengte zonder segmenten weergeven</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videolengte min alle segmenten, weergegeven in haakjes naast de volledige videolengte</string>
+ <string name="revanced_sb_general_time_without_sum_off">Volledige videolengte weergegeven</string>
+ <string name="revanced_sb_create_segment_category">Nieuwe segmenten aanmaken</string>
+ <string name="revanced_sb_enable_create_segment">Toon nieuwe segment knop</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Nieuwe segment knop is weergegeven</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Nieuwe segment knop wordt niet weergegeven</string>
+ <string name="revanced_sb_general_adjusting">Nieuwe segment stap aanpassen</string>
+ <string name="revanced_sb_general_adjusting_sum">Aantal milliseconden de tijden aanpassingsknoppen bewegen bij het maken van nieuwe segmenten</string>
+ <string name="revanced_sb_general_adjusting_invalid">Waarde moet een positief getal zijn</string>
+ <string name="revanced_sb_guidelines_preference_title">Bekijk richtlijnen</string>
+ <string name="revanced_sb_guidelines_preference_sum">Richtlijnen bevatten regels en tips voor het maken van nieuwe segmenten</string>
+ <string name="revanced_sb_guidelines_popup_title">Volg de richtlijnen</string>
+ <string name="revanced_sb_guidelines_popup_content">Lees de SponsorBlock richtlijnen voordat u nieuwe segmenten maakt</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Al gelezen</string>
+ <string name="revanced_sb_guidelines_popup_open">Laat me zien</string>
+ <string name="revanced_sb_general">Algemeen</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Toast tonen als de API niet beschikbaar is</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Melding wordt getoond als SponsorBlock niet beschikbaar is</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Melding wordt niet getoond als SponsorBlock niet beschikbaar is</string>
+ <string name="revanced_sb_general_skipcount">Schakel het aantal overslaan in</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Laat het SponsorBlock scorebord weten hoeveel tijd er wordt opgeslagen. Elke keer dat een segment wordt overgeslagen wordt een bericht verzonden naar het scorebord</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Tel tracking overslaan is niet ingeschakeld</string>
+ <string name="revanced_sb_general_min_duration">Minimale segmentduur</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmenten korter dan deze waarde (in seconden) worden niet getoond of overgeslagen</string>
+ <string name="revanced_sb_general_uuid">Je privégebruikers-id</string>
+ <string name="revanced_sb_general_uuid_sum">Dit moet privé blijven. Dit is als een wachtwoord en moet met niemand worden gedeeld. Als iemand dit heeft, kunnen zij u imiteren</string>
+ <string name="revanced_sb_general_uuid_invalid">Privé gebruikers-id moet ten minste 30 tekens lang zijn</string>
+ <string name="revanced_sb_general_api_url">API-URL wijzigen</string>
+ <string name="revanced_sb_general_api_url_sum">De adres SponsorBlock gebruikt om naar de server te bellen</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">API URL is ongeldig</string>
+ <string name="revanced_sb_api_url_changed">API URL gewijzigd</string>
+ <string name="revanced_sb_settings_ie">Import/Export instellingen</string>
+ <string name="revanced_sb_settings_copy">Kopiëren</string>
+ <string name="revanced_sb_settings_ie_sum">Uw SponsorBlock JSON configuratie die kan worden geïmporteerd/geëxporteerd naar ReVanced en andere SponsorBlock platforms</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Uw SponsorBlock JSON configuratie die kan worden geïmporteerd/geëxporteerd naar ReVanced en andere SponsorBlock platformen. Dit is inclusief uw privégebruikers-id. Zorg ervoor dat u dit verstandig deelt</string>
+ <string name="revanced_sb_settings_import_successful">Instellingen succesvol geïmporteerd</string>
+ <string name="revanced_sb_settings_import_failed">Importeren mislukt: %s</string>
+ <string name="revanced_sb_settings_export_failed">Exporteren mislukt: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Uw instellingen bevatten een persoonlijke SponsorBlock userid.\n\nUw gebruikers-id is als een wachtwoord en het zou nooit gedeeld moeten worden.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Niet meer weergeven</string>
+ <string name="revanced_sb_diff_segments">Verander segment gedrag</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Betaalde promotie, betaalde aanbevelingen en directe advertenties. Niet voor zelf-promotie of gratis uit-outs voor die/creators/websites/producten waar ze van houden</string>
+ <string name="revanced_sb_segments_selfpromo">Onbetaalde/zelf-promotie</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Vergelijkbaar met \'Sponsor\' behalve onbetaalde of zelfpromotie. Inclusief secties over goederen, donaties of informatie over wie ze hebben samengewerkt</string>
+ <string name="revanced_sb_segments_interaction">Interactie Herinnering (Abonneren)</string>
+ <string name="revanced_sb_segments_interaction_sum">Een korte herinnering om ze leuk te vinden, te abonneren of te volgen in het midden van de inhoud. Als het lang is of iets specifieks is, moet het in plaats daarvan onder zelfpromotie vallen.</string>
+ <string name="revanced_sb_segments_highlight">Markeren</string>
+ <string name="revanced_sb_segments_highlight_sum">Het deel van de video waarnaar de meeste mensen op zoek zijn</string>
+ <string name="revanced_sb_segments_intro">Intermissie/Intro Animatie</string>
+ <string name="revanced_sb_segments_intro_sum">Een interval zonder actuele inhoud. Kan een pauze, statische frame, of herhalende animatie zijn. Inclusief overgangen die informatie bevatten</string>
+ <string name="revanced_sb_segments_outro">Eindkaarten/Credits</string>
+ <string name="revanced_sb_segments_outro_sum">Credits of wanneer de YouTube eindkaarten verschijnen. Niet voor conclusies met informatie</string>
+ <string name="revanced_sb_segments_preview">Voorbeeld/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Collectie van clips die laten zien wat er gebeurt of wat er is gebeurd in de video of in andere video\'s van een serie, waar alle informatie elders wordt herhaald</string>
+ <string name="revanced_sb_segments_filler">Filler Tangent/Jokes</string>
+ <string name="revanced_sb_segments_filler_sum">Tangential scènes alleen toegevoegd voor opvulling of humor die niet nodig zijn om de belangrijkste inhoud van de video te begrijpen. Bevat geen segmenten die context- of achtergrondgegevens verstrekken</string>
+ <string name="revanced_sb_segments_nomusic">Muziek: Sectie zonder muziek</string>
+ <string name="revanced_sb_segments_nomusic_sum">Alleen voor gebruik in muziekvideo\'s. Secties van muziekvideo\'s zonder muziek, die nog niet door een andere categorie worden behandeld</string>
+ <string name="revanced_sb_skip_button_compact">Overslaan</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Markeren</string>
+ <string name="revanced_sb_skip_button_sponsor">Sla sponsor over</string>
+ <string name="revanced_sb_skip_button_selfpromo">Actie overslaan</string>
+ <string name="revanced_sb_skip_button_interaction">Interactie overslaan</string>
+ <string name="revanced_sb_skip_button_highlight">Overslaan om te markeren</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Introductie overslaan</string>
+ <string name="revanced_sb_skip_button_intro_middle">Interactie overslaan</string>
+ <string name="revanced_sb_skip_button_intro_end">Interactie overslaan</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Voorbeeld overslaan</string>
+ <string name="revanced_sb_skip_button_preview_middle">Voorbeeld overslaan</string>
+ <string name="revanced_sb_skip_button_preview_end">Terugslag Overslaan</string>
+ <string name="revanced_sb_skip_button_filler">Overslaan vuller</string>
+ <string name="revanced_sb_skip_button_nomusic">Sla niet-muziek over</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Segment overslaan</string>
+ <string name="revanced_sb_skipped_sponsor">Overgeslagen sponsor</string>
+ <string name="revanced_sb_skipped_selfpromo">Zelfpromotie overgeslagen</string>
+ <string name="revanced_sb_skipped_interaction">Vervelende herinnering overgeslagen</string>
+ <string name="revanced_sb_skipped_highlight">Overgeslagen om te markeren</string>
+ <string name="revanced_sb_skipped_intro_beginning">Intro overgeslagen</string>
+ <string name="revanced_sb_skipped_intro_middle">Overgeslagen interactie</string>
+ <string name="revanced_sb_skipped_intro_end">Overgeslagen interactie</string>
+ <string name="revanced_sb_skipped_outro">Outro overgeslagen</string>
+ <string name="revanced_sb_skipped_preview_beginning">Voorbeeld overgeslagen</string>
+ <string name="revanced_sb_skipped_preview_middle">Voorbeeld overgeslagen</string>
+ <string name="revanced_sb_skipped_preview_end">Overgeslagen reap</string>
+ <string name="revanced_sb_skipped_filler">Opvuller overgeslagen</string>
+ <string name="revanced_sb_skipped_nomusic">Een niet-muzieksectie overgeslagen</string>
+ <string name="revanced_sb_skipped_unsubmitted">Niet-ingediend segment overgeslagen</string>
+ <string name="revanced_sb_skipped_multiple_segments">Meervoudige segmenten overgeslagen</string>
+ <string name="revanced_sb_skip_automatically">Automatisch overslaan</string>
+ <string name="revanced_sb_skip_automatically_once">Sla automatisch over eenmalig</string>
+ <string name="revanced_sb_skip_showbutton">Toon een oversla-knop</string>
+ <string name="revanced_sb_skip_seekbaronly">In de zoekbalk weergeven</string>
+ <string name="revanced_sb_skip_ignore">Uitschakelen</string>
+ <string name="revanced_sb_submit_failed_invalid">Kon segment niet indienen: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock is tijdelijk niet beschikbaar</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Kon segment niet verzenden (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Segment verzenden niet mogelijk.\n-tarief gelimiteerd (te veel van dezelfde gebruiker of IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Kan de groep niet indienen: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Kan het segment niet indienen.\nBestaat al</string>
+ <string name="revanced_sb_submit_succeeded">Segment succesvol ingediend</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock tijdelijk niet beschikbaar (API time-out)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock tijdelijk niet beschikbaar (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock tijdelijk niet beschikbaar</string>
+ <string name="revanced_sb_vote_failed_timeout">Kan niet voor segment stemmen (API time-out)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Kan niet stemmen voor segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Niet mogelijk om te stemmen op segment: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Downvote</string>
+ <string name="revanced_sb_vote_category">Verander categorie</string>
+ <string name="revanced_sb_vote_no_segments">Er zijn geen segmenten om voor te stemmen</string>
+ <string name="revanced_sb_new_segment_choose_category">Kies de segmentcategorie</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categorie is uitgeschakeld in instellingen. Schakel categorie in om in te dienen.</string>
+ <string name="revanced_sb_new_segment_title">Nieuw SponsorBlock-segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Stel %1$02d:%2$02d:%3$03d in als het begin of einde van een nieuw segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">begin</string>
+ <string name="revanced_sb_new_segment_mark_end">einde</string>
+ <string name="revanced_sb_new_segment_now">nu</string>
+ <string name="revanced_sb_new_segment_time_start">Tijd waarop het segment begint</string>
+ <string name="revanced_sb_new_segment_time_end">Tijd waarop het segment eindigt</string>
+ <string name="revanced_sb_new_segment_confirm_title">Zijn de tijden correct?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Het segment is van\n\n%1$s\nnaar\n%2$s\n\n(%3$s)\n\nklaar om te indienen?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">De start moet voor het einde zijn</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Markeer eerst twee locaties op de tijdbalk</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Bekijk het segment en zorg ervoor dat het soepel wordt overgeslagen</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Bewerk timing van segment handmatig</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Wil je de timing van het begin of einde van het segment bewerken?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Ongeldige tijd opgegeven</string>
+ <string name="revanced_sb_stats">Statistieken</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistieken tijdelijk niet beschikbaar (API is down)</string>
+ <string name="revanced_sb_stats_loading">Bezig met laden...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock is uitgeschakeld</string>
+ <string name="revanced_sb_stats_username">Uw gebruikersnaam: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Tik hier om je gebruikersnaam te wijzigen</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Niet in staat om gebruikersnaam te wijzigen: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Gebruikersnaam succesvol gewijzigd</string>
+ <string name="revanced_sb_stats_reputation">Je reputatie is <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Je hebt <b>%s</b> segmenten aangemaakt</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock scorebord</string>
+ <string name="revanced_sb_stats_saved">Je hebt mensen gered van <b>%s</b> segmenten</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Tik hier om de globale statistieken en de top bijdragers te zien</string>
+ <string name="revanced_sb_stats_saved_sum">Dat is <b>%s</b> van hun leven. <br> klik hier om het scorebord te zien</string>
+ <string name="revanced_sb_stats_self_saved">Je hebt <b>%s</b> segmenten overgeslagen</string>
+ <string name="revanced_sb_stats_self_saved_sum">Dat is <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Reset overgeslagen segmenten teller?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$@ uren %2$@ minuten</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minuten %2$s seconden</string>
+ <string name="revanced_sb_stats_saved_second_format">%s seconden</string>
+ <string name="revanced_sb_color_dot_label">Kleur:</string>
+ <string name="revanced_sb_color_changed">Kleur gewijzigd</string>
+ <string name="revanced_sb_color_reset">Kleur reset</string>
+ <string name="revanced_sb_color_invalid">Ongeldige kleurcode</string>
+ <string name="revanced_sb_reset_color">Kleur resetten</string>
+ <string name="revanced_sb_reset">Herstellen naar standaard</string>
+ <string name="revanced_sb_about">Over</string>
+ <string name="revanced_sb_about_api_sum">Gegevens worden verstrekt door de SponsorBlock API. Tik hier om meer te weten te komen en de downloads van andere platforms te bekijken</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof app versie</string>
+ <string name="revanced_spoof_app_version_summary_on">Versie vervalst</string>
+ <string name="revanced_spoof_app_version_summary_off">Versie niet vervalst</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">App versie zal worden gespoofd tot een oudere versie van YouTube.\n\nDit zal het uiterlijk en de functies van de app veranderen, maar er kunnen onbekende neveneffecten optreden.\n\nAls later is uitgeschakeld, wordt aanbevolen om de app-gegevens te wissen om bugs in de gebruikersinterface te voorkomen.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app versie doel</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Herstel RYD op incognito modus</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Herstel brede videosnelheid & kwaliteitsmenu</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Tabblad bibliotheek herstellen</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - oude afspeellijst herstellen</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Herstel oude UI lay-out</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Startpagina instellen</string>
+ <string name="revanced_start_page_entry_0">Standaard</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Startpagina</string>
+ <string name="revanced_start_page_entry_2">Zoeken</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonnementen</string>
+ <string name="revanced_start_page_entry_4">Verken</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Uw tabblad</string>
+ <string name="revanced_start_page_entry_7">Video\'s leuk vinden</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Geschiedenis</string>
+ <string name="revanced_start_page_entry_9">Populair</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Deactiveer speler om te hervatten</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Kortende speler zal bij het opstarten van de app niet hervatten</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Verkort speler zal bij het opstarten van de app hervatten</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Tablet lay-out inschakelen</string>
+ <string name="revanced_tablet_layout_summary_on">Tablet lay-out is ingeschakeld</string>
+ <string name="revanced_tablet_layout_summary_off">Tablet lay-out is uitgeschakeld</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Gemeenschapsberichten verschijnen niet op de tabletlay-outs</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minispeler</string>
+ <string name="revanced_miniplayer_screen_summary">De stijl van de in de app geminimaliseerde speler wijzigen</string>
+ <string name="revanced_miniplayer_type_title">Miniplayer type</string>
+ <string name="revanced_miniplayer_type_entry_1">Origineel</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefoonnummer</string>
+ <string name="revanced_miniplayer_type_entry_3">Telefoon</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderne 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderne 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderne 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Verberg knoppen voor uitvouwen en sluiten</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Knoppen zijn verborgen\n(swipe miniplayer om uit te breiden of te sluiten)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Uitvouwen en sluiten knoppen worden weergegeven</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Verberg subteksten</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Subteksten zijn verborgen</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Subteksten worden getoond</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Voor- en achterkant knoppen verbergen</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Vooruit en achterkant zijn verborgen</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Spring vooruit en achterkant worden weergegeven</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Transparantiewaarde tussen 0-100, waarbij 0 transparant is</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Miniplayer overlay transparantie moet tussen de 0-100 zijn</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Kleurovergang laden scherm inschakelen</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Het laden van het scherm zal een verloopachtergrond hebben</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Het laadscherm zal een solide achtergrond hebben</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Aangepaste Zoekbalk kleur inschakelen</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Aangepaste zoekbalk kleur wordt weergegeven</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Oorspronkelijke Zoekbalk kleur wordt weergegeven</string>
+ <string name="revanced_seekbar_custom_color_value_title">Aangepaste zoekbalk kleur</string>
+ <string name="revanced_seekbar_custom_color_value_summary">De kleur van de zoekbalk</string>
+ <string name="revanced_seekbar_custom_color_invalid">Ongeldige zoekbalk kleurwaarde. Standaardwaarde wordt gebruikt.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Tabblad Home</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Abonnement tabblad</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Uw tabblad</string>
+ <string name="revanced_alt_thumbnail_player_title">Speler afspeellijsten, aanbevelingen</string>
+ <string name="revanced_alt_thumbnail_search_title">Zoek resultaten</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Depijl & Originele miniaturen</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Depijl & nog steeds opnemen</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Nog steeds vastleggen</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow biedt miniaturen van crowd-sourced voor YouTube-video\'s. Deze miniaturen zijn vaak relevanter dan die welke worden verstrekt door YouTube\n\nIndien ingeschakeld Video-URL\'s worden verzonden naar de API-server en er worden geen andere gegevens verzonden. Als een video geen DeArrow miniaturen heeft, dan wordt de originele of nog steeds opnamen weergegeven\n\nTik hier om meer te weten te komen over DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Toast tonen als de API niet beschikbaar is</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Melding wordt weergegeven als DeArrow niet beschikbaar is</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Melding wordt niet getoond als DeArrow niet beschikbaar is</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">De URL van het DeArrow thumbnail cache eindpunt</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Video-opnames nog steeds</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Nog steeds opgenomen worden vanaf het begin/midden/einde van elke video. Deze afbeeldingen zijn in YouTube ingebouwd en er wordt geen externe API gebruikt.</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Gebruik snel nog steeds opnamen</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Met behulp van medium kwaliteit nog steeds capturen. Miniaturen zullen sneller laden, maar live streams, losgelaten of zeer oude video\'s kunnen lege miniaturen laten zien</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Gebruik nog steeds van hoge kwaliteit</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Videotijd om nog steeds op te nemen van</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Begin van video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Midden van de video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Einde van de video</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Pijl tijdelijk niet beschikbaar (statuscode: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Pijl tijdelijk niet beschikbaar</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Toon ReVanced aankondigingen</string>
+ <string name="revanced_announcements_summary_on">Aankondigingen worden getoond bij het opstarten</string>
+ <string name="revanced_announcements_summary_off">Aankondigingen worden niet getoond bij het opstarten</string>
+ <string name="revanced_announcements_enabled_summary">Mededelingen bij het opstarten weergeven</string>
+ <string name="revanced_announcements_connection_failed">Verbinding met aankondigingsaanbieder mislukt</string>
+ <string name="revanced_announcements_dialog_dismiss">Afwijzen</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Automatisch herhalen inschakelen</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-herhaal is ingeschakeld</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-herhaal is uitgeschakeld</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Apparaatafmetingen nabootsen</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Apparaatdimensies bespoeld\n\nHogere videokwaliteiten kunnen worden ontgrendeld, maar je kunt het afspelen van video vastmaken, een slechter leven van de batterij en onbekende bijwerkingen ervaren</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Apparaatafmetingen niet vervalst\n\nDit inschakelen kan hogere videokwaliteiten ontgrendelen</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Als dit wordt ingeschakeld kan het afspelen van video vastlopen, de batterijduur en onbekende neveneffecten doen toenemen.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore Instellingen</string>
+ <string name="microg_settings_summary">Instellingen voor GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL omleidingen omzeilen</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL-omleidingen zijn overgeslagen</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL-omleidingen worden niet gepasseerd</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Open links in browser</string>
+ <string name="revanced_external_browser_summary_on">Links extern openen</string>
+ <string name="revanced_external_browser_summary_off">Koppelingen openen in app</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Achtergrond afspelen</string>
+ <string name="revanced_background_playback_summary">Deze instelling kan worden gevonden in Instellingen -> Achtergrond</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Verwijder tracking query parameter</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Tracking query parameter is verwijderd uit links</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Tracking query parameter is niet verwijderd uit links</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Vorm zoom uitschakelen</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptics zijn uitgeschakeld</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptics zijn ingeschakeld</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatische kwaliteit</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Videokwaliteitswijzigingen onthouden</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Kwaliteitswijzigingen zijn van toepassing op alle video\'s</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Kwaliteitswijzigingen zijn alleen van toepassing op de huidige video</string>
+ <string name="revanced_video_quality_default_wifi_title">Standaard videokwaliteit op wifi-netwerk</string>
+ <string name="revanced_video_quality_default_mobile_title">Standaard videokwaliteit op mobiel netwerk</string>
+ <string name="revanced_remember_video_quality_mobile">mobiel</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Standaard %1$s kwaliteit gewijzigd naar: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Snelheids dialoog knop weergeven</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Knop wordt weergegeven</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Knop wordt niet weergegeven</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Aangepaste afspeelsnelheden</string>
+ <string name="revanced_custom_playback_speeds_summary">Toevoegen of wijzigen van de beschikbare afspeelsnelheden</string>
+ <string name="revanced_custom_playback_speeds_invalid">Aangepaste snelheden moeten kleiner zijn dan %s. Standaard waarden worden gebruikt.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Ongeldige aangepaste afspeelsnelheden. Gebruik standaard waarden.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Onthoud wijzigingen in afspeelsnelheid</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Wijzigingen in de afspeelsnelheid zijn van toepassing op alle video\'s</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Wijzigingen in afspeelsnelheid zijn alleen van toepassing op de huidige video</string>
+ <string name="revanced_playback_speed_default_title">Standaard afspeelsnelheid</string>
+ <string name="revanced_remember_playback_speed_toast">Standaardsnelheid gewijzigd naar: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Herstel oude video kwaliteit menu</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Oude video kwaliteit menu wordt weergegeven</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Het oude kwaliteitsmenu wordt niet weergegeven</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Slide om te zoeken inschakelen</string>
+ <string name="revanced_slide_to_seek_summary_on">Slide om te zoeken is ingeschakeld</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide om te zoeken is niet ingeschakeld</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Ontwijk klant</string>
+ <string name="revanced_spoof_client_screen_summary">De client bederven om afspeelproblemen te voorkomen</string>
+ <string name="revanced_spoof_client_title">Ontwijk klant</string>
+ <string name="revanced_spoof_client_summary_on">Klant is vervalst</string>
+ <string name="revanced_spoof_client_summary_off">Client is niet vervalst\n\nVideo afspelen werkt mogelijk niet</string>
+ <string name="revanced_spoof_client_user_dialog_message">Het uitschakelen van deze instelling kan problemen met het afspelen van video veroorzaken.</string>
+ <string name="revanced_spoof_client_use_ios_title">Klant naar iOS vervalsen</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">De klant is momenteel gespoofd naar iOS\n\nSide effecten zoals:\n• Geen HDR video\n• Bekijk geschiedenis kan mogelijk niet werken\n• Hogere videokwaliteiten ontbreken\n• Live streams kunnen niet worden afgespeeld als alleen audio\n• Live streams die niet beschikbaar zijn op Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">De client is momenteel ondergesneeuwd naar Android VR\n\nSide effecten inclusief:\n• Geen HDR video\n• Kinderen video\'s spelen niet af\n• Gepauzeerde video\'s kunnen willekeurig hervatten\n• Kleine kwaliteit zoekbalkminiaturen\n• Download actieknop is altijd verborgen\n• Eindscherm kaarten zijn altijd verborgen</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Klant miniaturen niet beschikbaar (API timed out)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Klant miniaturen tijdelijk niet beschikbaar: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Handtekening nabootsen</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Handtekening nabootsen om afspeelproblemen te voorkomen</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Handtekening nabootsen</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">App signature gespoofed\n\nSide effecten omvatten:\n• Verbeterde bitrate is niet beschikbaar\n• Video\'s kunnen niet worden gedownload\n• Geen zoekbalk miniaturen voor betaalde video\'s</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">App handtekening niet vervalst door een\n\nVideo afspelen werkt mogelijk niet</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Als je deze instelling uitschakelt, ontstaan er problemen bij het afspelen van de video.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Handtekening nabootsen in feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">App signature vervalste\n\nSide effecten omvatten:\n• Feed video\'s missen ondertitels\n• Automatisch afgespeelde feed video\'s verschijnen in je watch geschiedenis</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">App handtekening niet gespoofed voor feed video\'s\n\nFeed zullen minder dan 1 minuut afspelen voor het afspelen van problemen</string>
+ <string name="revanced_spoof_storyboard_title">Verhaalbord nabootsen</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard vervalst</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard niet vervalst\n\nSide effecten zijn:\n• Geen omgevingsmodus\n• Zoekbar miniaturen zijn verborgen</string>
+ <string name="revanced_spoof_storyboard_timeout">Verhaalbord tijdelijk niet beschikbaar (API timed out)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Verhaalbord tijdelijk niet beschikbaar: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Inschakelen automatische HDR helderheid</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatische HDR helderheid is ingeschakeld</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automatische HDR helderheid is uitgeschakeld</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Audio-advertenties blokkeren</string>
+ <string name="revanced_block_audio_ads_summary_on">Audio-advertenties zijn geblokkeerd</string>
+ <string name="revanced_block_audio_ads_summary_off">Audio-advertenties zijn gedeblokkeerd</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s is niet beschikbaar. Advertenties kunnen worden weergegeven. Probeer over te schakelen naar een andere block-service in de instellingen.</string>
+ <string name="revanced_embedded_ads_service_failed">%s server gaf een fout. Advertenties kunnen worden weergegeven. Probeer over te schakelen naar een andere advertentie blok service in instellingen.</string>
+ <string name="revanced_block_embedded_ads_title">Ingesloten videoadvertenties blokkeren</string>
+ <string name="revanced_block_embedded_ads_entry_1">Uitgeschakeld</string>
+ <string name="revanced_block_embedded_ads_entry_2">Onduidelijke proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">Paarse AdBlock-proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Video-advertenties blokkeren</string>
+ <string name="revanced_block_video_ads_summary_on">Video-advertenties zijn geblokkeerd</string>
+ <string name="revanced_block_video_ads_summary_off">Video-advertenties zijn gedeblokkeerd</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">bericht verwijderd</string>
+ <string name="revanced_show_deleted_messages_title">Toon verwijderde berichten</string>
+ <string name="revanced_show_deleted_messages_entry_1">Verwijderde berichten niet weergeven</string>
+ <string name="revanced_show_deleted_messages_entry_2">Verberg verwijderde berichten achter een spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Toon verwijderde berichten als gekruiste tekst</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Automatisch ophalen Kanaal Punten</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanaalpunten worden automatisch opgeëist</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanaalpunten worden niet automatisch opgeëist</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch debugmodus inschakelen</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch debugmodus is ingeschakeld (niet aanbevolen)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch debug modus is uitgeschakeld</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Verbeterde instellingen</string>
+ <string name="revanced_ads_screen_title">Advertenties</string>
+ <string name="revanced_ads_screen_summary">Instellingen voor advertentieblokkering</string>
+ <string name="revanced_chat_screen_title">Chatten</string>
+ <string name="revanced_chat_screen_summary">Chat instellingen</string>
+ <string name="revanced_misc_screen_title">Diversen</string>
+ <string name="revanced_misc_screen_summary">Overige instellingen</string>
+ <string name="revanced_general_category_title">Algemene instellingen</string>
+ <string name="revanced_other_category_title">Andere instellingen</string>
+ <string name="revanced_client_ads_category_title">Client-side advertenties</string>
+ <string name="revanced_surestream_ads_category_title">Server-side surestream advertenties</string>
+ <string name="revanced_twitch_debug_title">Logboek foutopsporing</string>
+ <string name="revanced_twitch_debug_summary_on">Debug logs zijn ingeschakeld</string>
+ <string name="revanced_twitch_debug_summary_off">Debug logs zijn uitgeschakeld</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-or-rIN/strings.xml b/src/main/resources/addresources/values-or-rIN/strings.xml
new file mode 100644
index 0000000000..19466dfc26
--- /dev/null
+++ b/src/main/resources/addresources/values-or-rIN/strings.xml
@@ -0,0 +1,266 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Reset</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">ସମ୍ବନ୍ଧରେ</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">ସମ୍ବନ୍ଧରେ</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">ରୂପ</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Loading...</string>
+ <string name="revanced_sb_reset">Reset</string>
+ <string name="revanced_sb_about">ସମ୍ବନ୍ଧରେ</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">ଡିଫଲ୍ଟ</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Disabled</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-pa-rIN/strings.xml b/src/main/resources/addresources/values-pa-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-pa-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-pl-rPL/strings.xml b/src/main/resources/addresources/values-pl-rPL/strings.xml
new file mode 100644
index 0000000000..0e011e292d
--- /dev/null
+++ b/src/main/resources/addresources/values-pl-rPL/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Czy chcesz kontynuować?</string>
+ <string name="revanced_settings_reset">Zresetuj</string>
+ <string name="revanced_settings_restart_title">Odśwież i uruchom ponownie</string>
+ <string name="revanced_settings_restart">Uruchom ponownie</string>
+ <string name="revanced_settings_import">Zaimportuj</string>
+ <string name="revanced_settings_import_copy">Skopiuj</string>
+ <string name="revanced_settings_import_reset">Przywrócono domyślne ustawienia ReVanced</string>
+ <string name="revanced_settings_import_success">Zaimportowano ustawienia %d</string>
+ <string name="revanced_settings_import_failure_parse">Importowanie nie powiodło się: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore nie jest zainstalowany. Zainstaluj go.</string>
+ <string name="gms_core_dialog_title">Wymagane działanie</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore nie ma uprawnień do działania w tle.\n\nPostępuj zgodnie z przewodnikiem \"Nie zabijaj mojej aplikacji\" dla swojego telefonu i zastosuj instrukcje do aplikacji MicroG.\n\nJest to wymagane do działania aplikacji.</string>
+ <string name="gms_core_dialog_open_website_text">Otwórz stronę</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Optymalizacja baterii MicroG GmsCore musi być wyłączona, aby zapobiec problemom.\n\Kontynuuj i wyłącz optymalizację baterii.</string>
+ <string name="gms_core_dialog_continue_text">Kontynuuj</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Używasz wersji <i>%s</i> Łatek ReVanced</string>
+ <string name="revanced_settings_about_links_dev_header">Uwaga</string>
+ <string name="revanced_settings_about_links_dev_body">Ta wersja jest wersją wstępną i mogą wystąpić nieoczekiwane problemy</string>
+ <string name="revanced_settings_about_links_header">Oficjalne linki</string>
+ <string name="revanced_pref_import_export_title">Zaimportuj / Wyeksportuj</string>
+ <string name="revanced_pref_import_export_summary">Zaimportuj / Wyeksportuj ustawienia ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">O aplikacji</string>
+ <string name="revanced_settings_screen_01_ads_title">Reklamy</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternatywne miniaturki</string>
+ <string name="revanced_settings_screen_03_feed_title">Strona</string>
+ <string name="revanced_settings_screen_04_player_title">Odtwarzacz</string>
+ <string name="revanced_settings_screen_05_general_title">Ogólny układ</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shortsy</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Pasek wyszukiwania</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Sterowanie przesuwaniem</string>
+ <string name="revanced_settings_screen_11_misc_title">Pozostałe</string>
+ <string name="revanced_settings_screen_12_video_title">Wideo</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Debugowanie</string>
+ <string name="revanced_debug_screen_summary">Włącz lub wyłącz opcje debugowania</string>
+ <string name="revanced_debug_title">Logi do debugowania</string>
+ <string name="revanced_debug_summary_on">Włączone</string>
+ <string name="revanced_debug_summary_off">Wyłączone</string>
+ <string name="revanced_debug_protobuffer_title">Logi protokołu bufora</string>
+ <string name="revanced_debug_protobuffer_summary_on">Logi do debugowania zawierają bufory</string>
+ <string name="revanced_debug_protobuffer_summary_off">Logi do debugowania nie zawierają buforów</string>
+ <string name="revanced_debug_stacktrace_title">Logi śladów stosów</string>
+ <string name="revanced_debug_stacktrace_summary_on">Logi do debugowania zawierają ślady stosów</string>
+ <string name="revanced_debug_stacktrace_summary_off">Logi do debugowania nie zawierają śladów stosów</string>
+ <string name="revanced_debug_toast_on_error_title">Komunikaty o błędach ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Widoczne</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Niewidoczne</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Wyłączanie komunikatów o błędach ukrywa wszystkie komunikaty o błędach ReVanced.\n\nNie będziesz powiadamiany o żadnych nieoczekiwanych zdarzeniach.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Wyłącz polubienie/subskrybuj podświetlenie przycisków</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Przycisk polubienia i subskrybuj nie pojawi się po wzmiance</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Przycisk polubienia i subskrybuj się po wzmiance</string>
+ <string name="revanced_hide_gray_separator_title">Szare separatory</string>
+ <string name="revanced_hide_gray_separator_summary_on">Ukryte</string>
+ <string name="revanced_hide_gray_separator_summary_off">Widoczne</string>
+ <string name="revanced_hide_channel_watermark_title">Znaki wodne kanałów</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Ukryte</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Widoczne</string>
+ <string name="revanced_hide_horizontal_shelves_title">Poziome półki</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Ukryte są półki:\n• Z najnowszymi informacjami\n• Z wideo, które nie zostały dokończone\n• Od odkrywania kanałów\n• Od kupowania\n• Z wideo, które zostały obejrzane</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Widoczne</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Przycisk \'Dołącz\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Ukryty</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Widoczny</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Półka \'Dla ciebie\' na stronach kanałów</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Ukryta</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Widoczna</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Przycisk \'Powiadom mnie\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Ukryty</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Widoczny</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Rekomendacje \'Inni widzowie obejrzeli też ten film\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Ukryte</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Widoczne</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Przycisk \'Pokaż więcej\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Ukryty</string>
+ <string name="revanced_hide_show_more_button_summary_off">Widoczny</string>
+ <string name="revanced_hide_timed_reactions_title">Reakcje czasowe</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Ukryte</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Widoczne</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ukryj nagłówek półki wyników wyszukiwania</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Nagłówek półki jest ukryty</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Nagłówek półki jest pokazany</string>
+ <string name="revanced_hide_channel_guidelines_title">Ukryj wytyczne kanału</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Wytyczne kanału są ukryte</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Wytyczne kanału są wyświetlane</string>
+ <string name="revanced_hide_expandable_chip_title">Ukryj rozszerzalny chipy pod filmami</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Rozwijalne chipy są ukryte</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Rozwijalne chipy są wyświetlane</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ukryj stopkę menu jakości wideo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Stopka menu jakości wideo jest ukryta</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Stopka menu jakości wideo jest pokazana</string>
+ <string name="revanced_hide_community_posts_title">Ukryj posty społeczności</string>
+ <string name="revanced_hide_community_posts_summary_on">Posty społeczności są ukryte</string>
+ <string name="revanced_hide_community_posts_summary_off">Posty społeczności są wyświetlane</string>
+ <string name="revanced_hide_compact_banner_title">Ukryj kompaktowe banery</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompaktowe banery są ukryte</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompaktowe banery są wyświetlane</string>
+ <string name="revanced_hide_movies_section_title">Ukryj sekcję filmów</string>
+ <string name="revanced_hide_movies_section_summary_on">Sekcja filmów jest ukryta</string>
+ <string name="revanced_hide_movies_section_summary_off">Sekcja filmów jest wyświetlana</string>
+ <string name="revanced_hide_feed_survey_title">Ukryj ankiety</string>
+ <string name="revanced_hide_feed_survey_summary_on">Ankiety RSS są ukryte</string>
+ <string name="revanced_hide_feed_survey_summary_off">Pokazane są ankiety RSS</string>
+ <string name="revanced_hide_community_guidelines_title">Ukryj wytyczne społeczności</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Wytyczne Wspólnoty są ukryte</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Wskazane są wytyczne Wspólnoty</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ukryj wytyczne społeczności subskrybentów</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Wytyczne społeczności subskrybentów są ukryte</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Wytyczne społeczności subskrybentów są wyświetlane</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ukryj półkę członków kanału</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Półka członka kanału jest ukryta</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Półka członka kanału jest pokazana</string>
+ <string name="revanced_hide_emergency_box_title">Ukryj skrzynki alarmowe</string>
+ <string name="revanced_hide_emergency_box_summary_on">Skrzynki alarmowe są ukryte</string>
+ <string name="revanced_hide_emergency_box_summary_off">Wyświetlane są skrzynki alarmowe</string>
+ <string name="revanced_hide_info_panels_title">Ukryj panele informacyjne</string>
+ <string name="revanced_hide_info_panels_summary_on">Panele informacyjne są ukryte</string>
+ <string name="revanced_hide_info_panels_summary_off">Wyświetlane są panele informacyjne</string>
+ <string name="revanced_hide_medical_panels_title">Ukryj panele medyczne</string>
+ <string name="revanced_hide_medical_panels_summary_on">Panele medyczne są ukryte</string>
+ <string name="revanced_hide_medical_panels_summary_off">Pokazywane są panele medyczne</string>
+ <string name="revanced_hide_channel_bar_title">Ukryj pasek kanału</string>
+ <string name="revanced_hide_channel_bar_summary_on">Pasek kanału jest ukryty</string>
+ <string name="revanced_hide_channel_bar_summary_off">Pasek kanału jest wyświetlany</string>
+ <string name="revanced_hide_playables_title">Ukryj Playables</string>
+ <string name="revanced_hide_playables_summary_on">Playables są ukryte</string>
+ <string name="revanced_hide_playables_summary_off">Playables są wyświetlane</string>
+ <string name="revanced_hide_quick_actions_title">Ukryj szybkie akcje na pełnym ekranie</string>
+ <string name="revanced_hide_quick_actions_summary_on">Szybkie akcje są ukryte</string>
+ <string name="revanced_hide_quick_actions_summary_off">Wyświetlane są szybkie akcje</string>
+ <string name="revanced_hide_related_videos_title">Ukryj powiązane filmy w szybkich akcjach</string>
+ <string name="revanced_hide_related_videos_summary_on">Powiązane filmy są ukryte</string>
+ <string name="revanced_hide_related_videos_summary_off">Powiązane filmy są wyświetlane</string>
+ <string name="revanced_hide_image_shelf_title">Ukryj półkę obrazu w wynikach wyszukiwania</string>
+ <string name="revanced_hide_image_shelf_summary_on">Półka obrazu jest ukryta</string>
+ <string name="revanced_hide_image_shelf_summary_off">Półka obrazu jest wyświetlana</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ukryj najnowsze posty</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Najnowsze posty są ukryte</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Najnowsze posty są wyświetlane</string>
+ <string name="revanced_hide_mix_playlists_title">Ukryj mieszane listy odtwarzania</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Wymieszane listy odtwarzania są ukryte</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Wyświetlane są listy odtwarzania</string>
+ <string name="revanced_hide_artist_cards_title">Ukryj karty artystów</string>
+ <string name="revanced_hide_artist_cards_summary_on">Karty wykonawcy są ukryte</string>
+ <string name="revanced_hide_artist_cards_summary_off">Karty artystów są wyświetlane</string>
+ <string name="revanced_hide_chips_shelf_title">Ukryj półkę chipów</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Półka czipów jest ukryta</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Półka na czipy jest pokazana</string>
+ <string name="revanced_hide_attributes_section_title">Ukryj sekcję atrybutów</string>
+ <string name="revanced_hide_attributes_section_summary_on">Sekcje \'Polecane miejsca\', gry i muzyka są ukryte</string>
+ <string name="revanced_hide_attributes_section_summary_off">Wyświetlane są sekcje \'Polecane miejsca\', gry i muzyka</string>
+ <string name="revanced_hide_chapters_section_title">Ukryj sekcję rozdziałów</string>
+ <string name="revanced_hide_chapters_section_summary_on">Sekcja rozdziałów jest ukryta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Sekcja rozdziałów jest pokazana</string>
+ <string name="revanced_hide_podcast_section_title">Ukryj sekcję \'Przeglądaj podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">Sekcja \'Przeglądaj podcast\' jest ukryta</string>
+ <string name="revanced_hide_podcast_section_summary_off">Sekcja \'Przeglądaj podcast\' jest pokazana</string>
+ <string name="revanced_hide_info_cards_section_title">Ukryj sekcję kart informacyjnych</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Sekcja kart informacyjnych jest ukryta</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Sekcja kart informacyjnych jest wyświetlana</string>
+ <string name="revanced_hide_transcript_section_title">Ukryj sekcję transkryptu</string>
+ <string name="revanced_hide_transcript_section_summary_on">Sekcja transkryptu jest ukryta</string>
+ <string name="revanced_hide_transcript_section_summary_off">Sekcja transkryptu jest wyświetlana</string>
+ <string name="revanced_hide_description_components_screen_title">Opis wideo</string>
+ <string name="revanced_hide_description_components_screen_summary">Ukryj lub pokaż elementy opisu wideo</string>
+ <string name="revanced_custom_filter_screen_title">Własny filtr</string>
+ <string name="revanced_custom_filter_screen_summary">Ukryj komponenty za pomocą niestandardowych filtrów</string>
+ <string name="revanced_custom_filter_title">Włącz własny filtr</string>
+ <string name="revanced_custom_filter_summary_on">Filtr niestandardowy jest włączony</string>
+ <string name="revanced_custom_filter_summary_off">Filtr niestandardowy jest wyłączony</string>
+ <string name="revanced_custom_filter_strings_title">Własny filtr</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista tekstów tworzących ścieżki komponentu do filtrowania oddzielonych nową linią</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Nieprawidłowy niestandardowy filtr: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ukryj zawartość słowa kluczowego</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ukryj wyszukiwanie i kanały wideo za pomocą filtrów słów kluczowych</string>
+ <string name="revanced_hide_keyword_content_home_title">Ukryj filmy domowe słowami kluczowymi</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Filmy w zakładce głównej są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Filmy w zakładce głównej nie są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ukryj filmy subskrypcji słowami kluczowymi</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Filmy w zakładce subskrypcje są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Filmy w zakładce subskrypcje nie są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_search_title">Ukryj wyniki wyszukiwania za pomocą słów kluczowych</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Wyniki wyszukiwania są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Wyniki wyszukiwania nie są filtrowane przez słowa kluczowe</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Słowa kluczowe do ukrycia</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Słowa kluczowe i frazy do ukrycia, oddzielone nowymi wierszami\n\nSłowa z wielkimi literami w środku muszą być wpisane z obudową (np. iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">O filtrowaniu słów kluczowych</string>
+ <string name="revanced_hide_keyword_content_about_summary">Wyniki strony głównej/Subskrypcji/Wyszukiwarki są filtrowane w celu ukrycia treści pasującej do słów kluczowych\n\nOgraniczenia\n• Niektóre skróty mogą nie być ukryte\n• Niektóre komponenty interfejsu użytkownika nie mogą być ukryte\n• Wyszukiwanie słowa kluczowego może nie pokazywać wyników</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Nieprawidłowe słowo kluczowe. Nie można użyć: \'%s\' jako filtr</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Nieprawidłowe słowo kluczowe. \'%1$s\' jest mniejsze niż %2$d znaków</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Słowo kluczowe$s\' ukryje wszystkie filmy</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ukryj reklamy ogólne</string>
+ <string name="revanced_hide_general_ads_summary_on">Ogólne reklamy są ukryte</string>
+ <string name="revanced_hide_general_ads_summary_off">Ogólne reklamy są wyświetlane</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ukryj reklamy w trybie pełnoekranowym</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Reklamy pełnoekranowe są ukryte\n\nTa funkcja jest dostępna tylko dla starszych urządzeń</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Pokazywane są reklamy pełnoekranowe</string>
+ <string name="revanced_hide_buttoned_ads_title">Ukryj przyciski reklam</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Przyciskane reklamy są ukryte</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Przyciski reklam są wyświetlane</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ukryj etykietę płatnej promocji</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Płatna promocja jest ukryta</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Wyświetlono płatną etykietę promocyjną</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ukryj samosponsorowane karty</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Karty samosponsorowane są ukryte</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Pokazywane są karty samosponsorowane</string>
+ <string name="revanced_hide_products_banner_title">Ukryj baner do wyświetlania produktów</string>
+ <string name="revanced_hide_products_banner_summary_on">Baner jest ukryty</string>
+ <string name="revanced_hide_products_banner_summary_off">Baner jest pokazany</string>
+ <string name="revanced_hide_shopping_links_title">Ukryj linki do zakupów w opisie wideo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Linki do zakupów są ukryte</string>
+ <string name="revanced_hide_shopping_links_summary_off">Odnośniki do zakupów są wyświetlane</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ukryj przycisk \'Odwiedź sklep\' na stronach kanału</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Ukryty</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Widoczny</string>
+ <string name="revanced_hide_web_search_results_title">Ukryj wyniki wyszukiwania</string>
+ <string name="revanced_hide_web_search_results_summary_on">Wyniki wyszukiwania w Internecie są ukryte</string>
+ <string name="revanced_hide_web_search_results_summary_off">Wyniki wyszukiwania w Internecie są wyświetlane</string>
+ <string name="revanced_hide_merchandise_banners_title">Ukryj banery towaru</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Banery towaru są ukryte</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Banery handlowe są wyświetlane</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ukryj reklamy w trybie pełnoekranowym tylko ze starszymi urządzeniami</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ukryj promocje YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Promocje YouTube Premium w odtwarzaczu wideo są ukryte</string>
+ <string name="revanced_hide_get_premium_summary_off">Promocje YouTube Premium w odtwarzaczu wideo są wyświetlane</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ukryj reklamy wideo</string>
+ <string name="revanced_hide_video_ads_summary_on">Reklamy wideo są ukryte</string>
+ <string name="revanced_hide_video_ads_summary_off">Wyświetlane reklamy wideo</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Adres URL skopiowany do schowka</string>
+ <string name="revanced_share_copy_url_timestamp_success">Adres URL z znacznikiem czasu skopiowany</string>
+ <string name="revanced_copy_video_url_title">Pokaż przycisk kopiowania filmu URL</string>
+ <string name="revanced_copy_video_url_summary_on">Przycisk jest wyświetlony. Dotknij, aby skopiować adres URL wideo. Dotknij i przytrzymaj aby skopiować adres wideo ze znacznikiem czasu</string>
+ <string name="revanced_copy_video_url_summary_off">Przycisk nie jest wyświetlany</string>
+ <string name="revanced_copy_video_url_timestamp_title">Pokaż przycisk URL kopii znacznika czasu</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Przycisk jest wyświetlony. Dotknij, aby skopiować URL wideo ze znacznikiem czasu. Dotknij i przytrzymaj aby skopiować film bez znacznika czasu</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Przycisk nie jest wyświetlany</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Usuń okno dialogowe przeglądarki</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Okno dialogowe zostanie usunięte</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Okno dialogowe zostanie wyświetlone</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">To nie pomija ograniczeń wiekowych i akceptuje je automatycznie.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Pobieranie zewnętrzne</string>
+ <string name="revanced_external_downloader_screen_summary">Ustawienia dla zewnętrznego pobierania</string>
+ <string name="revanced_external_downloader_title">Pokaż zewnętrzny przycisk pobierania</string>
+ <string name="revanced_external_downloader_summary_on">Przycisk pobierania wyświetlany w odtwarzaczu</string>
+ <string name="revanced_external_downloader_summary_off">Przycisk pobierania nie jest wyświetlany w odtwarzaczu</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Zastąp przycisk akcji pobierania</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Przycisk pobierania otwiera zewnętrzny plik pobierania</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Przycisk pobierania otwiera natywne pobieranie w aplikacji</string>
+ <string name="revanced_external_downloader_name_title">Nazwa pakietu do pobrania</string>
+ <string name="revanced_external_downloader_name_summary">Nazwa pakietu zainstalowanej zewnętrznej aplikacji do pobierania pliku, takiej jak NewPipe lub Pieczęć</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s nie jest zainstalowany. Zainstaluj go.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Wyłącz dokładny gest szukania</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gest jest wyłączony</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gest jest włączony</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Włącz dotknięcie paska nawigacji</string>
+ <string name="revanced_seekbar_tapping_summary_on">Naciśnięcie paska wyszukiwania jest włączone</string>
+ <string name="revanced_seekbar_tapping_summary_off">Stuknięcie paska wyszukiwania jest wyłączone</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Włącz gest jasności</string>
+ <string name="revanced_swipe_brightness_summary_on">Przesunięcie jasności jest włączone</string>
+ <string name="revanced_swipe_brightness_summary_off">Przesunięcie jasności jest wyłączone</string>
+ <string name="revanced_swipe_volume_title">Włącz gest głośności</string>
+ <string name="revanced_swipe_volume_summary_on">Przesunięcie głośności jest włączone</string>
+ <string name="revanced_swipe_volume_summary_off">Przesunięcie głośności jest wyłączone</string>
+ <string name="revanced_swipe_press_to_engage_title">Włącz gest naciśnięcia na przesunięcie</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Naciśnij do przesunięcia palcem jest włączone</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Przeciągnięcie palcem jest wyłączone</string>
+ <string name="revanced_swipe_haptic_feedback_title">Włącz wibracje</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Wibracja Haptic jest włączona</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Wibracje Haptic są wyłączone</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Zapisz i przywróć jasność</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Zapisz i przywróć jasność podczas zamykania lub wchodzenia w tryb pełnoekranowy</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Nie zapisuj i nie przywracaj jasności podczas zamykania lub wchodzenia w tryb pełnoekranowy</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Włącz gest automatycznej jasności</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Przesuń palcem w dół do najniższej wartości gestu jasności włącza automatyczną jasność</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Przesunięcie w dół do najniższej wartości nie włącza automatycznej jasności</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Auto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Limit czasu przesunięcia nakładki</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Ilość milisekund widocznych nakładek</string>
+ <string name="revanced_swipe_text_overlay_size_title">Rozmiar tekstu przesunięcia nakładki</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Rozmiar tekstu dla nakładki przesuwania</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Widoczność w tle przesunięcia</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Widoczność tła nakładki przesunięcia</string>
+ <string name="revanced_swipe_threshold_title">Próg wielkości przesunięcia</string>
+ <string name="revanced_swipe_threshold_summary">Ilość progu dla przesunięcia palcem</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Wyłącz automatyczne podpisy</string>
+ <string name="revanced_auto_captions_summary_on">Automatyczne podpisy są wyłączone</string>
+ <string name="revanced_auto_captions_summary_off">Automatyczne podpisy są włączone</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Przyciski akcji</string>
+ <string name="revanced_hide_buttons_screen_summary">Ukryj lub pokaż przyciski pod filmami</string>
+ <string name="revanced_hide_like_dislike_button_title">Ukryj polubienie i nie lubię</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Przyciski polubienia i nielubiania są ukryte</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Przyciski polubienia i nielubiania są wyświetlane</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ukryj udostępnianie</string>
+ <string name="revanced_hide_share_button_summary_on">Przycisk udostępniania jest ukryty</string>
+ <string name="revanced_hide_share_button_summary_off">Przycisk udostępniania jest pokazany</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ukryj raport</string>
+ <string name="revanced_hide_report_button_summary_on">Przycisk raportu jest ukryty</string>
+ <string name="revanced_hide_report_button_summary_off">Przycisk raportu jest pokazany</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ukryj remiks</string>
+ <string name="revanced_hide_remix_button_summary_on">Przycisk remiksu jest ukryty</string>
+ <string name="revanced_hide_remix_button_summary_off">Przycisk remiksu jest pokazany</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ukryj pobieranie</string>
+ <string name="revanced_hide_download_button_summary_on">Przycisk pobierania jest ukryty</string>
+ <string name="revanced_hide_download_button_summary_off">Przycisk pobierania jest pokazany</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ukryj podziękowania</string>
+ <string name="revanced_hide_thanks_button_summary_on">Przycisk podziękowania jest ukryty</string>
+ <string name="revanced_hide_thanks_button_summary_off">Przycisk podziękowania jest pokazany</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Przycisk klipu jest ukryty</string>
+ <string name="revanced_hide_clip_button_summary_off">Przycisk klipu jest pokazany</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ukryj zapis na liście odtwarzania</string>
+ <string name="revanced_hide_playlist_button_summary_on">Zapisz do przycisku playlisty jest ukryty</string>
+ <string name="revanced_hide_playlist_button_summary_off">Pokaż przycisk Zapisz do playlisty</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ukryj przycisk automatycznego odtwarzania</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Przycisk automatycznego odtwarzania jest ukryty</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Przycisk automatycznego odtwarzania jest wyświetlany</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Przycisk ukrycia podpisów</string>
+ <string name="revanced_hide_captions_button_summary_on">Przycisk podpisów jest ukryty</string>
+ <string name="revanced_hide_captions_button_summary_off">Przycisk podpisów jest pokazany</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ukryj przycisk Cofania</string>
+ <string name="revanced_hide_cast_button_summary_on">Przycisk Przesyłaj jest ukryty</string>
+ <string name="revanced_hide_cast_button_summary_off">Przycisk Przesyłaj jest widoczny</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ukryj lub zmień przyciski na pasku nawigacji</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ukryj stronę główną</string>
+ <string name="revanced_hide_home_button_summary_on">Przycisk Home jest ukryty</string>
+ <string name="revanced_hide_home_button_summary_off">Przycisk Home jest pokazany</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ukryj Spodnie</string>
+ <string name="revanced_hide_shorts_button_summary_on">Przycisk shorts jest ukryty</string>
+ <string name="revanced_hide_shorts_button_summary_off">Przycisk shorts jest widoczny</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ukryj Utwórz</string>
+ <string name="revanced_hide_create_button_summary_on">Przycisk Utwórz jest ukryty</string>
+ <string name="revanced_hide_create_button_summary_off">Przycisk Utwórz jest pokazany</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ukryj subskrypcje</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Przycisk subskrypcji jest ukryty</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Przycisk subskrypcji jest pokazany</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Przełącz tworzenie z powiadomieniami</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Przycisk Utwórz jest przełączony za pomocą przycisku Powiadomienia\n\nUwaga: Włączenie tego również wymusza ukrycie reklam wideo</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Przycisk Utwórz nie jest przełączony za pomocą przycisku Powiadomienia</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ukryj etykiety przycisków nawigacji</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etykiety są ukryte</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etykiety są wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Ukryj lub pokaż elementy menu flyout gracza</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ukryj podpisy</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Menu podpisów jest ukryte</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menu podpisów jest wyświetlane</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ukryj dodatkowe ustawienia</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Dodatkowe menu ustawień jest ukryte</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Dodatkowe menu ustawień jest wyświetlane</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ukryj wideo w pętli</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Menu wideo w pętli jest ukryte</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Menu wideo w pętli jest wyświetlane</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ukryj tryb Ambient</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menu trybu otoczenia jest ukryte</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Wyświetlane jest menu trybu otoczenia</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ukryj opinię o pomocy &</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Menu pomocy & jest ukryte</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Pokaż menu opinii &</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ukryj prędkość odtwarzania</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menu prędkości odtwarzania jest ukryte</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Menu prędkości odtwarzania jest wyświetlane</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ukryj więcej informacji</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Menu więcej informacji jest ukryte</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Wyświetlane jest więcej informacji</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ukryj ekran blokady</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Menu ekranu blokady jest ukryte</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Wyświetlane jest menu ekranu blokady</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ukryj ścieżkę audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Menu ścieżki audio jest ukryte</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Menu ścieżki audio jest wyświetlane</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ukryj wachtę w VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Obejrzyj menu VR jest ukryte</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Obejrzyj w menu VR</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ukryj poprzednie przyciski & następnego filmu</string>
+ <string name="revanced_hide_player_buttons_summary_on">Przyciski są ukryte</string>
+ <string name="revanced_hide_player_buttons_summary_off">Przyciski są wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ukryj karty albumu</string>
+ <string name="revanced_hide_album_cards_summary_on">Karty albumów są ukryte</string>
+ <string name="revanced_hide_album_cards_summary_off">Karty albumów są wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Komentarze</string>
+ <string name="revanced_comments_screen_summary">Ukryj lub pokaż składniki sekcji komentarzy</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ukryj nagłówek \'Komentarze wg użytkowników\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Nagłówek \'Komentarze użytkowników\' jest ukryty</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Wyświetlony jest nagłówek \'Komentarze użytkowników\'</string>
+ <string name="revanced_hide_comments_section_title">Ukryj sekcję komentarzy</string>
+ <string name="revanced_hide_comments_section_summary_on">Sekcja komentarzy jest ukryta</string>
+ <string name="revanced_hide_comments_section_summary_off">Sekcja komentarzy jest wyświetlana</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ukryj przycisk \'Utwórz krótki\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Przycisk \'Utwórz krótki\' jest ukryty</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Przycisk \'Utwórz krótki\' jest pokazany</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ukryj podgląd komentarza</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Podgląd komentarza jest ukryty</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Podgląd komentarza jest wyświetlany</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ukryj przycisk podziękowania</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Przycisk podziękowania jest ukryty</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Przycisk podziękowania jest pokazany</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ukryj znaczniki czasu i przyciski emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Przyciski znacznika czasu i emoji są ukryte</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Wyświetlane są przyciski znacznika czasu i emoji</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ukryj program finansowania społecznościowego</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding box jest ukryty</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Pokazywany jest program Crowdfunding</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ukryj karty ekranu końcowego</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Karty ekranu końcowego są ukryte</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Karty ekranu końcowego są wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Pasek filtra</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ukryj lub pokaż pasek filtrów w kanale, wyszukiwaniu i powiązanych filmach</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ukryj w kanale</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Ukryte w kanale</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Pokazane w kanale</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ukryj w wyszukiwaniu</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Ukryte w wyszukiwaniu</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Pokaż w wyszukiwarce</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ukryj w powiązanych filmach</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Ukryte w powiązanych filmach</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Wyświetlane w powiązanych filmach</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ukryj pływający przycisk mikrofonu</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Przycisk mikrofonu ukryty</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Przycisk mikrofonu pokazany</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Wyłącz tryb otoczenia na pełnym ekranie</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Tryb otoczenia wyłączony</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Tryb Ambient włączony</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ukryj karty informacyjne</string>
+ <string name="revanced_hide_info_cards_summary_on">Karty informacyjne są ukryte</string>
+ <string name="revanced_hide_info_cards_summary_off">Karty informacyjne są wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Wyłącz animacje liczb kroczących</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Numery rolowania nie są animowane</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Numery toczenia są animowane</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ukryj pasek nawigacji w odtwarzaczu wideo</string>
+ <string name="revanced_hide_seekbar_summary_on">Pasek wyszukiwania odtwarzacza wideo jest ukryty</string>
+ <string name="revanced_hide_seekbar_summary_off">Pasek przeszukiwania odtwarzacza wideo jest wyświetlany</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ukryj pasek przeszukiwania w miniaturach wideo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Pasek miniatur jest ukryty</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Pasek miniatur jest wyświetlany</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ukryj Skróty w kanale głównym</string>
+ <string name="revanced_hide_shorts_home_summary_on">Skróty w kanale głównym są ukryte</string>
+ <string name="revanced_hide_shorts_home_summary_off">Skróty w kanale głównym są wyświetlane</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ukryj Skróty w kanale subskrypcji</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Skróty w kanale subskrypcji są ukryte</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Skróty w kanale subskrypcji są wyświetlane</string>
+ <string name="revanced_hide_shorts_search_title">Ukryj Skróty w wynikach wyszukiwania</string>
+ <string name="revanced_hide_shorts_search_summary_on">Skróty w wynikach wyszukiwania są ukryte</string>
+ <string name="revanced_hide_shorts_search_summary_off">Skróty w wynikach wyszukiwania są wyświetlane</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ukryj przycisk dołączenia</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Przycisk dołączenia jest ukryty</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Przycisk dołączenia jest pokazany</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ukryj przycisk subskrypcji</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Przycisk subskrypcji jest ukryty</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Przycisk subskrypcji jest pokazany</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ukryj wstrzymane przyciski nakładki</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Zatrzymane przyciski nakładki są ukryte</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Wyświetlane są wstrzymane przyciski nakładki</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ukryj przycisk sklepu</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Przycisk Sklep jest ukryty</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Przycisk sklepu jest pokazany</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ukryj przycisk super podziękowania</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Przycisk Super dziękuję jest ukryty</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Przycisk Super dziękuję jest pokazany</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ukryj oznakowane produkty</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Produkty oznaczone tagiem są ukryte</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Produkty oznaczone tagiem są wyświetlane</string>
+ <string name="revanced_hide_shorts_location_label_title">Ukryj etykietę lokalizacji</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Etykieta lokalizacji jest ukryta</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Etykieta lokalizacji jest wyświetlana</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ukryj dźwięk do przycisku playlisty</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Zapisz dźwięk na liście odtwarzania jest ukryty</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Zapisz dźwięk na liście odtwarzania</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ukryj sugestie wyszukiwania</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Sugestie wyszukiwania są ukryte</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Sugestie wyszukiwania są wyświetlane</string>
+ <string name="revanced_hide_shorts_like_button_title">Ukryj przycisk polubień</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Przycisk polubienia jest ukryty</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Przycisk polubienia jest pokazany</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ukryj przycisk odlubiania</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Przycisk nielubiania jest ukryty</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Przycisk nielubiania jest wyświetlany</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ukryj przycisk komentarzy</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Przycisk komentarzy jest ukryty</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Przycisk komentarzy jest wyświetlany</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ukryj przycisk remiksowania</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Przycisk remiksu jest ukryty</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Przycisk remiksu jest pokazany</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ukryj przycisk udostępniania</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Przycisk udostępniania jest ukryty</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Przycisk udostępniania jest pokazany</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ukryj panel informacji</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Panel informacji jest ukryty</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Panel informacji jest wyświetlany</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ukryj pasek kanału</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Pasek kanału jest ukryty</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Pasek kanału jest wyświetlany</string>
+ <string name="revanced_hide_shorts_video_title_title">Ukryj tytuł wideo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Tytuł jest ukryty</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Tytuł jest wyświetlany</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ukryj etykietę metadanych dźwięku</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etykieta metadanych jest ukryta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etykieta metadanych jest wyświetlana</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ukryj pełną etykietę łącza wideo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etykieta łącza wideo jest ukryta</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etykieta linku wideo jest wyświetlana</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ukryj przycisk dźwięku</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Przycisk dźwięku jest ukryty</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Przycisk dźwięku jest wyświetlany</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ukryj pasek nawigacji</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Pasek nawigacji jest ukryty</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Pasek nawigacji jest wyświetlany</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Wyłącz sugerowany ekran końcowy wideo</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Sugerowane filmy zostaną wyłączone</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Sugerowane filmy będą wyświetlane</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ukryj znacznik czasu wideo</string>
+ <string name="revanced_hide_timestamp_summary_on">Znacznik czasu jest ukryty</string>
+ <string name="revanced_hide_timestamp_summary_off">Znacznik czasu jest wyświetlany</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ukryj wyskakujące panele</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Panel wyskakujących okienek graczy jest ukryty</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Wyskakujące panele graczy są wyświetlane</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Przezroczystość nakładki odtwarzacza</string>
+ <string name="revanced_player_overlay_opacity_summary">Wartość przezroczystości między 0-100, gdzie 0 jest przezroczysty</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Przezroczystość nakładki odtwarzacza musi być pomiędzy 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Ukryte</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout"></string>
+ <string name="revanced_ryd_failure_connection_status_code">Brak polubień (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Łapki w dół nie są dostępne (limit API użytkownika)</string>
+ <string name="revanced_ryd_failure_generic">Brak polubień (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Odśwież wideo, aby głosować używając zwróć YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Nie polubiono</string>
+ <string name="revanced_ryd_enable_summary_off">Nie pokazano polubień</string>
+ <string name="revanced_ryd_shorts_title">Pokaż nielubienie na Skrótach</string>
+ <string name="revanced_ryd_shorts_summary_on">Nie lubi wyświetlane na Skrótach</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Brak polubień wyświetlanych na skrótach\n\nOgraniczenie: brak polubień w trybie incognito</string>
+ <string name="revanced_ryd_shorts_summary_off">Nie lubię ukryć na Skrótach</string>
+ <string name="revanced_ryd_dislike_percentage_title">Nie lubi jako procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Nie lubi wyświetlane jako procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Nie lubi wyświetlane jako liczba</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Przycisk kompaktowy jak</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Przycisk polubienia stylizowany dla minimalnej szerokości</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Przycisk polubienia stylizowany dla najlepszego wyglądu</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Pokaż toast jeśli API nie jest dostępne</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast jest wyświetlany, jeśli Zwrot YouTube nie jest dostępny</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast nie jest wyświetlany, jeśli Zwrot YouTube nie jest dostępny</string>
+ <string name="revanced_ryd_about">O programie</string>
+ <string name="revanced_ryd_attribution_summary">Dane są dostarczane przez API Zwrotu YouTube Dislike API. Dotknij tutaj, aby dowiedzieć się więcej</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Zwróć statystyki API tego urządzenia YouTubeDislike</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Czas reakcji API, średnia</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Czas odpowiedzi API, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Czas reakcji API, maksymalny</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Czas odpowiedzi API, ostatni film</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Nie polubiono tymczasowo niedostępne - limit czasu API klienta w efekcie</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API pobiera głosy, liczba połączeń</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nie wykonano połączeń sieciowych</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d połączenia sieciowe wykonane</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API pobiera głosy, liczba czasów</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Upłynął limit czasu połączenia sieciowego</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d połączenia sieciowe przekroczyły limit czasu</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limity prędkości klienta API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nie napotkano limitów cenowych klienta</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary"></string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisekund</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Włącz szeroki pasek wyszukiwania</string>
+ <string name="revanced_wide_searchbar_summary_on">Szeroki pasek wyszukiwania jest włączony</string>
+ <string name="revanced_wide_searchbar_summary_off">Szeroki pasek wyszukiwania jest wyłączony</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Przywróć stare miniatury paska nawigacji</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Miniatury paska wyszukiwania pojawią się nad paskiem wyszukiwania</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Miniaturki paska wyszukiwania pojawią się na pełnym ekranie</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Włącz SponsorBlock\'a</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock jest systemem crowd-sourcing do pominięcia irytujących części filmów YouTube</string>
+ <string name="revanced_sb_appearance_category">Wygląd</string>
+ <string name="revanced_sb_enable_voting">Pokaż przycisk głosowania</string>
+ <string name="revanced_sb_enable_voting_sum_on">Przycisk głosowania segmentu jest pokazany</string>
+ <string name="revanced_sb_enable_voting_sum_off">Przycisk głosowania segmentu nie jest pokazany</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Użyj kompaktowego przycisku Pomiń</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Pomiń przycisk stylizowany dla minimalnej szerokości</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Pomiń przycisk stylizowany dla najlepszego wyglądu</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Automatycznie ukryj przycisk Pomiń</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Pomiń przycisk ukrywa się po kilku sekundach</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Pomiń przycisk wyświetlany dla całego segmentu</string>
+ <string name="revanced_sb_general_skiptoast">Pokaż toast podczas automatycznego pominięcia</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast jest wyświetlany, gdy segment zostanie automatycznie pominięty. Dotknij tutaj, aby zobaczyć przykład</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast nie jest wyświetlany. Dotknij tutaj, aby zobaczyć przykład</string>
+ <string name="revanced_sb_general_time_without">Pokaż długość wideo bez segmentów</string>
+ <string name="revanced_sb_general_time_without_sum_on">Długość wideo minus wszystkie segmenty, wyświetlane w nawiasach obok pełnej długości wideo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Pełna długość wideo wyświetlana</string>
+ <string name="revanced_sb_create_segment_category">Tworzenie nowych segmentów</string>
+ <string name="revanced_sb_enable_create_segment">Pokaż przycisk Utwórz nowy segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Pokaż przycisk tworzenia nowego segmentu</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Utwórz nowy przycisk segmentu nie jest wyświetlany</string>
+ <string name="revanced_sb_general_adjusting">Dostosuj nowy krok segmentu</string>
+ <string name="revanced_sb_general_adjusting_sum">Ilość milisekund przycisków dostosowania czasu podczas tworzenia nowych segmentów</string>
+ <string name="revanced_sb_general_adjusting_invalid">Wartość musi być liczbą dodatnią</string>
+ <string name="revanced_sb_guidelines_preference_title">Wyświetl wytyczne</string>
+ <string name="revanced_sb_guidelines_preference_sum">Wytyczne zawierają zasady i wskazówki dotyczące tworzenia nowych segmentów</string>
+ <string name="revanced_sb_guidelines_popup_title">Postępuj zgodnie z wytycznymi</string>
+ <string name="revanced_sb_guidelines_popup_content">Przeczytaj wytyczne SponsorBlock przed tworzeniem nowych segmentów</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Przeczytano</string>
+ <string name="revanced_sb_guidelines_popup_open">Pokaż mi</string>
+ <string name="revanced_sb_general">Główne</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Pokaż toast jeśli API nie jest dostępne</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast jest wyświetlany, jeśli SponsorBlock nie jest dostępny</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast nie jest wyświetlany, jeśli SponsorBlock nie jest dostępny</string>
+ <string name="revanced_sb_general_skipcount">Włącz śledzenie licznika pominięć</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Pozwala tablicy wyników SponsorBlock\'a wiedzieć, ile czasu zostało zapisane. Wiadomość jest wysyłana do tablicy wyników za każdym razem, gdy segment zostanie pominięty</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Pomiń licznik śledzenia nie jest włączony</string>
+ <string name="revanced_sb_general_min_duration">Minimalna długość segmentu</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmenty krótsze niż ta wartość (w sekundach) nie będą wyświetlane lub pominięte</string>
+ <string name="revanced_sb_general_uuid">Twój prywatny identyfikator użytkownika</string>
+ <string name="revanced_sb_general_uuid_sum">Ta informacja jest poufna i działa jak hasło. Użytkownik, który ma do niej dostęp, może zgłaszać treści jako ty</string>
+ <string name="revanced_sb_general_uuid_invalid">ID użytkownika prywatnego musi mieć co najmniej 30 znaków</string>
+ <string name="revanced_sb_general_api_url">Zmień link API</string>
+ <string name="revanced_sb_general_api_url_sum">Adres SponsorBlock używa do wykonywania połączeń na serwerze</string>
+ <string name="revanced_sb_api_url_reset">Zresetuj adres API</string>
+ <string name="revanced_sb_api_url_invalid">Adres API jest nieprawidłowy</string>
+ <string name="revanced_sb_api_url_changed">Adres API został zmieniony</string>
+ <string name="revanced_sb_settings_ie">Importuj/Eksportuj ustawienia</string>
+ <string name="revanced_sb_settings_copy">Kopiuj</string>
+ <string name="revanced_sb_settings_ie_sum">Twoja konfiguracja JSON SponsorBlock, którą można importować/eksportować do platformy ReVanced i innych platform SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Twoja konfiguracja JSON SponsorBlock, którą można importować/eksportować do ReVanced i innych platform SponsorBlock. Obejmuje to Twój identyfikator użytkownika prywatnego. Upewnij się, że udostępniasz go mądrze</string>
+ <string name="revanced_sb_settings_import_successful">Ustawienia zaimportowane pomyślnie</string>
+ <string name="revanced_sb_settings_import_failed">Nie udało się zaimportować: %s</string>
+ <string name="revanced_sb_settings_export_failed">Nie udało się wyeksportować: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Twoje ustawienia zawierają prywatnego użytkownika SponsorBlock.\n\nTwój identyfikator użytkownika jest jak hasło i nigdy nie powinien być udostępniany.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Nie pokazuj ponownie</string>
+ <string name="revanced_sb_diff_segments">Zmień zachowanie segmentu</string>
+ <string name="revanced_sb_segments_sponsor">Treści sponsorowane</string>
+ <string name="revanced_sb_segments_sponsor_sum">Płatna promocja, płatne rekomendacje i reklamy bezpośrednie. Nieprzeznaczone do autopromocji lub bezpłatnych wypisów dla przyczyn/twórców/stron internetowych/produktów, które lubią</string>
+ <string name="revanced_sb_segments_selfpromo">Nieopłacona/Własna promocja</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Podobnie jak w przypadku \"Sponsor\", z wyjątkiem niespłaconej lub samopromocji. Zawiera sekcje dotyczące towaru, darowizny lub informacje o kogo współpracowali</string>
+ <string name="revanced_sb_segments_interaction">Przypomnienia o interakcji (Subskrypcja)</string>
+ <string name="revanced_sb_segments_interaction_sum">Krótkie przypomnienie do polubienia, subskrybowania lub śledzenia ich treści w środku treści. Jeśli jest długa lub dotyczy czegoś konkretnego, to powinien być w trakcie samopromocji</string>
+ <string name="revanced_sb_segments_highlight">Podświetl</string>
+ <string name="revanced_sb_segments_highlight_sum">Część filmu, której szuka większość osób</string>
+ <string name="revanced_sb_segments_intro">Przerywnik/Animowane intro</string>
+ <string name="revanced_sb_segments_intro_sum">Interwał bez aktualnej zawartości. Może to być pauza, ramka statyczna lub animacja powtarzana. Nie zawiera przejść zawierających informacje</string>
+ <string name="revanced_sb_segments_outro">Ekran końcowy/Napisy</string>
+ <string name="revanced_sb_segments_outro_sum">Kredyty lub kiedy pojawi się endcard YouTube. Nie dla wniosków z informacją</string>
+ <string name="revanced_sb_segments_preview">Podgląd/Podejrzeć/Podejdź/Podejdź/Podejdź/Podejdź/Podejdź/Podejdź/Podejdź/Podejdź/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Zbiór klipów pokazujących to, co się pojawia lub co stało się w filmie lub innych filmach serii, jeżeli wszystkie informacje są powtarzane w innym miejscu</string>
+ <string name="revanced_sb_segments_filler">Nietematyczny Wypełniacz/Żart</string>
+ <string name="revanced_sb_segments_filler_sum">Sceny styczne dodawane tylko dla wypełniacza lub humoru, które nie są wymagane do zrozumienia głównej treści wideo. Nie obejmuje segmentów zawierających szczegóły kontekstu lub tła</string>
+ <string name="revanced_sb_segments_nomusic">Muzyka: Sekcja bez muzyki</string>
+ <string name="revanced_sb_segments_nomusic_sum">Tylko do użytku w filmach muzycznych. Sekcje muzyki bez muzyki, które nie są już objęte inną kategorią</string>
+ <string name="revanced_sb_skip_button_compact">Pomiń</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Podświetl</string>
+ <string name="revanced_sb_skip_button_sponsor">Pomiń sponsora</string>
+ <string name="revanced_sb_skip_button_selfpromo">Pomiń promocję</string>
+ <string name="revanced_sb_skip_button_interaction">Pomiń interakcję</string>
+ <string name="revanced_sb_skip_button_highlight">Pomiń do podświetlenia</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Pomiń wprowadzenie</string>
+ <string name="revanced_sb_skip_button_intro_middle">Pomiń intermisję</string>
+ <string name="revanced_sb_skip_button_intro_end">Pomiń intermisję</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Pomiń podgląd</string>
+ <string name="revanced_sb_skip_button_preview_middle">Pomiń podgląd</string>
+ <string name="revanced_sb_skip_button_preview_end">Pomiń ponowne podsumowanie</string>
+ <string name="revanced_sb_skip_button_filler">Pomiń wypełniacz</string>
+ <string name="revanced_sb_skip_button_nomusic">Pomiń niemuzykę</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Pomiń segment</string>
+ <string name="revanced_sb_skipped_sponsor">Pominięto treści sponsorowane</string>
+ <string name="revanced_sb_skipped_selfpromo">Pominięto własną promocję</string>
+ <string name="revanced_sb_skipped_interaction">Pominięto irytujące przypomnienie</string>
+ <string name="revanced_sb_skipped_highlight">Pominięto do podświetlenia</string>
+ <string name="revanced_sb_skipped_intro_beginning">Pominięto wstęp</string>
+ <string name="revanced_sb_skipped_intro_middle">Pominięta intermisja</string>
+ <string name="revanced_sb_skipped_intro_end">Pominięta intermisja</string>
+ <string name="revanced_sb_skipped_outro">Pominięto zakończenie</string>
+ <string name="revanced_sb_skipped_preview_beginning">Pominięto podgląd</string>
+ <string name="revanced_sb_skipped_preview_middle">Pominięto podgląd</string>
+ <string name="revanced_sb_skipped_preview_end">Pominięto ponowne zamknięcie</string>
+ <string name="revanced_sb_skipped_filler">Pominięto wypełniacz</string>
+ <string name="revanced_sb_skipped_nomusic">Pominięto sekcję bez muzyki</string>
+ <string name="revanced_sb_skipped_unsubmitted">Pominięto niezgłoszony segment</string>
+ <string name="revanced_sb_skipped_multiple_segments">Pominięto wiele segmentów</string>
+ <string name="revanced_sb_skip_automatically">Pomiń automatycznie</string>
+ <string name="revanced_sb_skip_automatically_once">Pomiń automatycznie raz</string>
+ <string name="revanced_sb_skip_showbutton">Pokaż przycisk pominięcia</string>
+ <string name="revanced_sb_skip_seekbaronly">Pokaż w pasku wyszukiwania</string>
+ <string name="revanced_sb_skip_ignore">Wyłącz</string>
+ <string name="revanced_sb_submit_failed_invalid">Nie można przesłać segmentu: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock jest tymczasowo wyłączony</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Nie można przesłać segmentu (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Nie można przesłać segmentu.\nRate Limited (zbyt wiele od tego samego użytkownika lub IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Nie można przesłać segmentu: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Nie można przesłać segmentu.\nJuż istnieje</string>
+ <string name="revanced_sb_submit_succeeded">Pomyślnie przesłano segment</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock jest niedostępny (API nie reaguje)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock tymczasowo niedostępny (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock tymczasowo niedostępny</string>
+ <string name="revanced_sb_vote_failed_timeout">Nie można zagłosować na segment (upłynął limit czasu API)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Nie można zagłosować na segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Nie można zagłosować na segment: %s</string>
+ <string name="revanced_sb_vote_upvote">Głos za</string>
+ <string name="revanced_sb_vote_downvote">Głos przeciw</string>
+ <string name="revanced_sb_vote_category">Zmień kategorię</string>
+ <string name="revanced_sb_vote_no_segments">Brak segmentów do zagłosowania</string>
+ <string name="revanced_sb_new_segment_choose_category">Wybierz kategorię segmentu</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategoria jest wyłączona w ustawieniach. Włącz kategorię do wysyłania.</string>
+ <string name="revanced_sb_new_segment_title">Nowy segment SponsorBlock\'a</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Ustawić %1$02d:%2$02d:%3$03d jako początek lub koniec nowego segmentu?</string>
+ <string name="revanced_sb_new_segment_mark_start">początek</string>
+ <string name="revanced_sb_new_segment_mark_end">koniec</string>
+ <string name="revanced_sb_new_segment_now">aktualnie</string>
+ <string name="revanced_sb_new_segment_time_start">Czas rozpoczęcia segmentu od</string>
+ <string name="revanced_sb_new_segment_time_end">Czas zakończenia segmentu od</string>
+ <string name="revanced_sb_new_segment_confirm_title">Czy te czasy są poprawne?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segment jest od\n\n%1$s\ndo\n%2$s\n\n(%3$s)\n\nGotowy do wysłania?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Początek musi być przed końcem</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Najpierw zaznacz dwie lokalizacje na pasku czasu</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Podgląd segmentu i sprawdzenie jego płynnego pominięcia</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Edytuj ręcznie czas segmentu</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Czy chcesz edytować czas rozpoczęcia lub zakończenia segmentu?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Podano nieprawidłowy format czasu</string>
+ <string name="revanced_sb_stats">Statystyki</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statystyki tymczasowo niedostępne (API jest wyłączone)</string>
+ <string name="revanced_sb_stats_loading">Wczytywanie...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock jest wyłączony</string>
+ <string name="revanced_sb_stats_username">Twoja nazwa użytkownika: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Dotknij tutaj, aby zmienić nazwę użytkownika</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Nie można zmienić nazwy użytkownika: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nazwa użytkownika została zmieniona</string>
+ <string name="revanced_sb_stats_reputation">Twoja reputacja to <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Stworzyłeś segmenty <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_zero">Tablica wyników SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Zapisałeś ludzi z segmentów <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Dotknij tutaj, aby zobaczyć globalne statystyki i najlepszych współtwórców</string>
+ <string name="revanced_sb_stats_saved_sum">To jest <b>%s</b> ich życia.<br>Dotknij tutaj, aby zobaczyć tablicę wyników.</string>
+ <string name="revanced_sb_stats_self_saved">Pominięłeś segmenty <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_sum">To jest <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Zresetować pomijany licznik segmentów?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s godzin %2$s minut</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minut %2$s sekund</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekund</string>
+ <string name="revanced_sb_color_dot_label">Kolor:</string>
+ <string name="revanced_sb_color_changed">Zmieniono kolor</string>
+ <string name="revanced_sb_color_reset">Resetowanie kolorów</string>
+ <string name="revanced_sb_color_invalid">Nieprawidłowy kod koloru</string>
+ <string name="revanced_sb_reset_color">Resetuj kolor</string>
+ <string name="revanced_sb_reset">Resetuj</string>
+ <string name="revanced_sb_about">O programie</string>
+ <string name="revanced_sb_about_api_sum">Dane są dostarczane przez API SponsorBlock. Dotknij tutaj, aby dowiedzieć się więcej i zobaczyć pobierania dla innych platform</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Wersja Spoof app</string>
+ <string name="revanced_spoof_app_version_summary_on">Wersja spofed</string>
+ <string name="revanced_spoof_app_version_summary_off">Wersja nie sfałszowana</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Wersja aplikacji będzie spoofed do starszej wersji YouTube.\n\nTo zmieni wygląd i cechy aplikacji, ale mogą wystąpić nieznane działania niepożądane.\n\nJeśli później wyłączone, zaleca się wyczyszczenie danych aplikacji, aby zapobiec błędom interfejsu.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Cel wersji Spop aplikacji</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Przywróć RYD w trybie incognito</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Przywracanie szerokiej prędkości wideo & menu jakości</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Przywróć kartę bibliotek</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Przywróć starą półkę na liście odtwarzania</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Przywróć stary układ interfejsu użytkownika</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Ustaw stronę startową</string>
+ <string name="revanced_start_page_entry_0">Domyślnie</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Strona główna</string>
+ <string name="revanced_start_page_entry_2">Szukaj</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Subskrypcje</string>
+ <string name="revanced_start_page_entry_4">Przeglądaj</string>
+ <string name="revanced_start_page_entry_5">Spodnie</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Zakładka</string>
+ <string name="revanced_start_page_entry_7">Polubione filmy</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historia</string>
+ <string name="revanced_start_page_entry_9">Popularne</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Wyłącz wznawianie odtwarzacza Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Odtwarzacz skrótów nie będzie wznawiany przy starcie aplikacji</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Odtwarzacz skrótów zostanie wznowiony przy starcie aplikacji</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Włącz układ tabletu</string>
+ <string name="revanced_tablet_layout_summary_on">Układ tabletu jest włączony</string>
+ <string name="revanced_tablet_layout_summary_off">Układ tabletu jest wyłączony</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Posty społeczności nie pojawiają się w układach tabletów</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minigracz</string>
+ <string name="revanced_miniplayer_screen_summary">Zmień styl zminimalizowanego odtwarzacza aplikacji</string>
+ <string name="revanced_miniplayer_type_title">Typ minigracza</string>
+ <string name="revanced_miniplayer_type_entry_1">Oryginał</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tabletka</string>
+ <string name="revanced_miniplayer_type_entry_4">Nowoczesny 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Nowoczesny 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Nowoczesny 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ukryj przyciski rozwijające i zamykające</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Przyciski są ukryte\n(przesuń minigracza aby rozwinąć lub zamknąć)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Wyświetlane są przyciski rozwijane i zamykane</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ukryj napisy</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Podteksty są ukryte</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Podteksty są wyświetlane</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ukryj przyciski przeskakujące do przodu i do tyłu</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Pomiń do przodu i z powrotem są ukryte</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Pomiń do przodu i do tyłu są wyświetlane</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Wartość przezroczystości między 0-100, gdzie 0 jest przezroczysty</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Przezroczystość nakładki musi być pomiędzy 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Włącz ekran ładowania gradientu</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Ekran ładowania będzie miał gradient tła</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Ekran ładujący będzie miał stałe tło</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Włącz niestandardowy kolor paska paska</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Niestandardowy kolor paska nawigacji jest wyświetlany</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Oryginalny kolor paska nawigacji jest wyświetlany</string>
+ <string name="revanced_seekbar_custom_color_value_title">Niestandardowy kolor paska podglądu</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Kolor paska wyszukiwania</string>
+ <string name="revanced_seekbar_custom_color_invalid">Nieprawidłowa wartość koloru paska szukania. Używana wartość domyślna.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Zakładka domowa</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Zakładka subskrypcji</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Zakładka</string>
+ <string name="revanced_alt_thumbnail_player_title">Listy odtwarzania, rekomendacje</string>
+ <string name="revanced_alt_thumbnail_search_title">Wyniki wyszukiwania</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Strzałka & Oryginalne miniatury</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Strzała & Nadal przechwytywane</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Nadal przechwytywane</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow udostępnia miniaturki z crowd-sourcing dla filmów YouTube. Miniaturki te są często bardziej odpowiednie niż te dostarczane przez YouTube\n\nJeśli włączone, adresy URL wideo zostaną wysłane do serwera API i nie zostaną wysłane żadne inne dane. Jeśli film nie ma miniatur DeArrow następnie oryginalne lub nadal są wyświetlane\n\nDotknij tutaj, aby dowiedzieć się więcej o DeStrzałce</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Pokaż toast jeśli API nie jest dostępne</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast jest wyświetlany, jeśli strzałka nie jest dostępna</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast nie jest wyświetlany, jeśli strzałka nie jest dostępna</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Adres URL punktu końcowego miniaturki DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Przechwytywanie wideo</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Przechwytywanie jest nadal pobierane od początku/środka/końca każdego filmu. Te obrazy są wbudowane w YouTube i żadne zewnętrzne API nie jest używane</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Używaj szybkiego przechwytywania</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Używanie średnich jakości wciąż przechwytywanych miniatur będzie ładowane szybciej, ale strumienie na żywo, nieuwolnione lub bardzo stare filmy mogą pokazywać puste miniatury</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Używanie wysokiej jakości przechwytywania</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Czas na pobranie nagrań wideo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Początek wideo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Średnie wideo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Koniec wideo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Strzała tymczasowo niedostępna (kod statusu: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Strzałka tymczasowo niedostępna</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Pokaż zaawansowane ogłoszenia</string>
+ <string name="revanced_announcements_summary_on">Ogłoszenia są wyświetlane przy starcie</string>
+ <string name="revanced_announcements_summary_off">Ogłoszenia nie są wyświetlane przy starcie</string>
+ <string name="revanced_announcements_enabled_summary">Pokaż ogłoszenia przy starcie</string>
+ <string name="revanced_announcements_connection_failed">Nie udało się połączyć z dostawcą ogłoszeń</string>
+ <string name="revanced_announcements_dialog_dismiss">Odrzuć</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Włącz automatyczne powtarzanie</string>
+ <string name="revanced_auto_repeat_summary_on">Automatyczne powtarzanie jest włączone</string>
+ <string name="revanced_auto_repeat_summary_off">Automatyczne powtarzanie jest wyłączone</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Wymiary łyżki urządzenia</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Wymiary urządzenia spofed\n\nWyższe właściwości wideo mogą być odblokowane, ale możesz doświadczyć oszołomienia odtwarzania wideo, gorszego żywotności baterii i nieznanych efektów ubocznych</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Wymiary urządzenia nie spofed\n\nWłączenie tego może odblokować wyższą jakość wideo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Włączenie tego może spowodować stłuczenie odtwarzania wideo, pogorszenie żywotności baterii i nieznane działania niepożądane.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Ustawienia GmsCore</string>
+ <string name="microg_settings_summary">Ustawienia GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Obejście przekierowań URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Przekierowanie URL jest omijane</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Przekierowanie URL nie jest omijane</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Otwórz linki w przeglądarce</string>
+ <string name="revanced_external_browser_summary_on">Otwieranie linków zewnętrznych</string>
+ <string name="revanced_external_browser_summary_off">Otwieranie linków w aplikacji</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Odtwarzanie w tle</string>
+ <string name="revanced_background_playback_summary">To ustawienie można znaleźć w Ustawieniach -> Tło</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Usuń parametr zapytania</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parametr zapytania śledzenia jest usuwany z linków</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parametr zapytania nie został usunięty z linków</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Wyłącz szczęście powiększenia</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptyka jest wyłączona</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptyka jest włączona</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Jakość automatyczna</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Zapamiętaj zmiany jakości wideo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Zmiany jakości dotyczą wszystkich filmów</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Zmiany jakości dotyczą tylko bieżącego filmu</string>
+ <string name="revanced_video_quality_default_wifi_title">Domyślna jakość wideo w sieci Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Domyślna jakość wideo w sieci komórkowej</string>
+ <string name="revanced_remember_video_quality_mobile">mobilny</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Zmieniono domyślną jakość %1$s na: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Pokaż przycisk szybkiego dialogu.</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Widoczny</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Przycisk nie jest wyświetlany</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Niestandardowe prędkości odtwarzania</string>
+ <string name="revanced_custom_playback_speeds_summary">Dodaj lub zmień dostępne prędkości odtwarzania</string>
+ <string name="revanced_custom_playback_speeds_invalid">Prędkość niestandardowa musi być mniejsza niż %s. Używając wartości domyślnych.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Nieprawidłowa niestandardowa prędkość odtwarzania. Używanie wartości domyślnych.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Zapamiętaj zmiany prędkości odtwarzania</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Zmiany prędkości odtwarzania dotyczą wszystkich filmów</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Prędkość odtwarzania zmienia się tylko dla bieżącego filmu</string>
+ <string name="revanced_playback_speed_default_title">Domyślna prędkość odtwarzania</string>
+ <string name="revanced_remember_playback_speed_toast">Zmieniono domyślną prędkość na: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Przywróć stare menu jakości wideo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Wyświetlane jest stare menu jakości wideo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Stare menu jakości wideo nie jest wyświetlane</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Włącz slajd, aby wyszukać</string>
+ <string name="revanced_slide_to_seek_summary_on">Przesuń, aby przeszukiwać jest włączony</string>
+ <string name="revanced_slide_to_seek_summary_off">Przesuń, aby przeszukiwać nie jest włączony</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoiwa klienta</string>
+ <string name="revanced_spoof_client_screen_summary">Słuchaj klienta aby zapobiec problemom z odtwarzaniem</string>
+ <string name="revanced_spoof_client_title">Spoiwa klienta</string>
+ <string name="revanced_spoof_client_summary_on">Klient jest spoofed</string>
+ <string name="revanced_spoof_client_summary_off">Klient nie jest spoofed\n\nOdtwarzanie wideo może nie działać</string>
+ <string name="revanced_spoof_client_user_dialog_message">Wyłączenie tego ustawienia może spowodować problemy z odtwarzaniem wideo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spośród klientów na iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Klient jest obecnie spoofed to iOS\n\nEfekty niepożądane obejmują:\n• Żaden film HDR\n• Historia zegarków może nie działać\n• Wyższe jakość wideo może brakować\n• Strumienie na żywo nie mogą odtwarzać jako tylko audio\n• Strumienie na żywo niedostępne na Androidzie 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Klient jest obecnie spoofowany na Androida VR\n\nEfekty uboczne obejmują:\n• Bez filmu HDR\n• Filmy dziecięce nie odtwarza\n• Wstrzymaj filmy można losowo wznowić\n• Niska jakość miniatur paska wyszukiwania skrótów\n• Przycisk pobierania jest zawsze ukryty\n• Karty ekranu końcowego są zawsze ukryte</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Miniatury klienta nie są dostępne (limit czasu API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Miniaturki klienta tymczasowo nie są dostępne: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Podpis plamki</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Słuchaj podpisu aplikacji, aby zapobiec problemom z odtwarzaniem</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Podpis plamki</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Podpis aplikacji spofed\n\nEfekty uboczne obejmują:\n• Zwiększona przepływność nie jest dostępna\n• Filmy nie mogą być pobrane\n• Brak miniatur paska wyszukiwania dla płatnych filmów</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Podpis aplikacji nie sfałszowany\n\nOdtwarzanie wideo może nie działać</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Wyłączenie tego ustawienia spowoduje problemy z odtwarzaniem wideo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Znaki aplikacji w kanale</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Podpis aplikacji spoofed\n\nEfekty niepożądane obejmują:\n• Filmy RSS nie zawierają napisów\n• Odtwarzane automatycznie filmy wideo pojawią się w historii zegarka</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Podpis aplikacji nie spofed dla filmów kanału\n\nFilmy RSS będą odtwarzać przez mniej niż 1 minutę przed napotkaniem problemów z odtwarzaniem</string>
+ <string name="revanced_spoof_storyboard_title">Szlifowanie tablicy</string>
+ <string name="revanced_spoof_storyboard_summary_on">Splofed Soryboard</string>
+ <string name="revanced_spoof_storyboard_summary_off">Nie spofed\n\nEfekty uboczne obejmują:\n• Brak trybu otoczenia\n• Miniatury paska wyszukiwania są ukryte</string>
+ <string name="revanced_spoof_storyboard_timeout">Słupek tablicy czasowo niedostępny (limit czasu API)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Szlifowanie tablicy storycowej tymczasowo niedostępne: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Włącz automatyczną jasność HDR</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatyczna jasność HDR jest włączona</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automatyczna jasność HDR jest wyłączona</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blokuj reklamy audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Reklamy audio są zablokowane</string>
+ <string name="revanced_block_audio_ads_summary_off">Reklamy audio są odblokowane</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s jest niedostępny. Reklamy mogą wyskakiwać. Spróbuj przełączyć się na inną usługę w ustawieniach.</string>
+ <string name="revanced_embedded_ads_service_failed">Serwer %s zwrócił błąd. Reklamy mogą wyświetlić. Spróbuj przełączyć się na inną usługę blokowania reklam w ustawieniach.</string>
+ <string name="revanced_block_embedded_ads_title">Blokuj osadzone reklamy wideo</string>
+ <string name="revanced_block_embedded_ads_entry_1">Nieaktywne</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy świetlne</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blokuj reklamy wideo</string>
+ <string name="revanced_block_video_ads_summary_on">Reklamy wideo są zablokowane</string>
+ <string name="revanced_block_video_ads_summary_off">Reklamy wideo są odblokowane</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">wiadomość usunięta</string>
+ <string name="revanced_show_deleted_messages_title">Pokaż usunięte wiadomości</string>
+ <string name="revanced_show_deleted_messages_entry_1">Nie pokazuj usuniętych wiadomości</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ukryj usunięte wiadomości za spoilerem</string>
+ <string name="revanced_show_deleted_messages_entry_3">Pokaż usunięte wiadomości jako przekreślony tekst</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Automatycznie włącz punkty kanału</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Punkty kanału są automatycznie odejmowane</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Punkty kanału nie są automatycznie odebrane</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Włącz tryb debugowania Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Tryb debugowania Twitch jest włączony (nie zalecane)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Tryb debugowania Twitch jest wyłączony</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Ulepszone ustawienia</string>
+ <string name="revanced_ads_screen_title">Reklamy</string>
+ <string name="revanced_ads_screen_summary">Ustawienia blokowania reklam</string>
+ <string name="revanced_chat_screen_title">Czat</string>
+ <string name="revanced_chat_screen_summary">Ustawienia czatu</string>
+ <string name="revanced_misc_screen_title">Różne</string>
+ <string name="revanced_misc_screen_summary">Różne ustawienia</string>
+ <string name="revanced_general_category_title">Ustawienia ogólne</string>
+ <string name="revanced_other_category_title">Inne ustawienia</string>
+ <string name="revanced_client_ads_category_title">Reklamy klientów</string>
+ <string name="revanced_surestream_ads_category_title">Reklamy surestream po stronie serwera</string>
+ <string name="revanced_twitch_debug_title">Logi do debugowania</string>
+ <string name="revanced_twitch_debug_summary_on">Włączone</string>
+ <string name="revanced_twitch_debug_summary_off">Wyłączone</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-pt-rBR/strings.xml b/src/main/resources/addresources/values-pt-rBR/strings.xml
new file mode 100644
index 0000000000..f174ceb069
--- /dev/null
+++ b/src/main/resources/addresources/values-pt-rBR/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Você deseja prosseguir?</string>
+ <string name="revanced_settings_reset">Resetar</string>
+ <string name="revanced_settings_restart_title">Atualizar e reiniciar</string>
+ <string name="revanced_settings_restart">Reiniciar</string>
+ <string name="revanced_settings_import">Importar</string>
+ <string name="revanced_settings_import_copy">Copiar</string>
+ <string name="revanced_settings_import_reset">Configurações ReVanced redefinidas para o padrão</string>
+ <string name="revanced_settings_import_success">Configurações %d importadas</string>
+ <string name="revanced_settings_import_failure_parse">Importação falhou: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore não está instalado. Instale-o.</string>
+ <string name="gms_core_dialog_title">Ação necessária</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore não tem permissão para ser executado em segundo plano.\n\nVá até a aba \"Não mate meu aplicativo\", e aplique as instruções para a instalação do MicroG.\n\nIsso é necessário para que o aplicativo funcione.</string>
+ <string name="gms_core_dialog_open_website_text">Abrir site</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">A otimização da bateria devem ser desativada para evitar problemas no MicroG GmsCore.\n\nToque no botão continuar e desative a otimização da bateria.</string>
+ <string name="gms_core_dialog_continue_text">Continuar</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Você está usando o ReVanced Patches versão <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Observação</string>
+ <string name="revanced_settings_about_links_dev_body">Esta versão é um pré-lançamento e você pode ter problemas inesperados</string>
+ <string name="revanced_settings_about_links_header">Links oficiais</string>
+ <string name="revanced_pref_import_export_title">Importar / Exportar</string>
+ <string name="revanced_pref_import_export_summary">Importar / Exportar Configurações do ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Sobre</string>
+ <string name="revanced_settings_screen_01_ads_title">Anúncios</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniaturas alternativas</string>
+ <string name="revanced_settings_screen_03_feed_title">Tela Inicial</string>
+ <string name="revanced_settings_screen_04_player_title">Reprodutor</string>
+ <string name="revanced_settings_screen_05_general_title">Layout geral</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra de busca</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controles deslizantes</string>
+ <string name="revanced_settings_screen_11_misc_title">Outras configurações</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depuração</string>
+ <string name="revanced_debug_screen_summary">Ativar ou desativar opções de depuração</string>
+ <string name="revanced_debug_title">Registro de depuração</string>
+ <string name="revanced_debug_summary_on">Registro de depuração está ativado</string>
+ <string name="revanced_debug_summary_off">Registro de depuração está desativado</string>
+ <string name="revanced_debug_protobuffer_title">Registro de buffer de protocolo</string>
+ <string name="revanced_debug_protobuffer_summary_on">Registro de depuração incluem buffer de protocolo</string>
+ <string name="revanced_debug_protobuffer_summary_off">Registro de depuração não incluem buffer de protocolo</string>
+ <string name="revanced_debug_stacktrace_title">Registro de rastreamento em pilha</string>
+ <string name="revanced_debug_stacktrace_summary_on">Registro de depuração incluem rastreamento em pilha</string>
+ <string name="revanced_debug_stacktrace_summary_off">Registro de depuração não incluem rastreamento em pilha</string>
+ <string name="revanced_debug_toast_on_error_title">Mostrar notificação flutuante de erro do ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Mostrar notificação flutuante se ocorrer erro</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Não mostrar notificação flutuante se ocorrer erro</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Desativar ocultar todas as notificações flutuantes de erro do ReVanced.\n\nVocê não será notificado de nenhum evento inesperado.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Desativar brilho do botão de inscrição / Curtir</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">O botão de curtir e assinar não brilhará quando mencionado</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">O botão de curtir e subscrever brilhará quando mencionado</string>
+ <string name="revanced_hide_gray_separator_title">Ocultar separador cinza</string>
+ <string name="revanced_hide_gray_separator_summary_on">Separador cinza está oculto</string>
+ <string name="revanced_hide_gray_separator_summary_off">Separador cinza não está oculto</string>
+ <string name="revanced_hide_channel_watermark_title">Ocultar marca d\'água do canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Marca d\'água está oculta</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Marca d\'água não está oculta</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ocultar prateleiras horizontais</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Prateleiras estão ocultas, tais como:\n• Quebrar notícias\n• Continuar assistindo\n• Explore mais canais\n• Compras\n• Assista novamente</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Prateleiras não estão ocultos</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ocultar botão \'Juntar-se\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Botão está oculto</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Botão não está oculto</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ocultar prateleira \'Para você\' na página do canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Prateleira está oculta</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Prateleira não está oculta</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ocultar botão \'Notificar-me\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Botão está oculto</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Botão não está oculto</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ocultar as recomendações \"Pessoas também assistidas\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Recomendações estão ocultas</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Recomendações não estão ocultas</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ocultar botão \'Mostrar mais\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Botão está oculto</string>
+ <string name="revanced_hide_show_more_button_summary_off">Botão não está oculto</string>
+ <string name="revanced_hide_timed_reactions_title">Ocultar reações cronometradas</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Reações cronometradas estão ocultas</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Reações cronometradas não estão ocultas</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ocultar cabeçalho de prateleira de resultados de busca</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Cabeçalho da prateleira está oculto</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Cabeçalho da prateleira não está oculto</string>
+ <string name="revanced_hide_channel_guidelines_title">Ocultar diretrizes de canal</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Diretrizes de canal está oculto</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Diretrizes de canal não estão ocultos</string>
+ <string name="revanced_hide_expandable_chip_title">Ocultar cartão expansível em vídeos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Cartão expansível está oculto</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Cartão expansível não está oculto</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ocultar rodapé do menu de qualidade de vídeo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Rodapé do menu de qualidade de vídeo está oculto</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Rodapé do menu de qualidade de vídeo não está oculto</string>
+ <string name="revanced_hide_community_posts_title">Ocultar publicações da comunidade</string>
+ <string name="revanced_hide_community_posts_summary_on">Publicações da comunidade está oculto</string>
+ <string name="revanced_hide_community_posts_summary_off">Publicações da comunidade não está oculto</string>
+ <string name="revanced_hide_compact_banner_title">Ocultar banners compactos</string>
+ <string name="revanced_hide_compact_banner_summary_on">Banners compactos está oculto</string>
+ <string name="revanced_hide_compact_banner_summary_off">Banners compactos não estão ocultos</string>
+ <string name="revanced_hide_movies_section_title">Ocultar seção de filmes</string>
+ <string name="revanced_hide_movies_section_summary_on">Seção de filmes está oculto</string>
+ <string name="revanced_hide_movies_section_summary_off">Seção de filmes não está oculto</string>
+ <string name="revanced_hide_feed_survey_title">Ocultar pesquisas na tela inicial</string>
+ <string name="revanced_hide_feed_survey_summary_on">Pesquisas na tela inicial está oculto</string>
+ <string name="revanced_hide_feed_survey_summary_off">Pesquisas na tela inicial não está oculto</string>
+ <string name="revanced_hide_community_guidelines_title">Ocultar diretrizes da comunidade</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Diretrizes da comunidade está oculto</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Diretrizes da comunidade não está oculto</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ocultar diretrizes da comunidade de inscritos</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Diretrizes da comunidade de inscritos está oculto</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Diretrizes da comunidade de inscritos não está oculto</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ocultar prateleira de membros do canal</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Prateleira de membros do canal está oculto</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Prateleira de membros do canal não está oculto</string>
+ <string name="revanced_hide_emergency_box_title">Ocultar caixas de emergência</string>
+ <string name="revanced_hide_emergency_box_summary_on">Caixas de emergência estão oculto</string>
+ <string name="revanced_hide_emergency_box_summary_off">Caixas de emergência não estão ocultas</string>
+ <string name="revanced_hide_info_panels_title">Ocultar painel de informações</string>
+ <string name="revanced_hide_info_panels_summary_on">Painel de informações está oculto</string>
+ <string name="revanced_hide_info_panels_summary_off">Painel de informações não está oculto</string>
+ <string name="revanced_hide_medical_panels_title">Ocultar painel médico</string>
+ <string name="revanced_hide_medical_panels_summary_on">Painel médico está oculto</string>
+ <string name="revanced_hide_medical_panels_summary_off">Painel médico não está oculto</string>
+ <string name="revanced_hide_channel_bar_title">Ocultar barra de canais</string>
+ <string name="revanced_hide_channel_bar_summary_on">Barra de canal está oculta</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra de canal não está oculta</string>
+ <string name="revanced_hide_playables_title">Ocultar Reprodução</string>
+ <string name="revanced_hide_playables_summary_on">Reproduzíveis estão ocultos</string>
+ <string name="revanced_hide_playables_summary_off">Reproduzíveis não estão ocultos</string>
+ <string name="revanced_hide_quick_actions_title">Ocultar ações rápidas em tela cheia</string>
+ <string name="revanced_hide_quick_actions_summary_on">Ações rápidas estão ocultas</string>
+ <string name="revanced_hide_quick_actions_summary_off">Ações rápidas não estão ocultas</string>
+ <string name="revanced_hide_related_videos_title">Ocultar vídeos relacionados em ações rápidas</string>
+ <string name="revanced_hide_related_videos_summary_on">Vídeos relacionados estão ocultos</string>
+ <string name="revanced_hide_related_videos_summary_off">Vídeos relacionados não estão ocultos</string>
+ <string name="revanced_hide_image_shelf_title">Ocultar prateleira de imagens nos resultados da pesquisa</string>
+ <string name="revanced_hide_image_shelf_summary_on">Prateleira de imagem está oculta</string>
+ <string name="revanced_hide_image_shelf_summary_off">Prateleira de imagem não está oculta</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ocultar últimas publicações</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Últimas publicações estão ocultas</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Últimas publicações não estão ocultas</string>
+ <string name="revanced_hide_mix_playlists_title">Ocultar seleções de mídias misturadas</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Seleções de mídias misturadas estão ocultas</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Seleções de mídias misturadas não estão ocultas</string>
+ <string name="revanced_hide_artist_cards_title">Ocultar cartões do artista</string>
+ <string name="revanced_hide_artist_cards_summary_on">Cartões do artista estão ocultas</string>
+ <string name="revanced_hide_artist_cards_summary_off">Cartões do artista não estão ocultas</string>
+ <string name="revanced_hide_chips_shelf_title">Ocultar prateleira de cartões</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Prateleira de cartões estão ocultas</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Prateleira de cartões não estão ocultas</string>
+ <string name="revanced_hide_attributes_section_title">Ocultar seção de atributos</string>
+ <string name="revanced_hide_attributes_section_summary_on">Locais em destaque\", seções de Jogos e Músicas estão ocultas</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Lugares de destaque\', Jogos e Músicas são mostrados</string>
+ <string name="revanced_hide_chapters_section_title">Ocultar seção de Capítulos</string>
+ <string name="revanced_hide_chapters_section_summary_on">Seção de capítulos está oculta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Seção de capítulos é mostrada</string>
+ <string name="revanced_hide_podcast_section_title">Ocultar seção \'Explorar podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">A seção \'Explorar podcast\' está oculta</string>
+ <string name="revanced_hide_podcast_section_summary_off">A seção \'Explorar o podcast\' é mostrada</string>
+ <string name="revanced_hide_info_cards_section_title">Ocultar seção de cartões de informações</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Seção de cartões de informações está oculto</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Seção de cartões de informações não está oculto</string>
+ <string name="revanced_hide_transcript_section_title">Ocultar seção de transcrição</string>
+ <string name="revanced_hide_transcript_section_summary_on">Seção de transcrição está oculta</string>
+ <string name="revanced_hide_transcript_section_summary_off">Seção de transcrição não está oculta</string>
+ <string name="revanced_hide_description_components_screen_title">Descrição do vídeo</string>
+ <string name="revanced_hide_description_components_screen_summary">Ocultar ou mostrar componentes de descrição do vídeo</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizado</string>
+ <string name="revanced_custom_filter_screen_summary">Ocultar componentes usando filtros personalizados</string>
+ <string name="revanced_custom_filter_title">Ativar filtro personalizado</string>
+ <string name="revanced_custom_filter_summary_on">Filtro personalizado está ativado</string>
+ <string name="revanced_custom_filter_summary_off">Filtro personalizado está desativado</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizado</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista de strings de componente de construção de caminhos separados, para filtrar nova linha</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizado inválido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ocultar conteúdo usando palavra-chave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ocultar pesquisa e vídeos na tela inicial usando palavra-chave como filtros</string>
+ <string name="revanced_hide_keyword_content_home_title">Ocultar vídeos na tela inicial com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Vídeos na aba inicio são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Vídeos na aba inicio não são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ocultar vídeos de inscrições com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Vídeos na aba inscrições são filtrados com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Vídeos na aba de inscrições não são filtrados com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_title">Ocultar resultados de busca com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Resultados de busca são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Resultados de busca não são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Palavras-chave para ocultar</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Palavras-chave e frases para ocultar, separados por novas linhas\n\nPalavras com letras maiúsculas no meio devem ser inseridas com letras maiúsculas (ex: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Sobre a filtragem com palavra-chave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Início/Inscrições/Busca resultados são filtrados para ocultar conteúdo que corresponde às frases chave\n\nLimitações\n• Alguns abreviados podem não ser ocultados\n• Alguns componentes da UI podem não ser ocultados\n• Procurar por uma palavra-chave pode não mostrar resultados</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Palavra-chave inválida. Não pode usar: \'%s\' como um filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Palavra-chave inválida. \'%1$s\' é menor que %2$d caracteres</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Palavra-chave \'$s\' irá ocultar todos os vídeos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ocultar anúncios gerais</string>
+ <string name="revanced_hide_general_ads_summary_on">Anúncios gerais estão ocultos</string>
+ <string name="revanced_hide_general_ads_summary_off">Anúncios gerais não estão ocultos</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ocultar anúncios em tela cheia</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Os anúncios de tela cheia são ocultos\n\nEste recurso está disponível apenas para dispositivos mais antigos</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Anúncios em tela cheia não estão ocultos</string>
+ <string name="revanced_hide_buttoned_ads_title">Ocultar anúncio com botão</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Anúncios com botão estão ocultos</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Anúncios com botão não estão ocultos</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ocultar rótulo de promoção paga</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">O rótulo de promoção pago está oculto</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Rótulo de promoção pago é mostrado</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ocultar cartões auto-patrocinados</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Cartões autopatrocinados estão ocultos</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Cartões autopatrocinados não estão ocultos</string>
+ <string name="revanced_hide_products_banner_title">Ocultar banner ver os produtos</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner está oculto</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner não está oculto</string>
+ <string name="revanced_hide_shopping_links_title">Ocultar links de compras na descrição do vídeo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Links de compras estão ocultos</string>
+ <string name="revanced_hide_shopping_links_summary_off">Links de compras não estão ocultos</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ocultar o botão \'Visitar loja\' nas páginas do canal</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Botão está oculto</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Botão não esta oculto</string>
+ <string name="revanced_hide_web_search_results_title">Ocultar resultados de busca web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Resultados de busca web estão ocultos</string>
+ <string name="revanced_hide_web_search_results_summary_off">Resultados de busca web não estão ocultos</string>
+ <string name="revanced_hide_merchandise_banners_title">Ocultar banners de mercadoria</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Banner de mercadoria está oculto</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Banner de mercadoria não está oculto</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ocultar anúncios em tela cheia só funciona com dispositivos antigos</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ocultar promoção do YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Promoções do YouTube Premium sob o reprodutor de vídeo estão ocultas</string>
+ <string name="revanced_hide_get_premium_summary_off">Promoções do YouTube Premium sob o reprodutor de vídeo não estão ocultas</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ocultar anúncios do vídeo</string>
+ <string name="revanced_hide_video_ads_summary_on">Anúncios do vídeo estão ocultos</string>
+ <string name="revanced_hide_video_ads_summary_off">Anúncios do vídeo não estão ocultos</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiada para a área de transferência</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL com tempo copiado</string>
+ <string name="revanced_copy_video_url_title">Mostrar botão copiar URL no vídeo</string>
+ <string name="revanced_copy_video_url_summary_on">Botão é exibido. Toque para copiar a URL do vídeo. Toque e segure para copiar a URL do vídeo com tempo</string>
+ <string name="revanced_copy_video_url_summary_off">Botão não está visível</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostrar botão copiar URL com tempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Botão é exibido. Toque para copiar a URL do vídeo com temo. Toque e segure para copiar vídeos sem tempo</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Botão não está visível</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Remover diálogo de restrição</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Diálogo foi removido</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Diálogo não foi removido</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Isto não ignora a restrição de idade, apenas a aceita automaticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Baixador externo</string>
+ <string name="revanced_external_downloader_screen_summary">Configurações para usar um baixador externo</string>
+ <string name="revanced_external_downloader_title">Mostrar botão de baixar externo</string>
+ <string name="revanced_external_downloader_summary_on">Mostrar botão de baixar no reprodutor</string>
+ <string name="revanced_external_downloader_summary_off">Não mostrar botão de baixar no reprodutor</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Substituir botão de ação de baixar</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Botão de baixar abre seu baixador externo</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Botão de baixar abre o baixador nativo</string>
+ <string name="revanced_external_downloader_name_title">Nome do pacote do aplicativo de baixar</string>
+ <string name="revanced_external_downloader_name_summary">Nome do pacote do seu aplicativo de baixar externo instalado, como NewPipe ou Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s não está instalado. Por favor, instale-o.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Desativar gesto de busca precisa</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gesto desativado</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto ativado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Ativar toque na barra de busca</string>
+ <string name="revanced_seekbar_tapping_summary_on">Toque na barra de busca está ativado</string>
+ <string name="revanced_seekbar_tapping_summary_off">Toque na barra de busca está desativado</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Ativar gesto de brilho</string>
+ <string name="revanced_swipe_brightness_summary_on">Gesto de brilho está ativado</string>
+ <string name="revanced_swipe_brightness_summary_off">Gesto de brilho está desativado</string>
+ <string name="revanced_swipe_volume_title">Ativar gesto de volume</string>
+ <string name="revanced_swipe_volume_summary_on">Gesto de volume está ativado</string>
+ <string name="revanced_swipe_volume_summary_off">Gesto de volume está desativado</string>
+ <string name="revanced_swipe_press_to_engage_title">Ativar gesto de pressionar para deslizar</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pressionar para deslizar está ativado</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pressionar para deslizar está desativado</string>
+ <string name="revanced_swipe_haptic_feedback_title">Ativar resposta tátil</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Resposta tátil está ativado</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Resposta tátil está desativado</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Salvar e restaurar brilho</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Salvar e restaurar o brilho quando sair ou entrar em tela cheia</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Não salvar e restaurar o brilho ao sair ou entrar em tela cheia</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Ativar gesto de brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Deslizando para baixo até o menor valor do gesto de brilho, habilite o brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Deslizando para baixo até o menor valor não habilita o brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automático</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tempo limite da sobreposição no gesto</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Quantidade em milissegundos que a sobreposição é visível</string>
+ <string name="revanced_swipe_text_overlay_size_title">Tamanho do texto de gesto de sobreposição</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Tamanho do texto para o gesto de sobreposição</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Visibilidade do fundo no gesto</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Visibilidade do fundo do gesto de sobreposição</string>
+ <string name="revanced_swipe_threshold_title">Limiar distância no gesto</string>
+ <string name="revanced_swipe_threshold_summary">Quantidade limite que o gesto irá ocorrer</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Desativar legendas automáticas</string>
+ <string name="revanced_auto_captions_summary_on">Legendas automáticas estão desativadas</string>
+ <string name="revanced_auto_captions_summary_off">Legendas automáticas estão ativadas</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Botões de ação</string>
+ <string name="revanced_hide_buttons_screen_summary">Ocultar ou mostrar botões sob vídeos</string>
+ <string name="revanced_hide_like_dislike_button_title">Ocultar Gostei e Não gostei</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Botões de gostei e não gostei estão ocultos</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Botões de gostei e não gostei não estão ocultos</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ocultar Compartilhar</string>
+ <string name="revanced_hide_share_button_summary_on">Botão compartilhar está oculto</string>
+ <string name="revanced_hide_share_button_summary_off">Botão compartilhar não está oculto</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ocultar Denúncia</string>
+ <string name="revanced_hide_report_button_summary_on">Botão de denúncia está oculto</string>
+ <string name="revanced_hide_report_button_summary_off">Botão de denúncia não está oculto</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ocultar Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Botão remix está oculto</string>
+ <string name="revanced_hide_remix_button_summary_off">Botão remix não está oculto</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ocultar Baixar</string>
+ <string name="revanced_hide_download_button_summary_on">Botão baixar está oculto</string>
+ <string name="revanced_hide_download_button_summary_off">Botão baixar não está oculto</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ocultar Valeu</string>
+ <string name="revanced_hide_thanks_button_summary_on">Botão valeu está oculto</string>
+ <string name="revanced_hide_thanks_button_summary_off">Botão valeu não está oculto</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Ocultar Clipe</string>
+ <string name="revanced_hide_clip_button_summary_on">Botão clipe está oculto</string>
+ <string name="revanced_hide_clip_button_summary_off">Botão clipe não está oculto</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ocultar Salvar na lista de reprodução</string>
+ <string name="revanced_hide_playlist_button_summary_on">Botão de salvar na lista de reprodução está oculto</string>
+ <string name="revanced_hide_playlist_button_summary_off">Botão de salvar na lista de reprodução não está oculto</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ocultar botão de reprodução automática</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Botão de reprodução automática está oculto</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Botão de reprodução automática não está oculto</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ocultar botão legendas</string>
+ <string name="revanced_hide_captions_button_summary_on">Botão legendas está oculto</string>
+ <string name="revanced_hide_captions_button_summary_off">Botão legendas não está oculto</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ocultar botão de transmitir</string>
+ <string name="revanced_hide_cast_button_summary_on">Botão transmitir está oculto</string>
+ <string name="revanced_hide_cast_button_summary_off">Botão transmitir não está oculto</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Botões de navegação</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ocultar ou alterar botões na barra de navegação</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ocultar Início</string>
+ <string name="revanced_hide_home_button_summary_on">Botão de início está oculto</string>
+ <string name="revanced_hide_home_button_summary_off">Botão de início não está oculto</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ocultar Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">Botão shorts está oculto</string>
+ <string name="revanced_hide_shorts_button_summary_off">Botão de shorts não está oculto</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ocultar Criar</string>
+ <string name="revanced_hide_create_button_summary_on">Botão criar está oculto</string>
+ <string name="revanced_hide_create_button_summary_off">Botão criar não está oculto</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ocultar Inscrições</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Botão inscrições está oculto</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Botão inscrições não está oculto</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Mudar botão Criar por Notificações</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">O botão Criar é alternado com o botão Notificações\n\nNota: Ativar isso também forçar a ocultação de anúncios de vídeo</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Botão criar não está alternado com o botão notificações</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ocultar rótulos dos botões de navegação</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Marcadores estão ocultos</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Marcadores são mostrados</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Menu suspenso</string>
+ <string name="revanced_hide_player_flyout_summary">Ocultar ou mostrar itens no menu suspenso do reprodutor</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ocultar Legendas</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Menu legendas está oculto</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menu legendas não está oculto</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ocultar Configurações adicionais</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Menu de configurações adicionais está oculto</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Menu de configurações adicionais não está oculto</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ocultar Vídeo em Loop</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Menu de vídeo em loop está oculto</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Menu de vídeo em loop não está oculto</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ocultar Modo ambiente</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menu do modo ambiente está oculto</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Menu do modo ambiente não está oculto</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ocultar Ajuda & Opinião</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Menu ajuda & opinião está oculto</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Menu ajuda & opinião não está oculto</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ocultar Velocidade da reprodução</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Menu velocidade da reprodução está oculto</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Menu velocidade da reprodução não está oculto</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ocultar Mais informações</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Menu mais Informações está oculto</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Menu mais Informações não está oculto</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ocultar Tela de bloqueio</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Menu tela de bloqueio está oculto</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Menu tela de bloqueio não está oculto</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ocultar Faixa de áudio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Menu faixa de áudio está oculto</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Menu faixa de áudio não está oculto</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ocultar Assistir no VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Menu assistir no VR está oculto</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Menu assistir no VR não está oculto</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ocultar botões anterior & próxima vídeo</string>
+ <string name="revanced_hide_player_buttons_summary_on">Botões estão ocultos</string>
+ <string name="revanced_hide_player_buttons_summary_off">Botões não estão ocultos</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ocultar cartões de álbum</string>
+ <string name="revanced_hide_album_cards_summary_on">Cartões de álbum estão ocultos</string>
+ <string name="revanced_hide_album_cards_summary_off">Cartões de álbum não estão ocultos</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentários</string>
+ <string name="revanced_comments_screen_summary">Ocultar ou mostrar componentes da seção de comentários</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ocultar cabeçalho \'Comentários por membros\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">O cabeçalho \'Comentários dos membros\' está oculto</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">O cabeçalho \'Comentários dos membros\' é exibido</string>
+ <string name="revanced_hide_comments_section_title">Ocultar seção de comentários</string>
+ <string name="revanced_hide_comments_section_summary_on">Seção de comentários está oculta</string>
+ <string name="revanced_hide_comments_section_summary_off">Seção de comentários exibida</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ocultar botão \'Criar curto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">O botão \'Criar curto\' está oculto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">O botão \'Criar Atalho\' é mostrado</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ocultar prévia de comentário</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Prévia de comentário está oculta</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Prévia de comentário não está oculta</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ocultar botão valeu</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Botão valeu está oculto</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Botão valeu não está oculto</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ocultar botões de tempo e emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Os botões de cronograma e emoji estão ocultos</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Botões de tempo e emoji são mostrados</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ocultar caixa de financiamento coletivo</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Caixa de financiamento coletivo está oculta</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Caixa de financiamento coletivo não está oculta</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ocultar cartões de tela final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Cartões de tela final estão ocultos</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Cartões de tela final não estão ocultos</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra de filtro</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ocultar ou mostrar a barra de filtro na tela inicial, pesquisa e vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ocultar na tela inicial</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Está oculto na tela inicial</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Não está oculto na tela inicial</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ocultar na pesquisa</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Está oculto na busca</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Não está oculto na busca</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ocultar nos vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Está oculto nos vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Não está oculto nos vídeos relacionados</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ocultar botão de microfone flutuante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Botão microfone está oculto</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Botão microfone não está oculto</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Desativar o modo ambiente em tela cheia</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modo ambiente desativado</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modo ambiente ativado</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ocultar cartões de informações</string>
+ <string name="revanced_hide_info_cards_summary_on">Cartões de informações estão ocultos</string>
+ <string name="revanced_hide_info_cards_summary_off">Cartões de informações não estão ocultos</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Desativar animações de números rolantes</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Números rolantes não estão animados</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Números rolantes estão animados</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ocultar barra de busca no reprodutor de vídeo</string>
+ <string name="revanced_hide_seekbar_summary_on">Barra de busca no reprodutor de vídeo está oculto</string>
+ <string name="revanced_hide_seekbar_summary_off">Barra de busca no reprodutor de vídeo não está oculto</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ocultar barra de busca nas miniaturas do vídeo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Barra de busca nas miniaturas estão oculta</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Barra de busca nas miniaturas não estão oculta</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ocultar Shorts na tela inicial</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts na tela inicial estão ocultos</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts na tela inicial não estão ocultos</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ocultar Shorts na tela inscrições</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts na tela inscrições estão ocultos</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts na tela inscrições não estão ocultos</string>
+ <string name="revanced_hide_shorts_search_title">Ocultar Shorts nos resultados de pesquisa</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts no resultados de pesquisa estão ocultos</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts nos resultados da pesquisa são mostrados</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ocultar botão seja membro</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Botão seja membro está oculto</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Botão seja membro não está oculto</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ocultar botão inscreva-se</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Botão inscreva-se está oculto</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Botão inscreva-se não está oculto</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ocultar botões de sobreposição pausados</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Botões de sobreposição pausados estão ocultos</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Botões de sobreposição pausados são mostrados</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ocultar botão Comprar</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Botão comprar está oculto</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Botão comprar não está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Esconder botão de super obrigado</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">O botão de super agradecimento está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">O botão de super agradecimento é mostrado</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ocultar produtos marcados</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Produtos marcados estão ocultos</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Produtos marcados são mostrados</string>
+ <string name="revanced_hide_shorts_location_label_title">Ocultar rótulo de localização</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Rótulo de localização está oculto</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Rótulo de localização é mostrado</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ocultar botão salvar música na lista de reprodução</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Salvar música na lista de reprodução está oculta</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Salvar música na lista de reprodução não está oculta</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ocultar sugestões de busca</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Sugestões de pesquisa estão ocultas</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Sugestões de pesquisa são mostradas</string>
+ <string name="revanced_hide_shorts_like_button_title">Ocultar botão gostei</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Botão gostei está oculto</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Botão gostei não está oculto</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ocultar botão não gostei</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Botão não gostei está oculto</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Botão não gostei não está oculto</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ocultar botão comentários</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Botão comentários está oculto</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Botão comentários não está oculto</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ocultar botão remix</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Botão remix está oculto</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Botão remix não está oculto</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ocultar botão compartilhar</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Botão compartilhar está oculto</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Botão compartilhar não está oculto</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ocultar painel de informações</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Painel de informações está oculto</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Painel de informações não estão oculto</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ocultar barra de canais</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Barra de canal está oculta</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra de canal não está oculta</string>
+ <string name="revanced_hide_shorts_video_title_title">Ocultar título do vídeo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Título está oculto</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titulo não está oculta</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ocultar rótulo de metadados de som</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Rótulo de metadados está oculto</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Rótulo de metadados não está oculto</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ocultar rótulo completo do link do vídeo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Rótulo do link do vídeo está oculto</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Rótulo do link do vídeo não está oculto</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ocultar botão som</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Botão som está oculto</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Botão som não está oculto</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ocultar barra de navegação</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Barra de navegação está oculta</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Barra de navegação não está oculta</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Desativar tela finais com vídeo sugerido</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Vídeo sugerido está desativado</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Vídeo sugerido está ativado</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ocultar tempo do vídeo</string>
+ <string name="revanced_hide_timestamp_summary_on">Tempo está oculto</string>
+ <string name="revanced_hide_timestamp_summary_off">Tempo não está oculto</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ocultar painel popup de reprodutor</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Painel pop-up do reprodutor está oculto</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Painel pop-up do reprodutor não está oculto</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacidade do reprodutor</string>
+ <string name="revanced_player_overlay_opacity_summary">Valor de opacidade entre 0-100, onde 0 é transparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacidade do jogador deve estar entre 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Ocultar</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Não gostei indisponível por um tempo (API expirou)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Não gostei indisponível (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Não gostei indisponível (limite de API atingido)</string>
+ <string name="revanced_ryd_failure_generic">Não gostei indisponível (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recarregue o vídeo para votar usando Voltar o Youtube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Não gostei está oculto</string>
+ <string name="revanced_ryd_enable_summary_off">Não gostei não está oculto</string>
+ <string name="revanced_ryd_shorts_title">Mostrar não gostei no Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Mostrar não gostei no Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Mostrar não gostei no Shorts\n\nNão gostei pode não aparecer no modo anonimo</string>
+ <string name="revanced_ryd_shorts_summary_off">Não mostrar não gostei no Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Não gostei com porcentagem</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Mostrar não gostei com porcentagem</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Mostrar não gostei com número</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Botão gostei compacto</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Botão gostei estilizado para largura mínima</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Botão gostei estilizado para melhor aparência</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Exibir uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Notificação flutuante será exibida se o Return YouTube Dislike não está disponível</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Notificação flutuante não será exibida se o Return YouTube Dislike não está disponível</string>
+ <string name="revanced_ryd_about">Sobre</string>
+ <string name="revanced_ryd_attribution_summary">Os dados são fornecidos pela API Return Dislike do YouTube. Toque aqui para saber mais</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Estatísticas da API do RetnYouTubeDislike deste dispositivo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tempo de resposta da API, média</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tempo de resposta da API, mínimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tempo de resposta da API, máximo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tempo de resposta da API, último vídeo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Não gostei está temporariamente indisponível - Taxa limite da API do cliente em efeito</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API de busca de votos, número de chamadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nenhuma chamada de rede feita</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d chamadas de rede realizadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API de busca de votos, números de chamadas perdidas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Nenhuma chamada de rede perdida</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d chamada de rede perdida</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Taxa limite da API do cliente</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nenhum taxa limite do cliente encontrado</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">%d taxa limite do cliente encontrado</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisegundos</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Ativar barra de busca ampla</string>
+ <string name="revanced_wide_searchbar_summary_on">Barra de busca ampla está ativada</string>
+ <string name="revanced_wide_searchbar_summary_off">Barra de busca ampla está desativada</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurar as miniaturas antigas da barra de busca</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">As miniaturas aparecerão acima da barra de busca</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">As miniaturas na barra de busca aparecerão em tela cheia</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Ativar SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock é um sistema coletivo para pular partes patrocinadas ou irritantes de vídeos do YouTube</string>
+ <string name="revanced_sb_appearance_category">Aparência</string>
+ <string name="revanced_sb_enable_voting">Mostrar botão votar</string>
+ <string name="revanced_sb_enable_voting_sum_on">Botão de votar segmento será mostrado</string>
+ <string name="revanced_sb_enable_voting_sum_off">Botão de votar não será mostrado</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Usar botão pular compacto</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Botão pular estilizado para largura mínima</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Botão pular estilizado para a melhor aparência</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ocultar automaticamente botão pular</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Ocultar botão pular após alguns segundos</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Mostrar botão pular para todo o segmento</string>
+ <string name="revanced_sb_general_skiptoast">Mostrar notificação flutuante quando pular automaticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Mostrar uma notificação flutuante quando um segmento é automaticamente pulado. Toque aqui para ver um exemplo</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Não mostrar notificação flutuante. Toque aqui para ver um exemplo</string>
+ <string name="revanced_sb_general_time_without">Mostrar duração do vídeo sem segmentos</string>
+ <string name="revanced_sb_general_time_without_sum_on">Duração do vídeo sem os segmentos, mostrado entre parênteses ao lado da duração total do vídeo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Mostrar duração total do vídeo</string>
+ <string name="revanced_sb_create_segment_category">Criando segmentos</string>
+ <string name="revanced_sb_enable_create_segment">Mostrar botão criar segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Botão criar segmento é mostrado</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Botão criar segmento não é mostrado</string>
+ <string name="revanced_sb_general_adjusting">Ajustar nova etapa de segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Número em milissegundos em que os botões de ajuste de tempo se movem ao criar segmentos</string>
+ <string name="revanced_sb_general_adjusting_invalid">Valor deve ser um número positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Ver diretrizes</string>
+ <string name="revanced_sb_guidelines_preference_sum">Diretrizes contêm regras e dicas para criar segmentos</string>
+ <string name="revanced_sb_guidelines_popup_title">Siga as diretrizes</string>
+ <string name="revanced_sb_guidelines_popup_content">Leia as diretrizes do SponsorBlock antes de criar segmentos</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Já lido</string>
+ <string name="revanced_sb_guidelines_popup_open">Me mostre</string>
+ <string name="revanced_sb_general">Geral</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Exibir uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Notificação flutuante é exibida se o SponsorBlock não está disponível</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Notificação flutuante não é exibida se o SponsorBlock não está disponível</string>
+ <string name="revanced_sb_general_skipcount">Ativar rastreamento de contagem de pulos</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Vamos o placar do Patrocinador saber quanto tempo foi salvo. Uma mensagem é enviada para o placar cada vez que um segmento é pulado</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Rastreamento de contagem de pulos não está ativado</string>
+ <string name="revanced_sb_general_min_duration">Duração mínima de segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmentos menores que este valor (em segundos) não serão mostrados ou pulados</string>
+ <string name="revanced_sb_general_uuid">Seu id privado de usuário</string>
+ <string name="revanced_sb_general_uuid_sum">Isso deve ser mantido em particular. Isto é como uma senha e não deve ser compartilhado com ninguém. Se alguém tiver isso, ele pode se passar por você</string>
+ <string name="revanced_sb_general_uuid_invalid">ID do usuário privado deve ter pelo menos 30 caracteres</string>
+ <string name="revanced_sb_general_api_url">Alterar URL da API</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlock usa esse endereço para fazer chamadas ao servidor</string>
+ <string name="revanced_sb_api_url_reset">Redefinir URL da API</string>
+ <string name="revanced_sb_api_url_invalid">URL da API é inválido</string>
+ <string name="revanced_sb_api_url_changed">Endereço da API alterada</string>
+ <string name="revanced_sb_settings_ie">Importar/Exportar Configurações</string>
+ <string name="revanced_sb_settings_copy">Copiar</string>
+ <string name="revanced_sb_settings_ie_sum">Sua configuração JSON do SponsorBlock que pode ser importada/exportada para ReVanced e outras plataformas do SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Sua configuração JSON do SponsorBlock que pode ser importada/exportada para ReVanced ou em outras plataformas do SponsorBlock. Isso inclui sua identificação de usuário privada. Certifique-se de compartilhar isso sabiamente</string>
+ <string name="revanced_sb_settings_import_successful">Configurações importadas com sucesso</string>
+ <string name="revanced_sb_settings_import_failed">Falha ao importar: %s</string>
+ <string name="revanced_sb_settings_export_failed">Falha ao exportar: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Suas configurações contêm uma id de usuário SponsorBlock particular.\n\nSeu id de usuário é como uma senha e nunca deve ser compartilhada.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Não exibir novamente</string>
+ <string name="revanced_sb_diff_segments">Alterar comportamento do segmento</string>
+ <string name="revanced_sb_segments_sponsor">Patrocinador</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoção paga, indicações pagas e anúncios diretos. Não é para autopromoção ou anúncio gratuitos para causas/criadores/websites/produtos que eles gostam</string>
+ <string name="revanced_sb_segments_selfpromo">Não-pago/Auto promoção</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Semelhante ao \'Patrocinador\' exceto pela autopromoção não remunerada. Inclui seções sobre mercadorias, doações ou informações sobre com quem colaboraram</string>
+ <string name="revanced_sb_segments_interaction">Lembrete de interação (inscrever-se)</string>
+ <string name="revanced_sb_segments_interaction_sum">Um breve lembrete para curtir, se inscrever ou segui-los no meio do conteúdo. Se for longo ou sobre algo específico, deve estar sob autopromoção</string>
+ <string name="revanced_sb_segments_highlight">Destaque</string>
+ <string name="revanced_sb_segments_highlight_sum">A parte do vídeo que a maioria das pessoas está procurando</string>
+ <string name="revanced_sb_segments_intro">Introdução/Intervalo Animado</string>
+ <string name="revanced_sb_segments_intro_sum">Um intervalo sem conteúdo real. Pode ser uma pausa, moldura estática ou uma animação repetida. Não inclui transições que contenham informações</string>
+ <string name="revanced_sb_segments_outro">Cartões finais/Créditos</string>
+ <string name="revanced_sb_segments_outro_sum">Créditos ou quando os cartões finais do YouTube aparecem. Não é para conclusões com informações</string>
+ <string name="revanced_sb_segments_preview">Prévia/Recapitulação/Gancho Narrativo</string>
+ <string name="revanced_sb_segments_preview_sum">Coleção de clipes que mostram o que está chegando ou o que aconteceu no vídeo ou em outras séries, onde todas as informações se repetem em outro lugar</string>
+ <string name="revanced_sb_segments_filler">Enrolação/Piadas</string>
+ <string name="revanced_sb_segments_filler_sum">Cenas de enrolação/piadas são inseridas apenas para enrolar ou humor que não são necessárias para compreender o tópico principal do vídeo. Isto não deve incluir segmentos que fornecem contexto ou detalhes de segundo plano</string>
+ <string name="revanced_sb_segments_nomusic">Música: Seção Sem Música</string>
+ <string name="revanced_sb_segments_nomusic_sum">Somente para uso em vídeos de música. Seções de vídeos de música sem música, que já não estão cobertas por outra categoria</string>
+ <string name="revanced_sb_skip_button_compact">Pular</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Destaque</string>
+ <string name="revanced_sb_skip_button_sponsor">Pular patrocinador</string>
+ <string name="revanced_sb_skip_button_selfpromo">Pular promoção</string>
+ <string name="revanced_sb_skip_button_interaction">Pular interação</string>
+ <string name="revanced_sb_skip_button_highlight">Pular para destaque</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Pular introdução</string>
+ <string name="revanced_sb_skip_button_intro_middle">Pular intervalo</string>
+ <string name="revanced_sb_skip_button_intro_end">Pular intervalo</string>
+ <string name="revanced_sb_skip_button_outro">Pular encerramento</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Pular prévia</string>
+ <string name="revanced_sb_skip_button_preview_middle">Pular prévia</string>
+ <string name="revanced_sb_skip_button_preview_end">Pular recapitulação</string>
+ <string name="revanced_sb_skip_button_filler">Pular enrolação</string>
+ <string name="revanced_sb_skip_button_nomusic">Pular sem música</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Pular segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Patrocinador pulado</string>
+ <string name="revanced_sb_skipped_selfpromo">Auto promoção pulada</string>
+ <string name="revanced_sb_skipped_interaction">Lembrete irritante pulado</string>
+ <string name="revanced_sb_skipped_highlight">Pulado para destaque</string>
+ <string name="revanced_sb_skipped_intro_beginning">Introdução pulada</string>
+ <string name="revanced_sb_skipped_intro_middle">Intervalo pulada</string>
+ <string name="revanced_sb_skipped_intro_end">Intervalo pulada</string>
+ <string name="revanced_sb_skipped_outro">Encerramento pulado</string>
+ <string name="revanced_sb_skipped_preview_beginning">Prévia pulada</string>
+ <string name="revanced_sb_skipped_preview_middle">Prévia pulada</string>
+ <string name="revanced_sb_skipped_preview_end">Recapitulação pulado</string>
+ <string name="revanced_sb_skipped_filler">Filtro pulado</string>
+ <string name="revanced_sb_skipped_nomusic">Seção sem música pulado</string>
+ <string name="revanced_sb_skipped_unsubmitted">Segmento não enviado pulado</string>
+ <string name="revanced_sb_skipped_multiple_segments">Vários segmentos pulado</string>
+ <string name="revanced_sb_skip_automatically">Pular automaticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Pular automaticamente uma vez</string>
+ <string name="revanced_sb_skip_showbutton">Mostrar botão pular</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostrar na barra de busca</string>
+ <string name="revanced_sb_skip_ignore">Desativar</string>
+ <string name="revanced_sb_submit_failed_invalid">Não foi possível votar no segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock está temporariamente desligado</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Não é possível enviar o segmento (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Não foi possível enviar o segmento.\nLimite de Taxa (muitos do mesmo usuário ou IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Não é possível enviar o segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Não é possível enviar o segmento.\nJá existe</string>
+ <string name="revanced_sb_submit_succeeded">Segmento enviado com sucesso</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporariamente indisponível (API expirou)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporariamente indisponível (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporariamente indisponível</string>
+ <string name="revanced_sb_vote_failed_timeout">Não foi possível votar para segmento (API expirou)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Não é possível votar para o segmento (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Não foi possível votar no segmento: %s</string>
+ <string name="revanced_sb_vote_upvote">Aprovar</string>
+ <string name="revanced_sb_vote_downvote">Voto negativo</string>
+ <string name="revanced_sb_vote_category">Alterar categoria</string>
+ <string name="revanced_sb_vote_no_segments">Não há segmentos para votar</string>
+ <string name="revanced_sb_new_segment_choose_category">Escolha a categoria do segmento</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categoria está desativada nas configurações. Ative a categoria para enviar.</string>
+ <string name="revanced_sb_new_segment_title">Novo segmento SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Definir %1$02d:%2$02d:%3$03d como início ou fim de um novo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">início</string>
+ <string name="revanced_sb_new_segment_mark_end">final</string>
+ <string name="revanced_sb_new_segment_now">agora</string>
+ <string name="revanced_sb_new_segment_time_start">Tempo em que o segmento começa</string>
+ <string name="revanced_sb_new_segment_time_end">Tempo em que o segmento termina</string>
+ <string name="revanced_sb_new_segment_confirm_title">Os tempos estão corretos?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">O segmento é de\n\n%1$s\na\n%2$s\n\n(%3$s)\n\nPronto para enviar?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">O início deve ser antes do fim</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marque dois locais na barra de tempo primeiro</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Visualize o segmento e certifique-se de que ele pule sem problemas</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Editar tempo do segmento manualmente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Deseja editar o tempo de início ou fim do segmento?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Tempo inserido inválido</string>
+ <string name="revanced_sb_stats">Estatísticas</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Estatísticas temporariamente não disponíveis (a API está inativa)</string>
+ <string name="revanced_sb_stats_loading">Carregando...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock está desativado</string>
+ <string name="revanced_sb_stats_username">Seu nome de usuário: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Toque aqui para alterar seu nome de usuário</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Não foi possível alterar o nome de usuário. Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nome de usuário alterado com sucesso</string>
+ <string name="revanced_sb_stats_reputation">Sua reputação é <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Você criou <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_saved_zero">Placar do SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Você salvou pessoas de <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Toque aqui para ver as estatísticas globais e os principais colaboradores</string>
+ <string name="revanced_sb_stats_saved_sum">Isso é <b>%s</b> de suas vidas.<br>Toque aqui para ver a tabela de classificação</string>
+ <string name="revanced_sb_stats_self_saved">Você pulou <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_self_saved_sum">Isso é <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Redefinir o contador de segmentos pulados?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s horas %2$s minutos</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutos %2$s segundos</string>
+ <string name="revanced_sb_stats_saved_second_format">%s segundos</string>
+ <string name="revanced_sb_color_dot_label">Cor:</string>
+ <string name="revanced_sb_color_changed">Cor alterada</string>
+ <string name="revanced_sb_color_reset">Redefinir cor</string>
+ <string name="revanced_sb_color_invalid">Código de cor inválido</string>
+ <string name="revanced_sb_reset_color">Redefinir cor</string>
+ <string name="revanced_sb_reset">Resetar</string>
+ <string name="revanced_sb_about">Sobre</string>
+ <string name="revanced_sb_about_api_sum">Os dados são fornecidos pela API do SponsorBlock. Toque aqui para aprender mais e ver como baixar para outras plataformas</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Falsificar versão do aplicativo</string>
+ <string name="revanced_spoof_app_version_summary_on">Versão falsificada</string>
+ <string name="revanced_spoof_app_version_summary_off">Versão não falsificada</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Versão do aplicativo será falsificada para uma versão mais antiga do YouTube.\n\nIsso mudará a aparência e os recursos do aplicativo, mas efeitos colaterais desconhecidos podem ocorrer.\n\nSe desativar, é recomendável limpar os dados do aplicativo para evitar erros na UI.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Versão alvo da falsificação do aplicativo</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurar RYD no modo Shorts ocultos</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurar a velocidade de vídeo ampla & menu de qualidade</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurar aba biblioteca</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurar prateleira de lista de reprodução antiga</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.08.35 - Restaura UI antigo da interface</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Definir página inicial</string>
+ <string name="revanced_start_page_entry_0">Padrão</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Início</string>
+ <string name="revanced_start_page_entry_2">Procurar</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Inscrições</string>
+ <string name="revanced_start_page_entry_4">Explorar</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Você</string>
+ <string name="revanced_start_page_entry_7">Videos curtidos</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Histórico</string>
+ <string name="revanced_start_page_entry_9">Em alta</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Desativar continuar a reproduzir Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shorts não irá continuar reproduzindo ao iniciar o aplicativo</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts irá continuar reproduzindo ao iniciar o aplicativo</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Ativar layout de tablet</string>
+ <string name="revanced_tablet_layout_summary_on">Layout de tablet está ativado</string>
+ <string name="revanced_tablet_layout_summary_off">Layout de tablet está desativado</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Postagens da comunidade não aparecem nos layouts de tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijogador</string>
+ <string name="revanced_miniplayer_screen_summary">Alterar o estilo do player minimizado no aplicativo</string>
+ <string name="revanced_miniplayer_type_title">Tipo de minijogador</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Smartphone</string>
+ <string name="revanced_miniplayer_type_entry_3">Tábua</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderno 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderno 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderno 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ocultar botões de expansão e fechamento</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Os botões são ocultos\n(swipe miniplayer para expandir ou fechar)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Botões de expansão e fechamento são mostrados</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ocultar subtextos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Subtextos estão ocultos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Subtextos são exibidos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ocultar botões pular para frente e para trás</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Pular para frente e para trás estão escondidos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Pular para frente e para trás são mostrados</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valor de opacidade entre 0-100, onde 0 é transparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Opacidade da sobreposição de minijogador deve estar entre 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Ativar tela de carregamento em gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Tela de carregamento terá um fundo em gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Tela de carregamento terá um fundo sólido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Ativar cor personalizada da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Mostrar cor personalizada da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Mostrar cor original da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_value_title">Cor personalizada da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Cor da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valor de cor inválido da barra. Usando o valor padrão.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Início</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Inscrições</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Você</string>
+ <string name="revanced_alt_thumbnail_player_title">Reprodutor de lista de reprodução, recomendações</string>
+ <string name="revanced_alt_thumbnail_search_title">Resultado da busca</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Miniaturas originais</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Miniaturas originais</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & captura estática</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Captura estática</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow fornece miniaturas de forma coletivas para vídeos do YouTube. Estas miniaturas são frequentemente mais relevantes do que as fornecidas pelo YouTube\n\nSe ativado, URLs de vídeo serão enviadas para o servidor API e nenhum outro dado será enviado. Se um vídeo não tiver miniaturas DeArrow, então o original ou captura estática será mostrado\n\nToque aqui para saber mais sobre o DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Exibir uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Notificação flutuante será exibida se DeArrow não estiver disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Notificação flutuante não será exibida se DeArrow não estiver disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">Cache endpoint da URL das miniaturas DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Captura estática</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Captura estática são tiradas do começo/meio/fim de cada vídeo. Estas imagens são construídas no YouTube e nenhuma API externa é usada</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usar captura estática rápida</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Usando a qualidade média em capturada estática. As miniaturas carregam mais rapidamente, mas transmissões ao vivo, não lançados ou vídeos muito antigos podem exibir miniaturas em branco</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Usando qualidade alta em captura estática</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tempo do vídeo para a captura estática</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Início do vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Meio do vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Final do vídeo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow temporariamente indisponível. (status: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow temporariamente indisponível</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Exibir avisos do ReVanced</string>
+ <string name="revanced_announcements_summary_on">Avisos são mostrados na inicialização</string>
+ <string name="revanced_announcements_summary_off">Avisos não são mostrados na inicialização</string>
+ <string name="revanced_announcements_enabled_summary">Mostrar avisos na inicialização</string>
+ <string name="revanced_announcements_connection_failed">Falha ao conectar ao provedor de avisos</string>
+ <string name="revanced_announcements_dialog_dismiss">Dispensar</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Ativar repetição automática</string>
+ <string name="revanced_auto_repeat_summary_on">Repetição automática está ativada</string>
+ <string name="revanced_auto_repeat_summary_off">Repetição automática está desativada</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Falsificar dimensões do dispositivo</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensões do dispositivo falsificada\n\nQualidades maiores de vídeo podem ser desbloqueadas, mas você pode experimentar uma reprodução de vídeo, desgaste na bateria e efeitos colaterais desconhecidos</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensões do dispositivo não falsificadas\n\nAtivando isso pode desbloquear maiores qualidades de vídeo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Ativar isto pode causar travamentos na reprodução de vídeo, desgaste na bateria e efeitos colaterais desconhecidos.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Configurações do GmsCore</string>
+ <string name="microg_settings_summary">Configurações do GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Ignorar redirecionamentos de URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Redirecionamentos de URL estão ignorados</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Redirecionamentos de URL não estão ignorados</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Abrir links no navegador</string>
+ <string name="revanced_external_browser_summary_on">Abrir links externamente</string>
+ <string name="revanced_external_browser_summary_off">Abrir links no aplicativo</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Reprodução de fundo</string>
+ <string name="revanced_background_playback_summary">Esta configuração pode ser encontrada em Configurações -> Fundo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Remover parâmetro de consulta de rastreamento</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parâmetro da consulta de rastreamento foi removido dos links</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parâmetro da consulta de rastreamento não foi removido dos links</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Desativar zoom tátil</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Zoom tátil está ativado</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Zoom tátil está desativado</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Qualidade automática</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Lembrar mudanças na qualidade do vídeo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Mudança na qualidade se aplicam a todos os vídeos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Mudança na qualidade só se aplicam ao vídeo atual</string>
+ <string name="revanced_video_quality_default_wifi_title">Qualidade padrão do vídeo no Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Qualidade padrão do vídeo nos dados móveis</string>
+ <string name="revanced_remember_video_quality_mobile">dados móveis</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Qualidade padrão %1$s alterada para: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostrar botão de diálogo de velocidade</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Botão não esta oculto</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Botão não está visível</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocidade de reprodução personalizada</string>
+ <string name="revanced_custom_playback_speeds_summary">Adicionar ou alterar as velocidades de reprodução disponíveis</string>
+ <string name="revanced_custom_playback_speeds_invalid">Velocidades personalizadas devem ser menores que %s. Usando valores padrão.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Velocidade personalizada de reprodução inválida. Usando valores padrão.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Lembrar mudança na velocidade de reprodução</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Mudanças de velocidade de reprodução se aplicam a todos os vídeos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Mudanças na velocidade de reprodução só se aplicam ao vídeo atual</string>
+ <string name="revanced_playback_speed_default_title">Velocidade padrão de reprodução</string>
+ <string name="revanced_remember_playback_speed_toast">Velocidade padrão alterada para: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurar menu antigo de qualidade de vídeo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Menu antigo de qualidade de vídeo está sendo mostrado</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Menu antigo de qualidade de vídeo não está sendo mostrado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Ativar gesto na barra de busca</string>
+ <string name="revanced_slide_to_seek_summary_on">Gesto na barra de busca está ativado</string>
+ <string name="revanced_slide_to_seek_summary_off">Gesto na barra de busca está desativado</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Cliente de Spoof</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof do cliente para evitar problemas de reprodução</string>
+ <string name="revanced_spoof_client_title">Cliente de Spoof</string>
+ <string name="revanced_spoof_client_summary_on">Cliente é falsificado</string>
+ <string name="revanced_spoof_client_summary_off">Cliente não é falsificado\n\nA reprodução de vídeo pode não funcionar</string>
+ <string name="revanced_spoof_client_user_dialog_message">Desativar essa configuração pode causar problemas de reprodução de vídeo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Cliente Spoof para iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">O cliente está spoofed para o iOS\n\nOs efeitos colaterais incluem:\n• Nenhum vídeo HDR\n• O histórico de assistir pode não funcionar\n• Qualidades de vídeo maiores podem estar faltando\n• Transmissões ao vivo não podem ser reproduzidas como áudio\n• Transmissões ao vivo não disponíveis no Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">O cliente está spoofendido para Android VR\n\nOs efeitos colaterais incluem:\n• Nenhum vídeo HDR\n• As crianças não reproduzem\n• Os vídeos pausados podem retomar aleatoriamente\n• Miniaturas de barra de busca curta de baixa qualidade\n• Botão de ação para download está sempre oculto\n• Cartões de tela final sempre estão ocultos</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Miniaturas Spoof client não disponíveis (API timeout)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Miniaturas Spoof client temporariamente não disponíveis: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Assinatura falsa app</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Disfarçar a assinatura do app para impedir problemas de reprodução</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Assinatura falsa app</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">A assinatura do aplicativo falsificado\n\nEfeitos laterais incluem:\n• Taxa de bits melhorada não está disponível\n• Os vídeos não podem ser baixados\n• Nenhuma miniatura na barra de busca para vídeos pagos</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Assinatura do app não falsificado\n\nA reprodução de vídeo pode não funcionar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Desativar essa configuração causará problemas de reprodução de vídeo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Assinatura falsa app no feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">A assinatura de apps spoofed\n\nEfeitos colaterais incluem:\n• Feed videos não possuem legendas\n• Vídeos alimentados automaticamente aparecerão em seu histórico de assistidos</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Assinatura de aplicativos não oculta para vídeos de feeds\n\nVídeos de feed serão reproduzidos por menos de 1 minuto antes de encontrar problemas de reprodução</string>
+ <string name="revanced_spoof_storyboard_title">Esfarrapador narrativo</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard falsificado</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard não falsificado\n\nOs efeitos colaterais incluem:\n• Modo sem ambiente\n• Miniaturas da barra de busca estão ocultas</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard temporariamente não está disponível (API timeout)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Esboço de storyboard temporariamente indisponível: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Ativar o brilho HDR automático</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">O brilho HDR automático está ativado</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">O brilho HDR automático está desativado</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquear anúncios de áudio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anúncios de áudio estão bloqueados</string>
+ <string name="revanced_block_audio_ads_summary_off">Anúncios de áudio não estão bloqueados</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s não está disponível. Anúncios podem ser exibidos. Tente alternar para outro serviço de bloqueio de anúncios nas configurações.</string>
+ <string name="revanced_embedded_ads_service_failed">O servidor %s retornou um erro. Os anúncios podem ser exibidos. Tente alternar para outro serviço de bloqueio de anúncios nas configurações.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquear anúncios de vídeo incorporados</string>
+ <string name="revanced_block_embedded_ads_entry_1">Desativado</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquear anúncios em vídeo</string>
+ <string name="revanced_block_video_ads_summary_on">Anúncios de vídeo estão bloqueados</string>
+ <string name="revanced_block_video_ads_summary_off">Anúncios de vídeo não estão bloqueados</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">Mensagem excluída</string>
+ <string name="revanced_show_deleted_messages_title">Mostrar mensagens apagadas</string>
+ <string name="revanced_show_deleted_messages_entry_1">Não mostrar mensagens apagadas</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ocultar mensagens apagadas atrás de um spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostrar mensagens apagadas como texto riscado</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Resgatar Pontos do Canal automaticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Pontos do Canal estão sendo resgatados automaticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Pontos do Canal não estão sendo resgatados automaticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Ativar modo de depuração da Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Modo de depuração da Twitch ativado (não recomendado)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Modo de depuração da Twitch está desativado</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Configurações do ReVanced</string>
+ <string name="revanced_ads_screen_title">Anúncios</string>
+ <string name="revanced_ads_screen_summary">Configurações de bloqueio de anúncios</string>
+ <string name="revanced_chat_screen_title">Bate-papo</string>
+ <string name="revanced_chat_screen_summary">Configurações de bate-papo</string>
+ <string name="revanced_misc_screen_title">Outras configurações</string>
+ <string name="revanced_misc_screen_summary">Outras configurações</string>
+ <string name="revanced_general_category_title">Configurações gerais</string>
+ <string name="revanced_other_category_title">Outras configurações</string>
+ <string name="revanced_client_ads_category_title">Anúncios do lado do cliente</string>
+ <string name="revanced_surestream_ads_category_title">Anúncios em modo seguro do lado do servidor</string>
+ <string name="revanced_twitch_debug_title">Registro de depuração</string>
+ <string name="revanced_twitch_debug_summary_on">Registro de depuração está ativado</string>
+ <string name="revanced_twitch_debug_summary_off">Registro de depuração está desativado</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-pt-rPT/strings.xml b/src/main/resources/addresources/values-pt-rPT/strings.xml
new file mode 100644
index 0000000000..8f2cf4bcb4
--- /dev/null
+++ b/src/main/resources/addresources/values-pt-rPT/strings.xml
@@ -0,0 +1,1198 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Desejas continuar?</string>
+ <string name="revanced_settings_reset">Redefinir</string>
+ <string name="revanced_settings_restart_title">Atualizar e reiniciar</string>
+ <string name="revanced_settings_restart">Reiniciar</string>
+ <string name="revanced_settings_import">Importar</string>
+ <string name="revanced_settings_import_copy">Copiar</string>
+ <string name="revanced_settings_import_reset">Configurações redefinidas para o padrão</string>
+ <string name="revanced_settings_import_success">Configurações %d importadas</string>
+ <string name="revanced_settings_import_failure_parse">A importação falhou: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore não está instalado. Instale-o.</string>
+ <string name="gms_core_dialog_title">Ação necessária</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">O MicroG GmsCore não tem permissão para ser executado em segundo plano.\n\nSiga o guia \"Não mate a minha aplicação\" do teu telemóvel e aplica as instruções no tua aplicação MicroG.\n\nIsto é necessário para que a aplicação funcione.</string>
+ <string name="gms_core_dialog_open_website_text">Abrir site</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">As otimizações da bateria do MicroG GmsCore devem ser desativadas para evitar problemas.\n\nToca no botão Continuar e desativa as otimizações da bateria.</string>
+ <string name="gms_core_dialog_continue_text">Continuar</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Você está usando a versão ReVanced Patches <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Observação</string>
+ <string name="revanced_settings_about_links_dev_body">Esta versão é um pré-lançamento e você pode ter problemas inesperados</string>
+ <string name="revanced_settings_about_links_header">Links oficiais</string>
+ <string name="revanced_pref_import_export_title">Importar / Exportar</string>
+ <string name="revanced_pref_import_export_summary">Importar / Exportar configurações do ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Sobre</string>
+ <string name="revanced_settings_screen_01_ads_title">Anúncios</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniaturas alternativas</string>
+ <string name="revanced_settings_screen_03_feed_title">Recomendações</string>
+ <string name="revanced_settings_screen_04_player_title">Reprodutor</string>
+ <string name="revanced_settings_screen_05_general_title">Interface geral</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Barra de Busca</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controlos por Gestos</string>
+ <string name="revanced_settings_screen_11_misc_title">Diversos</string>
+ <string name="revanced_settings_screen_12_video_title">Vídeo</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depuração</string>
+ <string name="revanced_debug_screen_summary">Ativar ou desativar opções de depuração</string>
+ <string name="revanced_debug_title">Registo da depuração</string>
+ <string name="revanced_debug_summary_on">Os registos da depuração estão ativados</string>
+ <string name="revanced_debug_summary_off">Os registos da depuração estão desativados</string>
+ <string name="revanced_debug_protobuffer_title">Registo do buffer de protocolo</string>
+ <string name="revanced_debug_protobuffer_summary_on">Registos de depuração incluem buffer de sondagem</string>
+ <string name="revanced_debug_protobuffer_summary_off">Os registos da depuração não incluem buffer de perfil</string>
+ <string name="revanced_debug_stacktrace_title">Pilha de registos</string>
+ <string name="revanced_debug_stacktrace_summary_on">Os registos da depuração incluem stack trace</string>
+ <string name="revanced_debug_stacktrace_summary_off">Os registos da depuração não incluem stack trace</string>
+ <string name="revanced_debug_toast_on_error_title">Mostrar brinde com erro de ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast visível se um erro ocorrer</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast não visível se um erro ocorrer</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Desligar todos os avisos de erros irá esconder todas as notificações de erro do ReVanced.\n\nNão serás notificado de eventos inesperados.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Desativar brilho do botão de inscrição / Curtir</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">O botão de curtir e assinar não brilhará quando mencionado</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">O botão de curtir e subscrever brilhará quando mencionado</string>
+ <string name="revanced_hide_gray_separator_title">Esconder separador cinza</string>
+ <string name="revanced_hide_gray_separator_summary_on">Os separadores cinzentos estão escondidos</string>
+ <string name="revanced_hide_gray_separator_summary_off">Separadores cinzas são visíveis</string>
+ <string name="revanced_hide_channel_watermark_title">Esconder a Marca D\'Água do canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">A Marca D\'Água está escondida</string>
+ <string name="revanced_hide_channel_watermark_summary_off">A Marca D\'Água está visível</string>
+ <string name="revanced_hide_horizontal_shelves_title">Esconder pategorias horizontais</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">As categorias estão escondidas, tais como:\n• Últimas Notícias\n• Continuar a ver\n• Explora mais canais\n• Compras\n• Veja Novamente</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Categorias são visíveis</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ocultar botão \'Juntar-se\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">O botão está escondido</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Botão é visível</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ocultar prateleira \'Para você\' na página do canal</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Categoria está escondida</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Categoria visível</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ocultar botão \'Notificar-me\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">O botão está escondido</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Botão é visível</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ocultar as recomendações \"Pessoas também assistidas\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Recomendações estão escondidas</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Recomendações são visíveis</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ocultar botão \'Mostrar mais\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">O botão está escondido</string>
+ <string name="revanced_hide_show_more_button_summary_off">Botão é visível</string>
+ <string name="revanced_hide_timed_reactions_title">Esconder reações cronometradas</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Reações temporizadas estão escondidas</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Reações temporizadas são visíveis</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Esconder cabeçalho do resultado da pesquisa</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Cabeçalho de Shelf está escondido</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Cabeçalho de Shelf é visível</string>
+ <string name="revanced_hide_channel_guidelines_title">Esconder diretrizes do canal</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Diretrizes do canal estão escondidas</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Diretrizes do canal são visíveis</string>
+ <string name="revanced_hide_expandable_chip_title">Esconder chip expansível nos vídeos</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Chips expansíveis estão escondidos</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Chips expansíveis são visíveis</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Esconder rodapé do menu de qualidade de vídeo</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">O rodapé do menu de qualidade de vídeo está escondido</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Cabeçalho do menu de qualidade de vídeo visível</string>
+ <string name="revanced_hide_community_posts_title">Esconder publicações da comunidade</string>
+ <string name="revanced_hide_community_posts_summary_on">As postagens da comunidade estão escondidas</string>
+ <string name="revanced_hide_community_posts_summary_off">Os posts da comunidade são visíveis</string>
+ <string name="revanced_hide_compact_banner_title">Esconder banners compactos</string>
+ <string name="revanced_hide_compact_banner_summary_on">Banners compactos estão escondidos</string>
+ <string name="revanced_hide_compact_banner_summary_off">Banners compactos são visíveis</string>
+ <string name="revanced_hide_movies_section_title">Esconder seção de filmes</string>
+ <string name="revanced_hide_movies_section_summary_on">Seção de filmes está escondida</string>
+ <string name="revanced_hide_movies_section_summary_off">Seção de filmes é visível</string>
+ <string name="revanced_hide_feed_survey_title">Esconder pesquisas de alimentação</string>
+ <string name="revanced_hide_feed_survey_summary_on">Inquéritos de alimentação estão escondidos</string>
+ <string name="revanced_hide_feed_survey_summary_off">Pesquisas de alimentação são visíveis</string>
+ <string name="revanced_hide_community_guidelines_title">Esconder orientações da comunidade</string>
+ <string name="revanced_hide_community_guidelines_summary_on">As orientações comunitárias estão escondidas</string>
+ <string name="revanced_hide_community_guidelines_summary_off">As diretrizes da comunidade são visíveis</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Esconder orientações da comunidade de assinantes</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">As diretrizes da comunidade assinantes estão escondidas</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">As diretrizes da comunidade são visíveis</string>
+ <string name="revanced_hide_channel_member_shelf_title">Esconder pategoria dos membros do canal</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Categoria de membros do canal escondida</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Categoria dos membros do canal é visível</string>
+ <string name="revanced_hide_emergency_box_title">Esconder caixas de emergência</string>
+ <string name="revanced_hide_emergency_box_summary_on">Caixas de emergência estão escondidas</string>
+ <string name="revanced_hide_emergency_box_summary_off">Caixas de emergência são visíveis</string>
+ <string name="revanced_hide_info_panels_title">Esconder painéis de informação</string>
+ <string name="revanced_hide_info_panels_summary_on">Painéis de informação estão escondidos</string>
+ <string name="revanced_hide_info_panels_summary_off">Painéis de informação são visíveis</string>
+ <string name="revanced_hide_medical_panels_title">Esconder painéis médicos</string>
+ <string name="revanced_hide_medical_panels_summary_on">Painéis médicos estão escondidos</string>
+ <string name="revanced_hide_medical_panels_summary_off">Painéis médicos são visíveis</string>
+ <string name="revanced_hide_channel_bar_title">Esconder barra do canal</string>
+ <string name="revanced_hide_channel_bar_summary_on">A barra do canal está escondida</string>
+ <string name="revanced_hide_channel_bar_summary_off">Barra de canal exibida</string>
+ <string name="revanced_hide_playables_title">Ocultar Reprodução</string>
+ <string name="revanced_hide_playables_summary_on">Reproduzíveis estão escondidos</string>
+ <string name="revanced_hide_playables_summary_off">Reproduzíveis são visíveis</string>
+ <string name="revanced_hide_quick_actions_title">Esconder ações rápidas em ecrã cheia</string>
+ <string name="revanced_hide_quick_actions_summary_on">Ações rápidas estão escondidas</string>
+ <string name="revanced_hide_quick_actions_summary_off">Ações rápidas são visíveis</string>
+ <string name="revanced_hide_related_videos_title">Esconder vídeos relacionados em ações rápidas</string>
+ <string name="revanced_hide_related_videos_summary_on">Vídeos relacionados são escondidos</string>
+ <string name="revanced_hide_related_videos_summary_off">Vídeos relacionados são exibidos</string>
+ <string name="revanced_hide_image_shelf_title">Esconder pategoria da imagem nos resultados da busca</string>
+ <string name="revanced_hide_image_shelf_summary_on">Categoria de imagem escondida</string>
+ <string name="revanced_hide_image_shelf_summary_off">Categoria de imagem é visível</string>
+ <string name="revanced_hide_latest_posts_ads_title">Esconder as últimas publicações</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Últimas postagens estão escondidas</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Últimas postagens são visíveis</string>
+ <string name="revanced_hide_mix_playlists_title">Esconder mixagem de playlists</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Playlists mistas estão escondidas</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Playlists misturadas são visíveis</string>
+ <string name="revanced_hide_artist_cards_title">Esconder cartões de artista</string>
+ <string name="revanced_hide_artist_cards_summary_on">Cards do artista estão escondidos</string>
+ <string name="revanced_hide_artist_cards_summary_off">Cards do artista são visíveis</string>
+ <string name="revanced_hide_chips_shelf_title">Esconder pategoria de batatas fritas</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Categoria de Chips está escondida</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Categoria de chips é visível</string>
+ <string name="revanced_hide_attributes_section_title">Ocultar seção de atributos</string>
+ <string name="revanced_hide_attributes_section_summary_on">Locais em destaque\", seções de Jogos e Músicas estão ocultas</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Lugares de destaque\', Jogos e Músicas são mostrados</string>
+ <string name="revanced_hide_chapters_section_title">Ocultar seção de Capítulos</string>
+ <string name="revanced_hide_chapters_section_summary_on">Seção de capítulos está oculta</string>
+ <string name="revanced_hide_chapters_section_summary_off">Seção de capítulos é mostrada</string>
+ <string name="revanced_hide_podcast_section_title">Ocultar seção \'Explorar podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">A seção \'Explorar podcast\' está oculta</string>
+ <string name="revanced_hide_podcast_section_summary_off">A seção \'Explorar o podcast\' é mostrada</string>
+ <string name="revanced_hide_info_cards_section_title">Esconder seção de cartões de informações</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Seção de cartões de informações está escondida</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Mostrar a seção de cartões de informações</string>
+ <string name="revanced_hide_transcript_section_title">Ocultar seção de transcrição</string>
+ <string name="revanced_hide_transcript_section_summary_on">Seção de transcrição escondida</string>
+ <string name="revanced_hide_transcript_section_summary_off">Seção de transcrição exibida</string>
+ <string name="revanced_hide_description_components_screen_title">Descrição do vídeo</string>
+ <string name="revanced_hide_description_components_screen_summary">Esconder ou mostrar componentes de descrição do vídeo</string>
+ <string name="revanced_custom_filter_screen_title">Filtro personalizado</string>
+ <string name="revanced_custom_filter_screen_summary">Esconder componentes usando filtros personalizados</string>
+ <string name="revanced_custom_filter_title">Ativar filtro personalizado</string>
+ <string name="revanced_custom_filter_summary_on">O filtro personalizado está ativado</string>
+ <string name="revanced_custom_filter_summary_off">Filtro personalizado está desativado</string>
+ <string name="revanced_custom_filter_strings_title">Filtro personalizado</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista de strings de construção de caminhos de componente para filtrar separadas por nova linha</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtro personalizado inválido: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Esconder conteúdo da palavra-chave</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Esconder vídeos de busca e atualização usando filtros de palavra-chave</string>
+ <string name="revanced_hide_keyword_content_home_title">Esconder vídeos de ecrã inicial com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Vídeos na aba inicial são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Vídeos na aba inicial não são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Esconder vídeos de assinaturas com palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Vídeos na guia de subscrições são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Vídeos na guia de subscrições não são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_title">Esconder resultados da busca por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Resultados da pesquisa são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Os resultados da pesquisa não são filtrados por palavras-chave</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Palavras-chave a esconder</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Palavras-chave e frases para esconder, separados por novas linhas\n\nPalavras com letras maiúsculas no meio devem ser inseridas com letras maiúsculas (ex: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Sobre a filtragem por palavra-chave</string>
+ <string name="revanced_hide_keyword_content_about_summary">Home/Assinatura/Busca resultados são filtrados para esconder conteúdo que corresponde às frases chave\n\nLimitações\n• Alguns abreviados podem não ser escondidados\n• Alguns componentes da UI podem não ser escondidados\n• Procurar por uma palavra-chave pode não mostrar resultados</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Chave inválida. Não pode usar: \'%s\' como filtro</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Chave inválida. \'%1$s\' é menor que %2$d caracteres</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Palavra-chave \'$s\' irá ocultar todos os vídeos</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Esconder anúncios gerais</string>
+ <string name="revanced_hide_general_ads_summary_on">Anúncios gerais estão escondidos</string>
+ <string name="revanced_hide_general_ads_summary_off">Anúncios gerais são exibidos</string>
+ <string name="revanced_hide_fullscreen_ads_title">Esconder anúncios em ecrã cheia</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Os anúncios de tela cheia são ocultos\n\nEste recurso está disponível apenas para dispositivos mais antigos</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Os anúncios são visíveis em ecrã cheia</string>
+ <string name="revanced_hide_buttoned_ads_title">Esconder anúncios com botão</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Anúncios com botões estão escondidos</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Os anúncios com botões são visíveis</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ocultar rótulo de promoção paga</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">O rótulo de promoção pago está oculto</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Rótulo de promoção pago é mostrado</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Esconder cartões autopatrocinados</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Cartões auto-patrocinados estão escondidos</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Cartões auto-patrocinados são visíveis</string>
+ <string name="revanced_hide_products_banner_title">Esconder banner para ver os produtos</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner está escondido</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner é visível</string>
+ <string name="revanced_hide_shopping_links_title">Esconder links de compras na descrição do vídeo</string>
+ <string name="revanced_hide_shopping_links_summary_on">Links de compras estão escondidos</string>
+ <string name="revanced_hide_shopping_links_summary_off">Links de compras são visíveis</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ocultar o botão \'Visitar loja\' nas páginas do canal</string>
+ <string name="revanced_hide_visit_store_button_summary_on">O botão está escondido</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Botão é visível</string>
+ <string name="revanced_hide_web_search_results_title">Esconder resultados da pesquisa web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Resultados de pesquisa web estão escondidos</string>
+ <string name="revanced_hide_web_search_results_summary_off">Resultados de pesquisa web são visíveis</string>
+ <string name="revanced_hide_merchandise_banners_title">Esconder banner de mercadoria</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Banners de mercadoria estão escondidos</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Banners de mercadoria são visíveis</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ocultar anúncios em tela cheia só funciona com dispositivos antigos</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Esconder promoções Premium do YouTube</string>
+ <string name="revanced_hide_get_premium_summary_on">As promoções do YouTube Premium sob o reprodutor de vídeo estão escondidas</string>
+ <string name="revanced_hide_get_premium_summary_off">Promoções do YouTube Premium sob o reprodutor de vídeo são visíveis</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Esconder anúncios do vídeo</string>
+ <string name="revanced_hide_video_ads_summary_on">Anúncios de vídeo estão escondidos</string>
+ <string name="revanced_hide_video_ads_summary_off">Anúncios de vídeo são visíveis</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiada</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL com timestamp copiado</string>
+ <string name="revanced_copy_video_url_title">Mostrar botão de URL de vídeo copiado</string>
+ <string name="revanced_copy_video_url_summary_on">Botão é visível. Toque para copiar a URL do vídeo. Toque e segure para copiar a URL do vídeo com timestamp</string>
+ <string name="revanced_copy_video_url_summary_off">O botão NÃO está visível</string>
+ <string name="revanced_copy_video_url_timestamp_title">Mostrar botão de copiar timestamp URL</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Botão é visível. Toque para copiar a URL do vídeo com timestamp. Toque e segure para copiar vídeos sem timestamp</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">O botão NÃO está visível</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Remover diálogo discreto do visualizador</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">A caixa de diálogo será removida</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">A caixa de diálogo será exibida</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Isto não ignora a restrição de idade, apenas a aceita automaticamente.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Downloads externos</string>
+ <string name="revanced_external_downloader_screen_summary">Configurações para usar um downloader externo</string>
+ <string name="revanced_external_downloader_title">Mostrar botão externo de download</string>
+ <string name="revanced_external_downloader_summary_on">Mostrar botão de download no reprodutor</string>
+ <string name="revanced_external_downloader_summary_off">Botão de download não exibido no reprodutor</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Substituir botão de ação de download</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Botão de download abre seu downloader externo</string>
+ <string name="revanced_external_downloader_action_button_summary_off">O botão de download abre o downloader nativo</string>
+ <string name="revanced_external_downloader_name_title">Nome do pacote baixador</string>
+ <string name="revanced_external_downloader_name_summary">Nome do pacote do seu aplicativo de downloader instalado, como NewPipe ou Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s não está instalado. Por favor, instale-o.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Desativar gesto de busca precisa</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gesto desativado</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gesto ativado</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Ativar barra de busca</string>
+ <string name="revanced_seekbar_tapping_summary_on">As toques Seekbar estão ativadas</string>
+ <string name="revanced_seekbar_tapping_summary_off">As toques Seekbar estão desativadas</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Ativar gesto de brilho</string>
+ <string name="revanced_swipe_brightness_summary_on">O deslize de brilho está ativado</string>
+ <string name="revanced_swipe_brightness_summary_off">O deslize de brilho está desativado</string>
+ <string name="revanced_swipe_volume_title">Ativar gesto de volume</string>
+ <string name="revanced_swipe_volume_summary_on">Deslizar por volume está ativado</string>
+ <string name="revanced_swipe_volume_summary_off">Deslizar por volume está desativado</string>
+ <string name="revanced_swipe_press_to_engage_title">Ativar gesto pressionar-para-deslizar</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Pressionar-para-deslizar está habilitado</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Pressionar-para-deslizar está desativado</string>
+ <string name="revanced_swipe_haptic_feedback_title">Ativar resposta ao toque</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Retorno tátil ativado</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Retorno tátil está desativado</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Salvar e restaurar brilho</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Salvar e restaurar o brilho quando sair ou entrar em ecrã cheia</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Não salvar e restaurar o brilho quando sair ou entrar em ecrã cheia</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Ativar gesto de brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Deslizando para baixo até o menor valor do gesto de brilho, habilite o brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Deslizando para baixo até o menor valor não habilita o brilho automático</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automático</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tempo limite de sobreposição</string>
+ <string name="revanced_swipe_overlay_timeout_summary">A quantidade de milissegundos que a sobreposição é visível</string>
+ <string name="revanced_swipe_text_overlay_size_title">Deslize para sobrepor tamanho do texto</string>
+ <string name="revanced_swipe_text_overlay_size_summary">O tamanho do texto para sobreposição de deslize</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Visibilidade do fundo</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">A visibilidade do fundo da sobreposição de deslize</string>
+ <string name="revanced_swipe_threshold_title">Limite de magnitude</string>
+ <string name="revanced_swipe_threshold_summary">A quantidade limite para deslizar irá ocorrer</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Desativar legendas automáticas</string>
+ <string name="revanced_auto_captions_summary_on">Legendas automáticas desativadas</string>
+ <string name="revanced_auto_captions_summary_off">Legendas automáticas estão ativadas</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Botões de ação</string>
+ <string name="revanced_hide_buttons_screen_summary">Esconder ou mostrar botões sob vídeos</string>
+ <string name="revanced_hide_like_dislike_button_title">Esconder Curtir e Descurtir</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Botões de Curtir e Desmarcar estão escondidos</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Botões de Curtir e Desmarcar são visíveis</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Esconder compartilhamento</string>
+ <string name="revanced_hide_share_button_summary_on">Botão Compartilhar está escondido</string>
+ <string name="revanced_hide_share_button_summary_off">Botão Compartilhar é visível</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Esconder relatório</string>
+ <string name="revanced_hide_report_button_summary_on">O botão de relatório está escondido</string>
+ <string name="revanced_hide_report_button_summary_off">Botão de relatório é visível</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Esconder Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Botão de remixar está escondido</string>
+ <string name="revanced_hide_remix_button_summary_off">Botão de remixar é visível</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Esconder download</string>
+ <string name="revanced_hide_download_button_summary_on">O botão download está escondido</string>
+ <string name="revanced_hide_download_button_summary_off">O botão \"Transferir\" está visível</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Esconder Obrigado</string>
+ <string name="revanced_hide_thanks_button_summary_on">O botão de agradecimento está escondido</string>
+ <string name="revanced_hide_thanks_button_summary_off">O botão Obrigado é visível</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">O botão do clipe está escondido</string>
+ <string name="revanced_hide_clip_button_summary_off">Botão de corte é visível</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Esconder Salvar lista de reprodução</string>
+ <string name="revanced_hide_playlist_button_summary_on">Salvar no botão de playlist está escondido</string>
+ <string name="revanced_hide_playlist_button_summary_off">Botão de salvar lista de reprodução é visível</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Esconder botão de reprodução automática</string>
+ <string name="revanced_hide_autoplay_button_summary_on">O botão de reprodução automática está escondido</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Botão de reprodução automática é visível</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Esconder botão de legendas</string>
+ <string name="revanced_hide_captions_button_summary_on">O botão de legendas está escondido</string>
+ <string name="revanced_hide_captions_button_summary_off">Botão de legendas é visível</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Esconder botão transmitir</string>
+ <string name="revanced_hide_cast_button_summary_on">Botão \"Transmitir\" está escondido</string>
+ <string name="revanced_hide_cast_button_summary_off">Botão \"Transmitir\" é visível</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Esconder ou alterar botões na barra de navegação</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Esconder Página Inicial</string>
+ <string name="revanced_hide_home_button_summary_on">O botão Início está escondido</string>
+ <string name="revanced_hide_home_button_summary_off">O botão \"Início\" está visível</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Esconder Curtos</string>
+ <string name="revanced_hide_shorts_button_summary_on">Botão curto está escondido</string>
+ <string name="revanced_hide_shorts_button_summary_off">O botão \"Shorts\" está visível</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Esconder Criar</string>
+ <string name="revanced_hide_create_button_summary_on">O botão criar está escondido</string>
+ <string name="revanced_hide_create_button_summary_off">Botão criar é visível</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Esconder assinaturas</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">O botão de assinaturas está escondido</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">O botão Subscrições está visível</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Mudar Criar com Notificações</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">O botão Criar é alternado com o botão Notificações\n\nNota: Ativar isso também forçar a ocultação de anúncios de vídeo</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">O botão criar não está alternado com o botão Notificações</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ocultar rótulos dos botões de navegação</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Marcadores estão ocultos</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Marcadores são mostrados</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Esconder ou mostrar itens do menu de saída do player</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Esconder legendas</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">O menu de legendas está escondido</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Menu de legendas é visível</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Esconder configurações adicionais</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Menu de configurações adicionais está escondido</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Menu de configurações adicionais é visível</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Esconder vídeo Loop</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Menu de vídeo Loop escondido</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Menu de vídeo Loop é visível</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Esconder modo ambiente</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Menu do modo ambiente está escondido</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Menu do modo ambiente é visível</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Esconder Ajuda & Feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Ajuda & o menu de feedback está escondido</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Ajuda & menu de feedback é visível</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Esconder velocidade de reprodução</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Velocidade de reprodução está escondida</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Velocidade de reprodução visível</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Esconder mais informações</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">O menu de informações mais está escondido</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Menu de informações mais exibido</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Esconder Ecrã de bloqueio</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Menu da ecrã de bloqueio escondido</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Ecrã de bloqueio visível</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Esconder faixa de áudio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Menu de faixa de áudio escondida</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Menu da faixa de áudio visível</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Esconder relógio no VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Assista no menu VR está escondido</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Assistir no menu VR é visível</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Esconder botões anteriores & próxima vídeo</string>
+ <string name="revanced_hide_player_buttons_summary_on">Botões estão escondidos</string>
+ <string name="revanced_hide_player_buttons_summary_off">Botões são exibidos</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Esconder cartões de álbuns</string>
+ <string name="revanced_hide_album_cards_summary_on">Cartões de álbuns estão escondidos</string>
+ <string name="revanced_hide_album_cards_summary_off">Cartões de álbum são visíveis</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentários</string>
+ <string name="revanced_comments_screen_summary">Esconder ou mostrar componentes da seção de comentários</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ocultar cabeçalho \'Comentários por membros\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">O cabeçalho \'Comentários dos membros\' está oculto</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">O cabeçalho \'Comentários dos membros\' é exibido</string>
+ <string name="revanced_hide_comments_section_title">Esconder seção de comentários</string>
+ <string name="revanced_hide_comments_section_summary_on">Seção de comentários está oculta</string>
+ <string name="revanced_hide_comments_section_summary_off">Seção de comentários exibida</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ocultar botão \'Criar curto\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">O botão \'Criar curto\' está oculto</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">O botão \'Criar Atalho\' é mostrado</string>
+ <string name="revanced_hide_comments_preview_comment_title">Esconder comentário de pré-visualização</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Visualização do comentário está escondida</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Pré-visualização de comentário é exibida</string>
+ <string name="revanced_hide_comments_thanks_button_title">Esconder botão de agradecimento</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">O botão de agradecimento está escondido</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">O botão Obrigado é visível</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ocultar botões de tempo e emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Os botões de cronograma e emoji estão ocultos</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Botões de tempo e emoji são mostrados</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Esconder caixa de crowdfunding</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Caixa de Crowdfunding está escondida</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Caixa de Crowdfunding é visível</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Esconder cartões de ecrã final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Cartões de fim de ecrã estão escondidos</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Cartões de fim de ecrã são exibidos</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Barra de filtro</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Esconder ou mostrar a barra de filtros no feed, pesquisa e vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Esconder no feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Escondido no feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Mostrar no feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Esconder na busca</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Oculto em pesquisa</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Mostrado na busca</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Esconder em vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Oculto em vídeos relacionados</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Mostrar em vídeos relacionados</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Esconder o botão do microfone flutuante</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Botão do microfone escondido</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Botão do microfone visível</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Desativar o modo ambiente em ecrã cheia</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Modo ambiente desativado</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Modo ambiente ativado</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Esconder cartões de informação</string>
+ <string name="revanced_hide_info_cards_summary_on">Cartões de informação estão escondidos</string>
+ <string name="revanced_hide_info_cards_summary_off">Cartões de informação são exibidos</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Desativar animações de números rolantes</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Números de rolagem não estão animados</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Números de rolagem estão animados</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Esconder barra de busca no reprodutor de vídeo</string>
+ <string name="revanced_hide_seekbar_summary_on">Barra de busca do vídeo está escondida</string>
+ <string name="revanced_hide_seekbar_summary_off">Barra de busca do vídeo visível</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Esconder barra de busca nas miniaturas de vídeo</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Barra de busca em miniaturas está escondida</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Barra de busca de miniaturas visível</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Esconder Shorts no feed inicial</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts in home feed estão escondidos</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts in home feed são exibidos</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Esconder Shorts na assinatura do feed</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts in subscrition feed are hidden</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">São visíveis abreviações no feed de assinatura</string>
+ <string name="revanced_hide_shorts_search_title">Esconder Shorts nos resultados de pesquisa</string>
+ <string name="revanced_hide_shorts_search_summary_on">Abreviações nos resultados de busca estão escondidos</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts in search results are shown</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Esconder botão de junção</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">O botão \"entrar\" está escondido</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Botão de entrar é visível</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Esconder botão de inscrição</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">O botão de cadastro está escondido</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Botão de inscrição é visível</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ocultar botões de sobreposição pausados</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Botões de sobreposição pausados estão ocultos</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Botões de sobreposição pausados são mostrados</string>
+ <string name="revanced_hide_shorts_shop_button_title">Esconder botão da loja</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">O botão da loja está escondido</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">O botão da loja é visível</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Esconder botão de super obrigado</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">O botão de super agradecimento está oculto</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">O botão de super agradecimento é mostrado</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ocultar produtos marcados</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Produtos marcados estão ocultos</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Produtos marcados são mostrados</string>
+ <string name="revanced_hide_shorts_location_label_title">Ocultar rótulo de localização</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Rótulo de localização está oculto</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Rótulo de localização é mostrado</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Esconder o som no botão de playlist</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Salvar som para playlist escondida</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Salvar som para lista de reprodução</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ocultar sugestões de busca</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Sugestões de pesquisa estão ocultas</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Sugestões de pesquisa são mostradas</string>
+ <string name="revanced_hide_shorts_like_button_title">Esconder botão \"curtir\"</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">O botão curtir está escondido</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">O botão curtir é visível</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Esconder botão não curtir</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Botão não curtir está escondido</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Botão não curtir é visível</string>
+ <string name="revanced_hide_shorts_comments_button_title">Esconder botão de comentários</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Botão de comentários está escondido</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">O botão Comentários está visível</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Esconder botão de remix</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Botão de remixar está escondido</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Botão de remixar é visível</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Esconder botão de compartilhamento</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Botão Compartilhar está escondido</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Botão Compartilhar é visível</string>
+ <string name="revanced_hide_shorts_info_panel_title">Esconder painel de informações</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">O painel de informações está escondido</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Painel de informações é visível</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Esconder barra do canal</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">A barra do canal está escondida</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Barra de canal exibida</string>
+ <string name="revanced_hide_shorts_video_title_title">Ocultar título do vídeo</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">O título está escondido</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Título é visível</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Esconder rótulo de metadados de som</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Etiqueta de metadados está escondida</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Etiqueta de metadados é visível</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Esconder o rótulo completo do link do vídeo</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Rótulo de link do vídeo está escondido</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Rótulo do link do vídeo é visível</string>
+ <string name="revanced_hide_shorts_sound_button_title">Esconder botão de som</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">O botão de som está escondido</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">O botão de som é visível</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Esconder barra de navegação</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">A barra de navegação está escondida</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Barra de navegação exibida</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Desativar ecrã de fim de vídeo sugerida</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Vídeos sugeridos serão desativados</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Vídeos sugeridos serão exibidos</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Esconder timestamp do vídeo</string>
+ <string name="revanced_hide_timestamp_summary_on">Timestamp está escondido</string>
+ <string name="revanced_hide_timestamp_summary_off">Timestamp é visível</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Esconder painéis popup do player</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Painéis pop-up do jogador estão escondidos</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Painéis pop-up do jogador são visíveis</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacidade do jogador</string>
+ <string name="revanced_player_overlay_opacity_summary">Valor de opacidade entre 0-100, onde 0 é transparente</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacidade do jogador deve estar entre 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">\"Não Gosto\" temporariamente indisponível</string>
+ <string name="revanced_ryd_failure_connection_status_code">Descurtir não disponível (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">\"Não Gosto\" indisponíveis (limite API atingido)</string>
+ <string name="revanced_ryd_failure_generic">Descurtir não disponível (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Recarregue para votar usando Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Descurtidas são visíveis</string>
+ <string name="revanced_ryd_enable_summary_off">Não há curtidas visíveis</string>
+ <string name="revanced_ryd_shorts_title">Mostrar não curtidas na abreviação</string>
+ <string name="revanced_ryd_shorts_summary_on">Não curtir nas abreviações</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">O botão \"Não Gosto\" está visível nos Shorts\n\nLimitação: O botão \"Não Gosto\" não pode aparecer no modo de navegação anónima</string>
+ <string name="revanced_ryd_shorts_summary_off">Descurtir escondido em Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Descurte como porcentagem</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Descurtidas visíveis como porcentagem</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Não curtir como número</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Botão compacto curtir</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Botão curtir estilizado para largura mínima</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Botão curtir estilizado para melhor aparência</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Mostrar uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast é exibida se Retornar o Youtube Dislike não estiver disponível</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast não é exibida se Retornar o YouTube Dislike não estiver disponível</string>
+ <string name="revanced_ryd_about">Sobre</string>
+ <string name="revanced_ryd_attribution_summary">Os dados são fornecidos pela API Return Dislike do YouTube. Toque aqui para saber mais</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Estatísticas da API deste dispositivo RetnYouTubeDislike</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Tempo de resposta da API, média</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Tempo de resposta da API, mínimo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Tempo de resposta da API, máximo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Tempo de resposta da API, último vídeo</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Desativa temporariamente não disponível - API de limite de taxa de cliente em efeito</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Votos de busca de API, número de chamadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nenhuma chamada de rede feita</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Chamadas de rede %d realizadas</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Busca de API, número de timeouts</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Nenhuma chamada de rede expirou</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Chamadas de rede %d expiradas</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limites da taxa de cliente API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nenhum limite de taxa de cliente encontrado</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Limite da taxa de cliente encontrado %d vezes</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milissegundos</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Ativar barra de pesquisa ampla</string>
+ <string name="revanced_wide_searchbar_summary_on">Barra de pesquisa ampla está ativada</string>
+ <string name="revanced_wide_searchbar_summary_off">Barra de pesquisa ampla está desativada</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurar as miniaturas antigas da barra de pesquisa</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">As miniaturas da barra de busca aparecerão acima da barra de busca</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">As miniaturas da Seekbar aparecerão em ecrã cheia</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Habilitar Patrocínio</string>
+ <string name="revanced_sb_enable_sb_sum">O Patrocinador é um sistema coletivo para pular partes irritantes dos vídeos do YouTube</string>
+ <string name="revanced_sb_appearance_category">Aparência</string>
+ <string name="revanced_sb_enable_voting">Mostrar o botão de votação</string>
+ <string name="revanced_sb_enable_voting_sum_on">Botão de votação segmentado é visível</string>
+ <string name="revanced_sb_enable_voting_sum_off">O botão de votação não é visível</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Use o botão de pular compacto</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Ignorar botão estilizado para largura mínima</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Pular botão estilizado para a melhor aparência</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Esconder automaticamente o botão de ignorar</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Pular botão esconde após alguns segundos</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Ignorar botão exibido para todo o segmento</string>
+ <string name="revanced_sb_general_skiptoast">Exibir uma notificação flutuante quando pular automaticamente</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast é visível quando um segmento é automaticamente ignorado. Toque aqui para ver um exemplo</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast não é visível. Toque aqui para ver um exemplo</string>
+ <string name="revanced_sb_general_time_without">Mostrar duração do vídeo sem segmentos</string>
+ <string name="revanced_sb_general_time_without_sum_on">Duração do vídeo menos todos os segmentos, visível entre parênteses ao lado da duração completa do vídeo</string>
+ <string name="revanced_sb_general_time_without_sum_off">Duração total do vídeo exibido</string>
+ <string name="revanced_sb_create_segment_category">Criando novos segmentos</string>
+ <string name="revanced_sb_enable_create_segment">Mostrar botão criar novo segmento</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Criar novo segmento botão é visível</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Criar novo segmento botão não é visível</string>
+ <string name="revanced_sb_general_adjusting">Ajustar novo passo do segmento</string>
+ <string name="revanced_sb_general_adjusting_sum">Número de milissegundos do tempo que os botões de ajuste de tempo se movem ao criar novos segmentos</string>
+ <string name="revanced_sb_general_adjusting_invalid">Valor deve ser um número positivo</string>
+ <string name="revanced_sb_guidelines_preference_title">Ver orientações</string>
+ <string name="revanced_sb_guidelines_preference_sum">Diretrizes contêm regras e dicas para criar novos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_title">Siga as instruções</string>
+ <string name="revanced_sb_guidelines_popup_content">Leia as diretrizes do Patrocinador antes de criar novos segmentos</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Já lido</string>
+ <string name="revanced_sb_guidelines_popup_open">Mostre-me</string>
+ <string name="revanced_sb_general">Gerais</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Mostrar uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast é visível se o Patrocinador não está disponível</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast não é visível se o Patrocinador não está disponível</string>
+ <string name="revanced_sb_general_skipcount">Ativar rastreamento de ignorar contagem</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Vamos o placar do Patrocinador saber quanto tempo é salvo. Uma mensagem é enviada para o placar cada vez que um segmento é ignorado</string>
+ <string name="revanced_sb_general_skipcount_sum_off">O rastreamento da contagem ignorada não está habilitado</string>
+ <string name="revanced_sb_general_min_duration">Duração mínima do segmento</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmentos menores que este valor (em segundos) não serão visíveis ou ignorados</string>
+ <string name="revanced_sb_general_uuid">Seu ID de usuário privado</string>
+ <string name="revanced_sb_general_uuid_sum">Isso deve ser mantido em particular. Isto é como uma senha e não deve ser compartilhado com ninguém. Se alguém tiver isso, ele pode representar você</string>
+ <string name="revanced_sb_general_uuid_invalid">ID do usuário privado deve ter pelo menos 30 caracteres</string>
+ <string name="revanced_sb_general_api_url">Alterar URL da API</string>
+ <string name="revanced_sb_general_api_url_sum">O Patrocinador usa o endereço para fazer chamadas ao servidor</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">URL da API inválida</string>
+ <string name="revanced_sb_api_url_changed">URL da API alterada</string>
+ <string name="revanced_sb_settings_ie">Importar/Exportar Configurações</string>
+ <string name="revanced_sb_settings_copy">Copiar</string>
+ <string name="revanced_sb_settings_ie_sum">Sua configuração JSON de Patrocinador que pode ser importada/exportada para ReVanced e outras plataformas de Patrocinador</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Sua configuração JSON de Patrocinador que pode ser importada/exportada para ReVanced e outras plataformas do Patrocinador. Isso inclui sua identificação de usuário privada. Certifique-se de compartilhar isso sabiamente</string>
+ <string name="revanced_sb_settings_import_successful">Configurações importadas com sucesso</string>
+ <string name="revanced_sb_settings_import_failed">Falha ao importar: %s</string>
+ <string name="revanced_sb_settings_export_failed">Falha ao exportar: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Suas configurações contêm um SponsorBlock privado.\n\nSeu id de usuário é como uma senha e nunca deve ser compartilhado.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Não mostrar novamente</string>
+ <string name="revanced_sb_diff_segments">Alterar comportamento do segmento</string>
+ <string name="revanced_sb_segments_sponsor">Patrocinador</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoção paga, indicações pagas e anúncios diretos. Não para auto-promoção ou gritos gratuitos para causas/criadores/websites/produtos que eles gostam</string>
+ <string name="revanced_sb_segments_selfpromo">Promover Despaid/Auto</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Semelhante ao \'Patrocinador\' exceto pela autopromoção não remunerada. Inclui seções sobre mercadorias, doações ou informações sobre com quem colaboraram</string>
+ <string name="revanced_sb_segments_interaction">Lembrete de interação (inscrever)</string>
+ <string name="revanced_sb_segments_interaction_sum">Um pequeno lembrete para curtir, assinar ou segui-los no meio do conteúdo. Se for longo ou sobre algo específico, deveria em vez disso estar sob auto-promoção</string>
+ <string name="revanced_sb_segments_highlight">Destacar</string>
+ <string name="revanced_sb_segments_highlight_sum">A parte do vídeo que a maioria das pessoas está procurando</string>
+ <string name="revanced_sb_segments_intro">Animação de Intermissão/Introdução</string>
+ <string name="revanced_sb_segments_intro_sum">Um intervalo sem conteúdo real. Pode ser uma pausa, moldura estática ou uma animação repetida. Não inclui transições que contenham informações</string>
+ <string name="revanced_sb_segments_outro">Cartões/Créditos</string>
+ <string name="revanced_sb_segments_outro_sum">Créditos ou quando os cartões de extremidade do YouTube aparecem. Não para conclusões com informações</string>
+ <string name="revanced_sb_segments_preview">Pré-visualização/Recap/Hook</string>
+ <string name="revanced_sb_segments_preview_sum">Coleção de clipes que mostram o que está chegando ou o que aconteceu no vídeo ou em outras séries, onde todas as informações se repetem em outro lugar</string>
+ <string name="revanced_sb_segments_filler">Filtros Tangent/Piadas</string>
+ <string name="revanced_sb_segments_filler_sum">Tangential cenas adicionadas apenas para enchedor ou humor que não são necessários para entender o conteúdo principal do vídeo. Não inclui segmentos fornecendo contexto ou detalhes de fundo</string>
+ <string name="revanced_sb_segments_nomusic">Música: Seção de Não Música</string>
+ <string name="revanced_sb_segments_nomusic_sum">Somente para uso em vídeos de música. Seções de vídeos de música sem música, que já não estão cobertas por outra categoria</string>
+ <string name="revanced_sb_skip_button_compact">Ignorar</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Destacar</string>
+ <string name="revanced_sb_skip_button_sponsor">Pular patrocinador</string>
+ <string name="revanced_sb_skip_button_selfpromo">Pular promoção</string>
+ <string name="revanced_sb_skip_button_interaction">Pular interação</string>
+ <string name="revanced_sb_skip_button_highlight">Pular para destacar</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Pular introdução</string>
+ <string name="revanced_sb_skip_button_intro_middle">Pular intermissão</string>
+ <string name="revanced_sb_skip_button_intro_end">Pular intermissão</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Pular visualização</string>
+ <string name="revanced_sb_skip_button_preview_middle">Pular visualização</string>
+ <string name="revanced_sb_skip_button_preview_end">Ignorar recapitulação</string>
+ <string name="revanced_sb_skip_button_filler">Ignorar o encher</string>
+ <string name="revanced_sb_skip_button_nomusic">Pular não-música</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Pular segmento</string>
+ <string name="revanced_sb_skipped_sponsor">Patrocinador ignorado</string>
+ <string name="revanced_sb_skipped_selfpromo">Auto-promoção ignorada</string>
+ <string name="revanced_sb_skipped_interaction">Lembrete irritante ignorado</string>
+ <string name="revanced_sb_skipped_highlight">Pulado para destacar</string>
+ <string name="revanced_sb_skipped_intro_beginning">Introdução ignorada</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermissão ignorada</string>
+ <string name="revanced_sb_skipped_intro_end">Intermissão ignorada</string>
+ <string name="revanced_sb_skipped_outro">Outro Ignorado</string>
+ <string name="revanced_sb_skipped_preview_beginning">Pré-visualização ignorada</string>
+ <string name="revanced_sb_skipped_preview_middle">Pré-visualização ignorada</string>
+ <string name="revanced_sb_skipped_preview_end">Resumo ignorado</string>
+ <string name="revanced_sb_skipped_filler">Filtro ignorado</string>
+ <string name="revanced_sb_skipped_nomusic">Pulou uma seção que não foi musica</string>
+ <string name="revanced_sb_skipped_unsubmitted">Segmento não submetido ignorado</string>
+ <string name="revanced_sb_skipped_multiple_segments">Ignorado vários segmentos</string>
+ <string name="revanced_sb_skip_automatically">Pular automaticamente</string>
+ <string name="revanced_sb_skip_automatically_once">Pular automaticamente uma vez</string>
+ <string name="revanced_sb_skip_showbutton">Mostrar um botão de pular</string>
+ <string name="revanced_sb_skip_seekbaronly">Mostrar na barra de busca</string>
+ <string name="revanced_sb_skip_ignore">Desligado</string>
+ <string name="revanced_sb_submit_failed_invalid">Não é possível enviar segmento: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">Patrocinador está temporariamente desligado</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Não é possível enviar o segmento (estado: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Não foi possível enviar o segmento.\nTaxa limitada (muitos do mesmo usuário ou IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Não é possível enviar o segmento: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Não é possível enviar o segmento.\nJá existe</string>
+ <string name="revanced_sb_submit_succeeded">Segmento enviado com sucesso</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporariamente indisponível (API TimeOut)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">Patrocinador temporariamente não disponível (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">Patrocinador temporariamente não disponível</string>
+ <string name="revanced_sb_vote_failed_timeout">Não foi possível votar para segmento (API esgotou)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Não é possível votar para (%1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Não foi possível votar: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Desaprovar</string>
+ <string name="revanced_sb_vote_category">Alterar categoria</string>
+ <string name="revanced_sb_vote_no_segments">Não há segmentos para votar em</string>
+ <string name="revanced_sb_new_segment_choose_category">Escolha a categoria do segmento</string>
+ <string name="revanced_sb_new_segment_disabled_category">A categoria está desativada nas configurações. Habilite a categoria para enviar.</string>
+ <string name="revanced_sb_new_segment_title">Novo segmento para Patrocinador</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Definir %1$02d:%2$02d:%3$03d como início ou fim de um novo segmento?</string>
+ <string name="revanced_sb_new_segment_mark_start">início</string>
+ <string name="revanced_sb_new_segment_mark_end">terminar</string>
+ <string name="revanced_sb_new_segment_now">format@@0number@@1format@@2s</string>
+ <string name="revanced_sb_new_segment_time_start">Hora do início do segmento em</string>
+ <string name="revanced_sb_new_segment_time_end">Tempo que o segmento termina em</string>
+ <string name="revanced_sb_new_segment_confirm_title">Os tempos estão corretos?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">O segmento é de\n\n%1$s\na\n%2$s\n\n(%3$s)\n\nPronto para enviar?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Iniciar deve ser antes do fim</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marcar dois locais na barra de tempo</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Pré-visualizar o segmento e garantir que pula suavemente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Editar tempo de segmento manualmente</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Você deseja editar o tempo para o início ou o fim do segmento?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Data inválida</string>
+ <string name="revanced_sb_stats">Estatísticas</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Estatísticas temporariamente não disponíveis (API está desligada)</string>
+ <string name="revanced_sb_stats_loading">A carregar...</string>
+ <string name="revanced_sb_stats_sb_disabled">Patrocinador está desativado</string>
+ <string name="revanced_sb_stats_username">Seu nome de usuário: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Toque aqui para alterar seu nome de usuário</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Não foi possível mudar o nome do usuário: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Usuário alterado com sucesso</string>
+ <string name="revanced_sb_stats_reputation">Sua reputação é <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Tu criaste <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_saved_zero">Placar do SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Você salvou pessoas de <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Toque aqui para ver as estatísticas globais e os melhores colaboradores</string>
+ <string name="revanced_sb_stats_saved_sum">Isso é <b>%s</b> de suas vidas.<br>Toque aqui para ver a tabela de classificação</string>
+ <string name="revanced_sb_stats_self_saved">Tu pulaste <b>%s</b> segmentos</string>
+ <string name="revanced_sb_stats_self_saved_sum">Isso é <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Redefinir o contador de segmentos ignorados?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s horas %2$s minutos</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minutos %2$s segundos</string>
+ <string name="revanced_sb_stats_saved_second_format">%s segundos</string>
+ <string name="revanced_sb_color_dot_label">Cor:</string>
+ <string name="revanced_sb_color_changed">Cor alterada</string>
+ <string name="revanced_sb_color_reset">Redefinir cor</string>
+ <string name="revanced_sb_color_invalid">Código de cor inválido</string>
+ <string name="revanced_sb_reset_color">Redefinir cor</string>
+ <string name="revanced_sb_reset">Redefinir</string>
+ <string name="revanced_sb_about">Sobre</string>
+ <string name="revanced_sb_about_api_sum">Os dados são fornecidos pela API do SponsorBlock. Toque aqui para aprender mais e ver downloads para outras plataformas</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versão do Spoof app</string>
+ <string name="revanced_spoof_app_version_summary_on">Versão falsificada</string>
+ <string name="revanced_spoof_app_version_summary_off">Versão não falsificada</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">A versão da aplicação será falsificada para uma versão mais antiga do YouTube.\n\nEsta opção irá mudar a aparência e as funcionalidades da aplicação, mas poderá surgir efeitos segundários desconhecidos.\n\nSe esta opção for desativada mais tarde, é recomendável limpar os dados da aplicação para evitar erros na interface do utilizador.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Destaque de versão do app</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurar RYD em Modo Curto Incógnito</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurar menu de qualidade de vídeo &</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurar aba da biblioteca</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurar a pategoria de playlist antiga</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurar layout de interface antiga</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Definir página inicial</string>
+ <string name="revanced_start_page_entry_0">Padrão</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Residencial</string>
+ <string name="revanced_start_page_entry_2">Pesquisa</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Inscrições</string>
+ <string name="revanced_start_page_entry_4">Explorar</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Aba você</string>
+ <string name="revanced_start_page_entry_7">Vídeos curtidos</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Histórico</string>
+ <string name="revanced_start_page_entry_9">Tendências</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Desativar modo retomada do player</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Curta o reprodutor não continuará na inicialização do aplicativo</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts que o reprodutor continuará na inicialização do aplicativo</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Habilitar layout do tablet</string>
+ <string name="revanced_tablet_layout_summary_on">O layout do tablet está ativado</string>
+ <string name="revanced_tablet_layout_summary_off">Layout de tablet desativado</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Postagens da comunidade não aparecem nos layouts do tablet</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijogador</string>
+ <string name="revanced_miniplayer_screen_summary">Alterar o estilo do player minimizado no aplicativo</string>
+ <string name="revanced_miniplayer_type_title">Tipo de minijogador</string>
+ <string name="revanced_miniplayer_type_entry_1">Original</string>
+ <string name="revanced_miniplayer_type_entry_2">Smartphone</string>
+ <string name="revanced_miniplayer_type_entry_3">Tábua</string>
+ <string name="revanced_miniplayer_type_entry_4">Moderno 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Moderno 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Moderno 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ocultar botões de expansão e fechamento</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Os botões são ocultos\n(swipe miniplayer para expandir ou fechar)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Botões de expansão e fechamento são mostrados</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ocultar subtextos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Subtextos estão ocultos</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Subtextos são exibidos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ocultar botões pular para frente e para trás</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Pular para frente e para trás estão escondidos</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Pular para frente e para trás são mostrados</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valor de opacidade entre 0-100, onde 0 é transparente</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Opacidade da sobreposição de minijogador deve estar entre 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Ativar ecrã de carregamento do gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Carregar ecrã terá um fundo em gradiente</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Carregar ecrã terá um fundo sólido</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Ativar a cor personalizada</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Cor personalizada da barra de busca é visível</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Cor original da barra de busca é visível</string>
+ <string name="revanced_seekbar_custom_color_value_title">Cor personalizada da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_value_summary">A cor da barra de busca</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valor de cor inválido da barra. Usando o valor padrão.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Aba principal</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Aba de assinatura</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Aba você</string>
+ <string name="revanced_alt_thumbnail_player_title">Playlists de jogadores, recomendações</string>
+ <string name="revanced_alt_thumbnail_search_title">Resultados da pesquisa</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Miniaturas originais</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Ainda captura</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Ainda captura</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">format@@0 DeArrow fornece crow-source thumbnails for YouTube videos. Estas miniaturas são frequentemente mais relevantes do que as fornecidas pelo YouTube\n\nSe ativadas, URLs de vídeo serão enviadas para o servidor de API e nenhum outro dado será enviado. Se um vídeo não tiver miniaturas DeArrow então a captura original ou ainda é visível\n\nToque aqui para saber mais sobre o DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Mostrar uma notificação flutuante se a API não estiver disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast é visível se o Derow não está disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast não é visível se o DeArrow não está disponível</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">A URL do ponto de extremidade do cache de miniaturas Derow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Capturas em vídeo ainda</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Ainda as capturas são tiradas do começo/meio/fim de cada vídeo. Estas imagens são construídas no YouTube e nenhuma API externa é usada</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Usar capturas rápidas ainda</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Usando a qualidade média ainda capturada. As miniaturas carregam mais rapidamente, mas transmissões ao vivo, não lançadas ou vídeos muito antigos podem exibir miniaturas em branco</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Usando capturas ainda de alta qualidade</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Tempo de vídeo para capturar ainda</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Início do vídeo</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Vídeo no meio</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Fim do vídeo</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow temporariamente indisponível (Status Code: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow temporariamente não disponível</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Exibir avisos de ReVanced</string>
+ <string name="revanced_announcements_summary_on">Anúncios são visíveis na inicialização</string>
+ <string name="revanced_announcements_summary_off">Anúncios não são visíveis na inicialização</string>
+ <string name="revanced_announcements_enabled_summary">Mostrar avisos na inicialização</string>
+ <string name="revanced_announcements_connection_failed">Falha ao conectar ao provedor de avisos</string>
+ <string name="revanced_announcements_dialog_dismiss">Dispensar</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Habilitar auto-repetição</string>
+ <string name="revanced_auto_repeat_summary_on">Repetição automática está habilitada</string>
+ <string name="revanced_auto_repeat_summary_off">Repetição automática está desativada</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Dimensões do dispositivo Spoof</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensões do dispositivo spoofed\n\nQualidades maiores de vídeo podem ser desbloqueadas, mas você pode experimentar uma reprodução de vídeo, pior vida de bateria e efeitos colaterais desconhecidos</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensões do dispositivo não falsificadas\n\nHabilitando isso pode desbloquear maiores qualidades de vídeo</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Habilitar isto pode causar travamentos na reprodução de vídeo, pior vida na bateria e efeitos colaterais desconhecidos.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Configurações do GmsCore</string>
+ <string name="microg_settings_summary">Configurações para GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Ignorar redirecionamentos de URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Redirecionamentos de URL estão ignorados</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Redirecionamentos de URL não estão ignorados</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Abrir links no navegador</string>
+ <string name="revanced_external_browser_summary_on">Abrir links externamente</string>
+ <string name="revanced_external_browser_summary_off">Abrir links no aplicativo</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Reprodução de fundo</string>
+ <string name="revanced_background_playback_summary">Esta configuração pode ser encontrada em Configurações -> Fundo</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Remover parâmetro de consulta de rastreamento</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">O parâmetro da consulta de rastreamento é removido dos links</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">O parâmetro da consulta de rastreamento não é removido dos links</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Desativar zoom haptics</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hápticos estão desativados</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Hábitos estão ativados</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Qualidade automática</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Lembrar mudanças na qualidade do vídeo</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Alterações de qualidade se aplicam a todos os vídeos</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">As alterações de qualidade só se aplicam ao vídeo atual</string>
+ <string name="revanced_video_quality_default_wifi_title">Qualidade de vídeo padrão na rede Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Qualidade de vídeo padrão na rede móvel</string>
+ <string name="revanced_remember_video_quality_mobile">Celular</string>
+ <string name="revanced_remember_video_quality_wifi">wi-fi</string>
+ <string name="revanced_remember_video_quality_toast">Qualidade padrão %1$s alterada para: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Mostrar botão de diálogo de velocidade</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Botão é visível</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">O botão NÃO está visível</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Velocidade de reprodução personalizada</string>
+ <string name="revanced_custom_playback_speeds_summary">Adicionar ou alterar as velocidades de reprodução disponíveis</string>
+ <string name="revanced_custom_playback_speeds_invalid">Velocidades personalizadas devem ser menores que %s. Usando valores padrão.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Velocidade personalizada de reprodução inválida. Usando valores padrão.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Lembrar velocidade de reprodução</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">As mudanças de velocidade de reprodução aplicam-se a todos os vídeos</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">As mudanças de velocidade de reprodução só se aplicam ao vídeo atual</string>
+ <string name="revanced_playback_speed_default_title">Velocidade padrão de reprodução</string>
+ <string name="revanced_remember_playback_speed_toast">Velocidade padrão alterada para: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurar menu antigo de qualidade de vídeo</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Menu antigo de qualidade de vídeo exibido</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Menu antigo de qualidade de vídeo não visível</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Habilitar o slide para procurar</string>
+ <string name="revanced_slide_to_seek_summary_on">Deslize para procurar está ativado</string>
+ <string name="revanced_slide_to_seek_summary_off">Deslize para procurar não está habilitado</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Cliente de Spoof</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof do cliente para evitar problemas de reprodução</string>
+ <string name="revanced_spoof_client_title">Cliente de Spoof</string>
+ <string name="revanced_spoof_client_summary_on">Cliente é falsificado</string>
+ <string name="revanced_spoof_client_summary_off">Cliente não é falsificado\n\nA reprodução de vídeo pode não funcionar</string>
+ <string name="revanced_spoof_client_user_dialog_message">Desativar essa configuração pode causar problemas de reprodução de vídeo.</string>
+ <string name="revanced_spoof_client_use_ios_title">Cliente Spoof para iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">O cliente está spoofed para o iOS\n\nOs efeitos colaterais incluem:\n• Nenhum vídeo HDR\n• O histórico de assistir pode não funcionar\n• Qualidades de vídeo maiores podem estar faltando\n• Transmissões ao vivo não podem ser reproduzidas como áudio\n• Transmissões ao vivo não disponíveis no Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">O cliente está spoofendido para Android VR\n\nOs efeitos colaterais incluem:\n• Nenhum vídeo HDR\n• As crianças não reproduzem\n• Os vídeos pausados podem retomar aleatoriamente\n• Miniaturas de barra de busca curta de baixa qualidade\n• Botão de ação para download está sempre oculto\n• Cartões de tela final sempre estão ocultos</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Miniaturas Spoof client não disponíveis (API timeout)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Miniaturas Spoof client temporariamente não disponíveis: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Assinatura falsa app</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Disfarçar a assinatura do app para impedir problemas de reprodução</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Assinatura falsa app</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">A assinatura do aplicativo falsificado\n\nEfeitos laterais incluem:\n• Taxa de bits melhorada não está disponível\n• Os vídeos não podem ser baixados\n• Nenhuma miniatura na barra de busca para vídeos pagos</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Assinatura do app não falsificado\n\nA reprodução de vídeo pode não funcionar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Desativar essa configuração causará problemas de reprodução de vídeo.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Assinatura falsa app no feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">A assinatura de apps spoofed\n\nEfeitos colaterais incluem:\n• Feed videos não possuem legendas\n• Vídeos alimentados automaticamente aparecerão em seu histórico de assistidos</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Assinatura de aplicativos não oculta para vídeos de feeds\n\nVídeos de feed serão reproduzidos por menos de 1 minuto antes de encontrar problemas de reprodução</string>
+ <string name="revanced_spoof_storyboard_title">Esfarrapador narrativo</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard falsificado</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard não falsificado\n\nOs efeitos colaterais incluem:\n• Modo sem ambiente\n• Miniaturas da barra de busca estão ocultas</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard temporariamente não está disponível (API timeout)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Esboço de storyboard temporariamente indisponível: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Ativar o brilho HDR automático</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">O brilho HDR automático está ativado</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">O brilho HDR automático está desativado</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Bloquear anúncios de áudio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anúncios de áudio estão bloqueados</string>
+ <string name="revanced_block_audio_ads_summary_off">Anúncios de áudio são desbloqueados</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s não está disponível. Anúncios podem ser exibidos. Tente alternar para outro serviço de bloco de anúncios nas configurações.</string>
+ <string name="revanced_embedded_ads_service_failed">O servidor %s retornou um erro. Os anúncios podem ser exibidos. Tente alternar para outro serviço de bloqueio de anúncios nas configurações.</string>
+ <string name="revanced_block_embedded_ads_title">Bloquear anúncios de vídeo incorporados</string>
+ <string name="revanced_block_embedded_ads_entry_1">Desativado</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy luminoso</string>
+ <string name="revanced_block_embedded_ads_entry_3">Proxy do PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Bloquear anúncios em vídeo</string>
+ <string name="revanced_block_video_ads_summary_on">Anúncios de vídeo estão bloqueados</string>
+ <string name="revanced_block_video_ads_summary_off">Anúncios de vídeo são desbloqueados</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mensagem apagada</string>
+ <string name="revanced_show_deleted_messages_title">Mostrar mensagens excluídas</string>
+ <string name="revanced_show_deleted_messages_entry_1">Não exibir mensagens excluídas</string>
+ <string name="revanced_show_deleted_messages_entry_2">Esconder mensagens excluídas atrás de um spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Mostrar mensagens excluídas como texto ultrapassado</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Automaticamente reivindicar Pontos do Canal</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Os Pontos de Canal são reivindicados automaticamente</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Os Pontos do Canal não são reivindicados automaticamente</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Ativar modo de depuração do Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Modo de depuração da Twitch ativado (não recomendado)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Modo de depuração da Twitch está desativado</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Configurações Avançadas</string>
+ <string name="revanced_ads_screen_title">Anúncios</string>
+ <string name="revanced_ads_screen_summary">Configurações de bloqueio de anúncios</string>
+ <string name="revanced_chat_screen_title">Bate-papo</string>
+ <string name="revanced_chat_screen_summary">Configurações do chat</string>
+ <string name="revanced_misc_screen_title">Diversos</string>
+ <string name="revanced_misc_screen_summary">Configurações diversas</string>
+ <string name="revanced_general_category_title">Configurações gerais</string>
+ <string name="revanced_other_category_title">Outras configurações</string>
+ <string name="revanced_client_ads_category_title">Anúncios do lado do cliente</string>
+ <string name="revanced_surestream_ads_category_title">Anúncios do servidor seguro</string>
+ <string name="revanced_twitch_debug_title">Registo de depuração</string>
+ <string name="revanced_twitch_debug_summary_on">Os registos de depuração estão ativados</string>
+ <string name="revanced_twitch_debug_summary_off">Os registos de depuração estão desativados</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ro-rRO/strings.xml b/src/main/resources/addresources/values-ro-rRO/strings.xml
new file mode 100644
index 0000000000..a62276a59a
--- /dev/null
+++ b/src/main/resources/addresources/values-ro-rRO/strings.xml
@@ -0,0 +1,1200 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Doriți să continuați?</string>
+ <string name="revanced_settings_reset">Reset</string>
+ <string name="revanced_settings_restart_title">Reîmprospătați și reporniți</string>
+ <string name="revanced_settings_restart">Repornire</string>
+ <string name="revanced_settings_import">Importare</string>
+ <string name="revanced_settings_import_copy">Copiere</string>
+ <string name="revanced_settings_import_reset">Setările revizuite se resetează la valorile implicite</string>
+ <string name="revanced_settings_import_success">Setări %d importate</string>
+ <string name="revanced_settings_import_failure_parse">Importul a eșuat: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore nu este instalat. Instalați-o.</string>
+ <string name="gms_core_dialog_title">Acțiuni necesare</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore nu are permisiunea de a rula în fundal.\n\nUrmează ghidul \"Nu-mi omorî aplicația\" pentru telefon și aplică instrucțiunile instalării MicroG.\n\nPentru ca aplicația să funcționeze.</string>
+ <string name="gms_core_dialog_open_website_text">Deschide site-ul</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Optimizările pentru baterie microG GmsCore trebuie să fie dezactivate pentru a preveni problemele.\n\nApăsați butonul Continuare și dezactivați optimizările bateriei.</string>
+ <string name="gms_core_dialog_continue_text">Continuă</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Folosiți ReVanced Patch-uri versiunea <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Notă</string>
+ <string name="revanced_settings_about_links_dev_body">Această versiune este o pre-lansare și este posibil să întâmpinați probleme neașteptate</string>
+ <string name="revanced_settings_about_links_header">Link-uri oficiale</string>
+ <string name="revanced_pref_import_export_title">Importă / Exportă</string>
+ <string name="revanced_pref_import_export_summary">Setări Import / Export ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Despre</string>
+ <string name="revanced_settings_screen_01_ads_title">Anunţuri</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Miniaturi alternative</string>
+ <string name="revanced_settings_screen_03_feed_title">Flux</string>
+ <string name="revanced_settings_screen_04_player_title">Jucător</string>
+ <string name="revanced_settings_screen_05_general_title">Structura generală</string>
+ <string name="revanced_settings_screen_06_shorts_title">Scurtături</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Bară de căutare</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Controale glisare</string>
+ <string name="revanced_settings_screen_11_misc_title">Diverse</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Depanare</string>
+ <string name="revanced_debug_screen_summary">Activează sau dezactivează opțiunile de depanare</string>
+ <string name="revanced_debug_title">Jurnal depanare</string>
+ <string name="revanced_debug_summary_on">Jurnalele de depanare sunt activate</string>
+ <string name="revanced_debug_summary_off">Jurnalele de depanare sunt dezactivate</string>
+ <string name="revanced_debug_protobuffer_title">Log protocol tampon</string>
+ <string name="revanced_debug_protobuffer_summary_on">Jurnalele de depanare includ depanare</string>
+ <string name="revanced_debug_protobuffer_summary_off">Jurnalele de depanare nu includ memoria tampon</string>
+ <string name="revanced_debug_stacktrace_title">Urme stive de jurnal</string>
+ <string name="revanced_debug_stacktrace_summary_on">Jurnalele depanării includ urmărirea stivelor</string>
+ <string name="revanced_debug_stacktrace_summary_off">Jurnalele de depanare nu includ urmărirea stivelor</string>
+ <string name="revanced_debug_toast_on_error_title">Arată toast la eroare reVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Toast afișat dacă apare o eroare</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Toast nu este afișat dacă apare o eroare</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Eroare la dezactivare toasts ascunde toate notificările de eroare ReVanced\n\nNu veți fi notificat de niciun eveniment neașteptat.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Dezactivează ca / abonare strălucire buton</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Butonul Îmi place și abonare nu va străluci când este menționat</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Butonul de like-uri și abonare va străluci când este menționat</string>
+ <string name="revanced_hide_gray_separator_title">Ascunde separatorul gri</string>
+ <string name="revanced_hide_gray_separator_summary_on">Separatoarele gri sunt ascunse</string>
+ <string name="revanced_hide_gray_separator_summary_off">Se afișează separatoarele gri</string>
+ <string name="revanced_hide_channel_watermark_title">Ascunde watermark canal</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Marcajul este ascuns</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Se afișează filigran</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ascunde rafturile orizontale</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Proiectilele sunt ascunse ca:\n• Întrerupe știrile\n• Continuă să urmărești\n• Explorează mai multe canale\n• Cumpărături\n• Urmărește din nou</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Se afişează rafturi</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ascunde butonul \'Înscriere\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Butonul este ascuns</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Butonul este afișat</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ascunde \"Pentru tine\" raft în pagina canalului</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Shelf este ascuns</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Se afișează runda</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ascunde butonul \'Notifică-mă\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Butonul este ascuns</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Butonul este afișat</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ascunde recomandările \'Oameni urmăriți\'</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Recomandările sunt ascunse</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Recomandările sunt afișate</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ascunde butonul \'Arată mai mult\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Butonul este ascuns</string>
+ <string name="revanced_hide_show_more_button_summary_off">Butonul este afișat</string>
+ <string name="revanced_hide_timed_reactions_title">Ascunde reacţiile cronizate</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Reacţiile cronologice sunt ascunse</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Reacţiile cronologice sunt evidenţiate</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ascunde antetul raftului rezultatului căutării</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Antetul Shelf este ascuns</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Se afișează antetul Shelf</string>
+ <string name="revanced_hide_channel_guidelines_title">Ascunde ghidurile canalelor</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Regulile canalului sunt ascunse</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Ghidul canalului este afișat</string>
+ <string name="revanced_hide_expandable_chip_title">Ascunde cipul expandabil sub videoclipuri</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Cipurile expandabile sunt ascunse</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Cipurile expandabile sunt afișate</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ascunde subsol meniu calitate video</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Subsolul meniului calităţii video este ascuns</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Subsolul meniului calității video este afișat</string>
+ <string name="revanced_hide_community_posts_title">Ascunde postările comunității</string>
+ <string name="revanced_hide_community_posts_summary_on">Posturile comunitare sunt ascunse</string>
+ <string name="revanced_hide_community_posts_summary_off">Posturile comunitare sunt afișate</string>
+ <string name="revanced_hide_compact_banner_title">Ascunde bannere compacte</string>
+ <string name="revanced_hide_compact_banner_summary_on">Bannerele compacte sunt ascunse</string>
+ <string name="revanced_hide_compact_banner_summary_off">Banner-ele compacte sunt afișate</string>
+ <string name="revanced_hide_movies_section_title">Ascunde secțiunea de filme</string>
+ <string name="revanced_hide_movies_section_summary_on">Secțiunea filmelor este ascunsă</string>
+ <string name="revanced_hide_movies_section_summary_off">Se afișează secțiunea Filme</string>
+ <string name="revanced_hide_feed_survey_title">Ascunde chestionare feed</string>
+ <string name="revanced_hide_feed_survey_summary_on">Sondajele flux sunt ascunse</string>
+ <string name="revanced_hide_feed_survey_summary_off">Sondajele sunt afișate</string>
+ <string name="revanced_hide_community_guidelines_title">Ascunde ghidurile comunității</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Orientările comunitare sunt ascunse</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Sunt prezentate orientările comunitare</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ascunde ghidurile comunității abonaților</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Instrucțiunile comunității abonaților sunt ascunse</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Recomandările comunității abonaților sunt afișate</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ascunde raftul membrilor canalului</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Raftul membrului canalului este ascuns</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Raft membrului canalului este afișat</string>
+ <string name="revanced_hide_emergency_box_title">Ascunde casetele de urgenţă</string>
+ <string name="revanced_hide_emergency_box_summary_on">Casetele de urgenţă sunt ascunse</string>
+ <string name="revanced_hide_emergency_box_summary_off">Cutiile de urgenţă sunt afişate</string>
+ <string name="revanced_hide_info_panels_title">Ascunde panourile de informaţii</string>
+ <string name="revanced_hide_info_panels_summary_on">Panouri de informații sunt ascunse</string>
+ <string name="revanced_hide_info_panels_summary_off">Panouri de informații sunt afișate</string>
+ <string name="revanced_hide_medical_panels_title">Ascunde panourile medicale</string>
+ <string name="revanced_hide_medical_panels_summary_on">Panouri medicale sunt ascunse</string>
+ <string name="revanced_hide_medical_panels_summary_off">Panourile medicale sunt prezentate</string>
+ <string name="revanced_hide_channel_bar_title">Ascunde bara de canal</string>
+ <string name="revanced_hide_channel_bar_summary_on">Bara de canal este ascunsă</string>
+ <string name="revanced_hide_channel_bar_summary_off">Bara de canal este afișată</string>
+ <string name="revanced_hide_playables_title">Ascunde Playables</string>
+ <string name="revanced_hide_playables_summary_on">Playables sunt ascunse</string>
+ <string name="revanced_hide_playables_summary_off">Playables sunt afișate</string>
+ <string name="revanced_hide_quick_actions_title">Ascunde acțiunile rapide în tot ecranul</string>
+ <string name="revanced_hide_quick_actions_summary_on">Acţiunile rapide sunt ascunse</string>
+ <string name="revanced_hide_quick_actions_summary_off">Acțiunile rapide sunt afișate</string>
+ <string name="revanced_hide_related_videos_title">Ascunde videoclipurile asociate în acțiuni rapide</string>
+ <string name="revanced_hide_related_videos_summary_on">Videoclipurile asociate sunt ascunse</string>
+ <string name="revanced_hide_related_videos_summary_off">Videoclipurile asociate sunt afișate</string>
+ <string name="revanced_hide_image_shelf_title">Ascunde raftul imaginii în rezultatele căutării</string>
+ <string name="revanced_hide_image_shelf_summary_on">Imaginea pe raft este ascunsă</string>
+ <string name="revanced_hide_image_shelf_summary_off">Imaginea pe raft este afișată</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ascunde cele mai recente postări</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Ultimele postări sunt ascunse</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Ultimele postări sunt afișate</string>
+ <string name="revanced_hide_mix_playlists_title">Ascunde amestecul playlisturilor</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Listele de redare mixte sunt ascunse</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Amestecul listelor de redare este afișat</string>
+ <string name="revanced_hide_artist_cards_title">Ascunde cărțile artistului</string>
+ <string name="revanced_hide_artist_cards_summary_on">Cartonaşele artistice sunt ascunse</string>
+ <string name="revanced_hide_artist_cards_summary_off">Cardurile artistului sunt afișate</string>
+ <string name="revanced_hide_chips_shelf_title">Ascunde raftul cipurilor</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Raftul cipurilor este ascuns</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Se afișează raftul cipurilor</string>
+ <string name="revanced_hide_attributes_section_title">Ascunde secțiunea atributelor</string>
+ <string name="revanced_hide_attributes_section_summary_on">Secțiunile de jocuri și muzică sunt ascunse</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Locuri recomandate\', secțiunile de jocuri și muzică sunt afișate</string>
+ <string name="revanced_hide_chapters_section_title">Ascunde secțiunea Capitole</string>
+ <string name="revanced_hide_chapters_section_summary_on">Capitolul este ascuns</string>
+ <string name="revanced_hide_chapters_section_summary_off">Capitolul este afișat</string>
+ <string name="revanced_hide_podcast_section_title">Ascunde secțiunea \"Explorați podcastul\"</string>
+ <string name="revanced_hide_podcast_section_summary_on">Secțiunea \"Explorați podcastul\" este ascunsă</string>
+ <string name="revanced_hide_podcast_section_summary_off">Secțiunea \"Explorați podcastul\" este afișată</string>
+ <string name="revanced_hide_info_cards_section_title">Ascunde secțiunea carduri de informații</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Secţiunea carduri de informaţii este ascunsă</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Secțiunea cartonașelor de informații este afișată</string>
+ <string name="revanced_hide_transcript_section_title">Ascunde secțiunea de Transcriere</string>
+ <string name="revanced_hide_transcript_section_summary_on">Secțiunea de transcriere este ascunsă</string>
+ <string name="revanced_hide_transcript_section_summary_off">Secțiunea de Transcriere este afișată</string>
+ <string name="revanced_hide_description_components_screen_title">Descriere video</string>
+ <string name="revanced_hide_description_components_screen_summary">Ascunde sau afișează componentele descrierii video</string>
+ <string name="revanced_custom_filter_screen_title">Filtru personalizat</string>
+ <string name="revanced_custom_filter_screen_summary">Ascunde componentele folosind filtre personalizate</string>
+ <string name="revanced_custom_filter_title">Activează filtru personalizat</string>
+ <string name="revanced_custom_filter_summary_on">Filtrul personalizat este activat</string>
+ <string name="revanced_custom_filter_summary_off">Filtrul personalizat este dezactivat</string>
+ <string name="revanced_custom_filter_strings_title">Filtru personalizat</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista șirurilor constructorului traiectoriei componentei pentru filtrarea separată de o linie nouă</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Filtru personalizat nevalid: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ascundeți conținutul cuvântului cheie</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ascundeți căutarea și hrănirea videoclipurilor folosind filtre de cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_home_title">Ascunde videoclipurile de acasă după cuvintele cheie</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videoclipurile din fila principală sunt filtrate de cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videoclipurile din fila principală nu sunt filtrate de cuvintele cheie</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ascunde abonarea videoclipurilor după cuvintele-cheie</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videoclipurile din fila abonamente sunt filtrate de cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videoclipurile din fila abonamente nu sunt filtrate de cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_search_title">Ascunde rezultatele căutării după cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Rezultatele căutării sunt filtrate după cuvintele cheie</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Rezultatele căutării nu sunt filtrate de cuvinte cheie</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Cuvinte cheie de ascuns</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Cuvinte cheie și fraze de ascuns, separate prin linii noi\n\nCuvintele cu litere mari din mijloc trebuie introduse cu caseta (ex: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Despre filtrarea cuvintelor cheie</string>
+ <string name="revanced_hide_keyword_content_about_summary">Rezultatele Acasă/Abonament/Căutare sunt filtrate pentru a ascunde conținutul care corespunde cuvintelor-cheie\n\nLimitările\n• Unele Scurte nu pot fi ascunse\n• Unele componente UI nu pot fi ascunse\n• Căutarea unui cuvânt cheie poate să nu prezinte rezultate</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Cuvânt cheie nevalid. Nu se poate folosi: \'%s\' ca filtru</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Cuvânt cheie nevalid. \'%1$s\' este mai puțin de %2$d caractere</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Cuvântul cheie \'$s\' va ascunde toate videoclipurile</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ascunde reclamele generale</string>
+ <string name="revanced_hide_general_ads_summary_on">Anunțurile generale sunt ascunse</string>
+ <string name="revanced_hide_general_ads_summary_off">Anunțurile generale sunt afișate</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ascunde reclame pe tot ecranul</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Reclame pe ecran complet sunt ascunse\n\nAceastă caracteristică este disponibilă doar pentru dispozitive mai vechi</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Reclame pe ecran complet sunt afișate</string>
+ <string name="revanced_hide_buttoned_ads_title">Ascunde reclame butoane</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Reclame nastate sunt ascunse</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Reclame buttonate sunt afișate</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ascunde eticheta promoției cu plată</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Eticheta promoției plătite este ascunsă</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Eticheta promoției plătite este afișată</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ascunde cardurile auto-sponsorizate</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Cardurile sponsorizate automat sunt ascunse</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Cardurile sponsorizate automat sunt afișate</string>
+ <string name="revanced_hide_products_banner_title">Ascunde banner-ul pentru a vizualiza produsele</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner-ul este ascuns</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner-ul este afișat</string>
+ <string name="revanced_hide_shopping_links_title">Ascunde link-urile de cumpărături în descrierea video</string>
+ <string name="revanced_hide_shopping_links_summary_on">Linkurile de cumpărături sunt ascunse</string>
+ <string name="revanced_hide_shopping_links_summary_off">Linkurile de cumpărături sunt afișate</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ascunde butonul \"Vizitează magazinul\" pe paginile canalului</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Butonul este ascuns</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Butonul este afișat</string>
+ <string name="revanced_hide_web_search_results_title">Ascunde rezultatele căutării web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Rezultatele căutării pe web sunt ascunse</string>
+ <string name="revanced_hide_web_search_results_summary_off">Rezultatele căutării web sunt afișate</string>
+ <string name="revanced_hide_merchandise_banners_title">Ascunde bannere de produse</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Bannerele de marfă sunt ascunse</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Bannerele de marfă sunt afișate</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ascunde reclamele pe tot ecranul funcționează doar cu dispozitive mai vechi</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ascunde promoțiile YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Promoțiile YouTube Premium sub video player sunt ascunse</string>
+ <string name="revanced_hide_get_premium_summary_off">Promoțiile YouTube Premium sub video player sunt afișate</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ascunde reclamele video</string>
+ <string name="revanced_hide_video_ads_summary_on">Anunțurile video sunt ascunse</string>
+ <string name="revanced_hide_video_ads_summary_off">Anunțurile video sunt afișate</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL copiat în clipboard</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL cu marcaj de timp copiat</string>
+ <string name="revanced_copy_video_url_title">Afișare buton copie URL</string>
+ <string name="revanced_copy_video_url_summary_on">Butonul este afișat. Atingeți pentru a copia URL-ul video. Atingeți și țineți apăsat pentru a copia URL-ul video cu marcajul de timp</string>
+ <string name="revanced_copy_video_url_summary_off">Butonul nu este afișat</string>
+ <string name="revanced_copy_video_url_timestamp_title">Afișare buton copie marcaj URL</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Butonul este afișat. Atingeți pentru a copia URL-ul video cu marcajul de timp. Atingeți și țineți apăsat pentru a copia videoclipul fără marcaj de timp</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Butonul nu este afișat</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Eliminați dialogul discreționar al vizualizatorului</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialogul va fi șters</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Va fi afișat catalogul</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Aceasta nu ocolește restricția de vârstă. O acceptă automat.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Descărcări externe</string>
+ <string name="revanced_external_downloader_screen_summary">Setări pentru utilizarea unui downloader extern</string>
+ <string name="revanced_external_downloader_title">Arată butonul extern de descărcare</string>
+ <string name="revanced_external_downloader_summary_on">Butonul de descărcare afișat în player</string>
+ <string name="revanced_external_downloader_summary_off">Butonul de descărcare nu este afișat în player</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Ignoră butonul de acțiune pentru descărcare</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Butonul de Descărcare deschide downloader extern</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Butonul de descărcare deschide downloader nativ în aplicație</string>
+ <string name="revanced_external_downloader_name_title">Descărcător nume pachet</string>
+ <string name="revanced_external_downloader_name_summary">Numele pachetului aplicaţiei externe downloader instalate, cum ar fi NewPipe sau Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s nu este instalat. Vă rugăm să-l instalaţi.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Dezactivează gestul de căutare precis</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gestul este dezactivat</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gestul este activat</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Activează atingerea barei de căutare</string>
+ <string name="revanced_seekbar_tapping_summary_on">Apăsarea pe bara de căutare este activată</string>
+ <string name="revanced_seekbar_tapping_summary_off">Apăsarea pe bara de căutare este dezactivată</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Activează gestul de luminozitate</string>
+ <string name="revanced_swipe_brightness_summary_on">Tragerea luminozității este activată</string>
+ <string name="revanced_swipe_brightness_summary_off">Tragerea luminozității este dezactivată</string>
+ <string name="revanced_swipe_volume_title">Activare gest volum</string>
+ <string name="revanced_swipe_volume_summary_on">Tragerea volumului este activată</string>
+ <string name="revanced_swipe_volume_summary_off">Tragerea volumului este dezactivată</string>
+ <string name="revanced_swipe_press_to_engage_title">Activează gestul de apăsare în glisare</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Apăsa-to-glisare este activată</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Apăsa-to-glisare este dezactivată</string>
+ <string name="revanced_swipe_haptic_feedback_title">Activează feedback haptic</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Vibrarea la atingere este activată</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Vibrarea la atingere este dezactivată</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Salvează și restaurează luminozitatea</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Salvează și restaurează luminozitatea la ieșirea sau introducerea pe ecran complet</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Nu salva și restabili luminozitatea la ieșirea din ecran complet</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Activează gestul de luminozitate automată</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Glisați în jos până la cea mai mică valoare a gestului de luminozitate activând luminozitatea automată</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Glisarea în jos până la cea mai mică valoare nu activează luminozitatea automată</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automat</string>
+ <string name="revanced_swipe_overlay_timeout_title">Expirare suprapunere glisare</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Cantitatea de milisecunde suprapunerea este vizibilă</string>
+ <string name="revanced_swipe_text_overlay_size_title">Dimensiune text glisare suprapunere</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Dimensiunea textului pentru suprapunere glisare</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Vizibilitate fundal glisare</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Vizibilitatea fundalului de glisare suprapus</string>
+ <string name="revanced_swipe_threshold_title">Pragul mărimii glisării</string>
+ <string name="revanced_swipe_threshold_summary">Cantitatea de prag pentru a glisa</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Dezactivează subtitrările automate</string>
+ <string name="revanced_auto_captions_summary_on">Legendele automate sunt dezactivate</string>
+ <string name="revanced_auto_captions_summary_off">Legenda automată este activată</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Butoane de acţiune</string>
+ <string name="revanced_hide_buttons_screen_summary">Ascunde sau arată butoanele sub videoclipuri</string>
+ <string name="revanced_hide_like_dislike_button_title">Ascunde Like și Dislike</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Butoanele Like și Dislike sunt ascunse</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Butoanele Like și Dislike sunt afișate</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ascunde Partajarea</string>
+ <string name="revanced_hide_share_button_summary_on">Butonul de distribuire este ascuns</string>
+ <string name="revanced_hide_share_button_summary_off">Butonul Distribuie este afișat</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ascunde raportul</string>
+ <string name="revanced_hide_report_button_summary_on">Butonul de raportare este ascuns</string>
+ <string name="revanced_hide_report_button_summary_off">Butonul de raportare este afișat</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ascunde Remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Butonul Remix este ascuns</string>
+ <string name="revanced_hide_remix_button_summary_off">Butonul Remix este afișat</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ascunde Descărcare</string>
+ <string name="revanced_hide_download_button_summary_on">Butonul de descărcare este ascuns</string>
+ <string name="revanced_hide_download_button_summary_off">Butonul Descărcare este afișat</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ascunde mulţumirile</string>
+ <string name="revanced_hide_thanks_button_summary_on">Butonul de multumire este ascuns</string>
+ <string name="revanced_hide_thanks_button_summary_off">Butonul de multumire este afisat</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Butonul clip este ascuns</string>
+ <string name="revanced_hide_clip_button_summary_off">Butonul clipului este afișat</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ascunde Salvare în lista de redare</string>
+ <string name="revanced_hide_playlist_button_summary_on">Butonul Salvare în lista de redare este ascuns</string>
+ <string name="revanced_hide_playlist_button_summary_off">Butonul Salvare în lista de redare este afișat</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ascunde butonul de redare automată</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Butonul Autoplay este ascuns</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Butonul Auto-redare este afișat</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ascunde butonul de legendă</string>
+ <string name="revanced_hide_captions_button_summary_on">Butonul subtitrari este ascuns</string>
+ <string name="revanced_hide_captions_button_summary_off">Se afișează butonul de subtitrări</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ascunde butonul de redare</string>
+ <string name="revanced_hide_cast_button_summary_on">Butonul de distribuție este ascuns</string>
+ <string name="revanced_hide_cast_button_summary_off">Butonul de execuție este afișat</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ascunde sau modifică butoanele din bara de navigare</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ascunde Acasa</string>
+ <string name="revanced_hide_home_button_summary_on">Butonul Acasă este ascuns</string>
+ <string name="revanced_hide_home_button_summary_off">Butonul Acasă este afișat</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ascunde scurturi</string>
+ <string name="revanced_hide_shorts_button_summary_on">Butonul scurt este ascuns</string>
+ <string name="revanced_hide_shorts_button_summary_off">Butonul scurt este afișat</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ascunde Creare</string>
+ <string name="revanced_hide_create_button_summary_on">Butonul de creare este ascuns</string>
+ <string name="revanced_hide_create_button_summary_off">Butonul Creare este afișat</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ascunde abonamentele</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Butonul Abonamente este ascuns</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Butonul Abonamente este afișat</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Comutare creare cu notificări</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Butonul Creare este comutat cu butonul Notificări\n\nNotă: Activarea acestui buton și ascunderea forțată a anunțurilor video</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Butonul Creare nu este comutat cu butonul Notificări</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ascunde etichetele butoanelor de navigare</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etichetele sunt ascunse</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etichetele sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Ascunde sau arată elementele de meniu Flyout ale jucătorului</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ascunde subtitrările</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Meniul subtitrărilor este ascuns</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Meniul de subtitrări este afișat</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ascunde setări adiționale</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Meniul de setări suplimentare este ascuns</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Setările adiționale sunt afișate</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ascunde repetiție video</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Meniul Repetă video este ascuns</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Meniul cu buclă video este afișat</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ascunde modul Ambient</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Meniul modului Ambient este ascuns</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Meniul modului ambiental este afișat</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ascunde Ajutor & Feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Meniul Ajutor & Feedback este ascuns</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Meniul Ajutor & Feedback este afișat</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ascunde viteza de redare</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Meniul vitezei de redare este ascuns</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Meniul de redare a vitezei este afișat</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ascunde mai multe informații</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Mai multe informații meniu sunt ascunse</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Mai multe informații sunt afișate</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ascunde ecranul de blocare</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Meniul ecranului de blocare este ascuns</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Meniul de blocare este afișat</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ascunde piesa audio</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Meniul piesei audio este ascuns</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Meniul piesei audio este afișat</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ascunde ceas în VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Vizionarea în meniul VR este ascunsă</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Vizionați în meniul VR este afișat</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ascunde butoanele anterioare & următorul video</string>
+ <string name="revanced_hide_player_buttons_summary_on">Butoanele sunt ascunse</string>
+ <string name="revanced_hide_player_buttons_summary_off">Butoanele sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ascundeți cardurile de album</string>
+ <string name="revanced_hide_album_cards_summary_on">Cardurile de album sunt ascunse</string>
+ <string name="revanced_hide_album_cards_summary_off">Cardurile de album sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Comentarii</string>
+ <string name="revanced_comments_screen_summary">Ascunde sau afișează componentele secțiunii comentarii</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ascunde \'Comentarii după antetul membrilor</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Comentarii de la antetul membrilor este ascuns</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Comentarii de la antetul membrilor este afișat</string>
+ <string name="revanced_hide_comments_section_title">Ascunde secțiunea comentarii</string>
+ <string name="revanced_hide_comments_section_summary_on">Secţiunea de comentarii este ascunsă</string>
+ <string name="revanced_hide_comments_section_summary_off">Secțiunea comentariilor este afișată</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ascunde butonul \'Creare scurtă\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Butonul \'Crează un scurt\' este ascuns</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Butonul \'Crează un scurt\' este afișat</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ascunde previzualizarea comentariului</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Previzualizarea comentariului este ascunsă</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Previzualizarea comentariului este afișată</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ascunde butonul de mulțumire</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Butonul de multumire este ascuns</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Butonul de multumire este afisat</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ascunde butoanele timestamp și emoji</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Butoanele de timp și emoji sunt ascunse</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Butoanele de timp și emoji sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ascunde caseta de crowdfunding</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Caseta multifinanțare este ascunsă</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Cutia multifinanțare este afișată</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ascunde cardurile ecranului final</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Cardurile de pe ecranul de închidere sunt ascunse</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Cardurile de închidere ecran sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Bară de filtrare</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ascunde sau afișează bara de filtrare în flux, căutare și videoclipuri asociate</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ascunde în feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Ascuns în feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Afișat în feed</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ascunde în căutare</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Ascuns în căutare</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Afișat în căutare</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ascunde în videoclipurile asociate</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Ascuns în videoclipuri conexe</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Afișat în videoclipuri conexe</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ascunde butonul de microfon plutitor</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Butonul microfon ascuns</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Butonul Microfon afișat</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Dezactivează modul ambiental pe tot ecranul</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Mod ambiental dezactivat</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Mod Ambient activat</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ascunde cardurile cu informații</string>
+ <string name="revanced_hide_info_cards_summary_on">Cardurile de informații sunt ascunse</string>
+ <string name="revanced_hide_info_cards_summary_off">Cardurile de informații sunt afișate</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Dezactivează animațiile cu numere de rulare</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Numerele de rulare nu sunt animate</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Numerele de rulare sunt animate</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ascunde bara de căutare în playerul video</string>
+ <string name="revanced_hide_seekbar_summary_on">Bara de căutare a playerului video este ascunsă</string>
+ <string name="revanced_hide_seekbar_summary_off">Se afișează bara de căutare a playerului video</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ascunde bara de căutare în miniaturile video</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Pictograma bara de căutare este ascunsă</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Pictograma bara de căutare este afișată</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ascunde scurtăturile din feed-ul de acasă</string>
+ <string name="revanced_hide_shorts_home_summary_on">Scurtăturile din fluxul de acasă sunt ascunse</string>
+ <string name="revanced_hide_shorts_home_summary_off">Scurtăturile din feed-ul acasă sunt afișate</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ascunde scurtăturile în feed-ul abonamentelor</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Scurtăturile din feed-ul abonamentelor sunt ascunse</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Scurte din feed-ul abonamentelor sunt afișate</string>
+ <string name="revanced_hide_shorts_search_title">Ascunde scurtăturile în rezultatele căutării</string>
+ <string name="revanced_hide_shorts_search_summary_on">Punctele slabe din rezultatele căutării sunt ascunse</string>
+ <string name="revanced_hide_shorts_search_summary_off">Punctele slabe din rezultatele căutării sunt afișate</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ascunde butonul de alăturare</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Butonul de alăturare este ascuns</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Butonul de alăturare este afișat</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ascunde butonul de abonare</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Butonul Abonare este ascuns</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Butonul Abonare este afișat</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ascunde butoanele de suprapunere întrerupte</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Butoanele de suprapunere întrerupte sunt ascunse</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Butoanele de suprapunere întrerupte sunt afișate</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ascunde butonul magazinului</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Butonul magazinului este ascuns</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Butonul magazinului este afișat</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ascunde butonul de mulțumire</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Butonul de multumire este ascuns</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Butonul de multumire este afisat</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ascunde produsele etichetate</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Produsele etichetate sunt ascunse</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Produsele etichetate sunt afișate</string>
+ <string name="revanced_hide_shorts_location_label_title">Ascunde eticheta locației</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Eticheta locației este ascunsă</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Eticheta locației este afișată</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ascunde sunetul de salvare în butonul de redare</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Salvarea sunetului în lista de redare este ascunsă</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Salvarea sunetului în lista de redare este afișată</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ascunde sugestiile de căutare</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Sugestiile de căutare sunt ascunse</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Sugestiile de căutare sunt afișate</string>
+ <string name="revanced_hide_shorts_like_button_title">Ascunde butonul similar</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Butonul Like este ascuns</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Butonul Like este afișat</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ascunde butonul diferit</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Butonul nu este ascuns</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Butonul nu este afișat</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ascunde butonul de comentarii</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Butonul de comentarii este ascuns</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Butonul pentru comentarii este afișat</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ascunde butonul de remix</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Butonul Remix este ascuns</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Butonul Remix este afișat</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ascunde butonul de partajare</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Butonul de distribuire este ascuns</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Butonul Distribuie este afișat</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ascunde panoul de informaţii</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Panoul de informaţii este ascuns</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Panoul de informații este afișat</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ascunde bara de canal</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Bara de canal este ascunsă</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Bara de canal este afișată</string>
+ <string name="revanced_hide_shorts_video_title_title">Ascunde titlul videoclipului</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titlul este ascuns</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titlul este afișat</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ascunde eticheta metadata sunet</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Eticheta metadata este ascunsă</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Eticheta metadata este afișată</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ascunde eticheta completă a link-ului video</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Eticheta link-ului video este ascunsă</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Eticheta link-ului video este afișată</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ascunde butonul de sunet</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Butonul de sunet este ascuns</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Butonul de sunet este afișat</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ascunde bara de navigare</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Bara de navigare este ascunsă</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Bara de navigare este afișată</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Dezactivează ecranul de sfârșit propus pentru video</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Videoclipurile sugerate vor fi dezactivate</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Videoclipurile sugerate vor fi afișate</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ascunde marcajul temporal video</string>
+ <string name="revanced_hide_timestamp_summary_on">Marcajul de timp este ascuns</string>
+ <string name="revanced_hide_timestamp_summary_off">Ora este afișată</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ascunde panourile pop-up jucător</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Panourile pop-up ale jucătorilor sunt ascunse</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Panourile pop-up ale jucătorului sunt afișate</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Opacitate suprapusă jucătorului</string>
+ <string name="revanced_player_overlay_opacity_summary">Valoarea Opacității între 0-100, unde 0 este transparent</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Opacitatea suportată de jucător trebuie să fie între 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislike-uri temporar indisponibile (API a expirat)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Dislike-uri indisponibile (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Dislike-uri indisponibile (limita API atinsă)</string>
+ <string name="revanced_ryd_failure_generic">Dislike-uri indisponibile (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Reîncarcă videoclipul pentru a vota folosind Returnare YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Dislike-urile sunt afișate</string>
+ <string name="revanced_ryd_enable_summary_off">Dislike-urile nu sunt afișate</string>
+ <string name="revanced_ryd_shorts_title">Arată displace pe scurtmetraje</string>
+ <string name="revanced_ryd_shorts_summary_on">Dislike-uri afișate pe scurtmetraje</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Dislike-uri afișate pe Scurtăturile\n\nLimitare: Este posibil ca displace să nu apară în modul incognito</string>
+ <string name="revanced_ryd_shorts_summary_off">Displace ascunse pe scurt-metraje</string>
+ <string name="revanced_ryd_dislike_percentage_title">Displace ca procentaj</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Dislike-uri afișate ca procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Dislike-uri afișate ca număr</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Buton compact ca</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Buton de stilizat pentru lățime minimă</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Buton asemănător pentru cel mai bun aspect</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Arată un toast dacă API-ul nu este disponibil</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Toast este afișat dacă Returnarea YouTube Dislike nu este disponibilă</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Toast nu este afișat dacă Returnarea YouTube Dislike nu este disponibilă</string>
+ <string name="revanced_ryd_about">Despre</string>
+ <string name="revanced_ryd_attribution_summary">Datele sunt furnizate de API-ul Returnare YouTube Dislike. Atinge aici pentru a afla mai multe</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike statistici API ale acestui dispozitiv</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Timp de răspuns API, medie</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Timp de răspuns API, minim</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Timp de răspuns API, maxim</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Timpul de răspuns API, ultimul video</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Dislike-uri temporar indisponibile - Limita ratei de client API este în vigoare</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Preluarea de voturi API, numărul de apeluri</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Nu s-au efectuat apeluri în rețea</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d apeluri prin rețea efectuate</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Voturi pentru preluarea API, număr de timeout-uri</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Niciun apel de rețea nu a expirat</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d apeluri de rețea au expirat</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Limite de rată client API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Nici o limită pentru rata clientului</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Limita ratei clientului a fost întâlnită de %d ori</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisecunde</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Activează bara de căutare largă</string>
+ <string name="revanced_wide_searchbar_summary_on">Bara de căutare largă este activată</string>
+ <string name="revanced_wide_searchbar_summary_off">Bara de căutare largă este dezactivată</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Restaurează miniaturile vechi din bara de căutare</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Miniaturile din bara de căutare vor apărea deasupra barei de căutare</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Miniaturile din bara de afișare vor apărea pe tot ecranul</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Activează SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock este un sistem de crowd-sourted pentru săritul părților enervante ale videoclipurilor de pe YouTube</string>
+ <string name="revanced_sb_appearance_category">Aspect</string>
+ <string name="revanced_sb_enable_voting">Arată butonul de votare</string>
+ <string name="revanced_sb_enable_voting_sum_on">Butonul de vot este afișat</string>
+ <string name="revanced_sb_enable_voting_sum_off">Butonul de vot nu este afișat</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Folosește butonul compact de omitere</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Omite butonul stilizat pentru lățimea minimă</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Omite butonul stilizat pentru cel mai bun aspect</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Ascunde automat butonul de omitere</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Omite ascunderea butonului după câteva secunde</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Butonul de sărire afişat pentru întregul segment</string>
+ <string name="revanced_sb_general_skiptoast">Arată un toast când se omite automat</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Toast este afișat atunci când un segment este omis automat. Apăsați aici pentru a vedea un exemplu</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast nu este afișat. Apăsați aici pentru a vedea un exemplu</string>
+ <string name="revanced_sb_general_time_without">Arată lungimea videoclipului fără segmente</string>
+ <string name="revanced_sb_general_time_without_sum_on">Lungimea video minus toate segmentele, afișată în paranteze lângă lungimea completă a videoclipului</string>
+ <string name="revanced_sb_general_time_without_sum_off">Lungimea completă a videoclipului afișată</string>
+ <string name="revanced_sb_create_segment_category">Crearea de noi segmente</string>
+ <string name="revanced_sb_enable_create_segment">Arată butonul de creare nou segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Se afișează un nou buton segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Creează un nou buton de segment nu este afișat</string>
+ <string name="revanced_sb_general_adjusting">Ajustează noul pas al segmentului</string>
+ <string name="revanced_sb_general_adjusting_sum">Numărul de milisecunde butoanele de ajustare a timpului se mută la crearea de noi segmente</string>
+ <string name="revanced_sb_general_adjusting_invalid">Valoarea trebuie să fie un număr pozitiv</string>
+ <string name="revanced_sb_guidelines_preference_title">Vezi ghidurile</string>
+ <string name="revanced_sb_guidelines_preference_sum">Orientările conțin reguli și sugestii pentru crearea de noi segmente</string>
+ <string name="revanced_sb_guidelines_popup_title">Respectaţi recomandările</string>
+ <string name="revanced_sb_guidelines_popup_content">Citiți ghidurile SponsorBlock înainte de a crea noi segmente</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Deja citite</string>
+ <string name="revanced_sb_guidelines_popup_open">Arată-mi</string>
+ <string name="revanced_sb_general">Generalități</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Arată un toast dacă API-ul nu este disponibil</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast este afișat dacă SponsorBlock nu este disponibil</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Toast nu este afișat dacă SponsorBlock nu este disponibil</string>
+ <string name="revanced_sb_general_skipcount">Activați omiterea peste urmărire</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Lasa clasamentul SponsorBlock sa stie cat de mult timp este salvat. Un mesaj este trimis in clasament de fiecare data cand un segment este sarit</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Omiterea numărului de urmărire nu este activată</string>
+ <string name="revanced_sb_general_min_duration">Durata minimă a segmentului</string>
+ <string name="revanced_sb_general_min_duration_sum">Segmente mai scurte decat aceasta valoare (in secunde) nu vor fi afisate sau omise</string>
+ <string name="revanced_sb_general_uuid">ID-ul dvs. privat de utilizator</string>
+ <string name="revanced_sb_general_uuid_sum">Acest lucru ar trebui să fie păstrat. Este ca o parolă și nu ar trebui să fie partajat cu nimeni. Dacă cineva are acest lucru, te poate impersona.</string>
+ <string name="revanced_sb_general_uuid_invalid">Id-ul utilizatorului privat trebuie să aibă cel puțin 30 de caractere</string>
+ <string name="revanced_sb_general_api_url">Schimbă URL-ul API</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlocul de adresă utilizează pentru a efectua apeluri către server</string>
+ <string name="revanced_sb_api_url_reset">API URL reset</string>
+ <string name="revanced_sb_api_url_invalid">URL-ul API nu este valid</string>
+ <string name="revanced_sb_api_url_changed">URL API schimbat</string>
+ <string name="revanced_sb_settings_ie">Importă/Exportă setări</string>
+ <string name="revanced_sb_settings_copy">Copiere</string>
+ <string name="revanced_sb_settings_ie_sum">Configurația SponsorBlock JSON care poate fi importată/exportată către ReVanced și alte platforme SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Configurația SponsorBlock JSON care poate fi importată/exportată către ReVanced și alte platforme SponsorBlock. Asta include id-ul tău privat de utilizator. Asigură-te că împărtășești asta cu înțelepciune</string>
+ <string name="revanced_sb_settings_import_successful">Setări importate cu succes</string>
+ <string name="revanced_sb_settings_import_failed">Nu s-a putut importa: %s</string>
+ <string name="revanced_sb_settings_export_failed">Nu s-a putut exporta: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Setările dvs. conțin un utilizator SponsorBlock privat.\n\nId-ul dvs. de utilizator este ca o parolă și nu ar trebui să fie partajat niciodată.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Nu mai afișa</string>
+ <string name="revanced_sb_diff_segments">Schimbă comportamentul segmentului</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Promoție plătită, recomandări plătite și reclame directe. Nu este pentru auto-promovare sau strigăte gratuite cauzelor/creatorilor/site-urilor web/produselor care le plac.</string>
+ <string name="revanced_sb_segments_selfpromo">Promovare neplătită/autopromovare</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Similar cu \'Sponsor\', cu excepția celor neplătiți sau autopromovării. Include secțiuni despre merchandise, donații sau informații despre cine au colaborat</string>
+ <string name="revanced_sb_segments_interaction">Reamintire interactiune (Abonati)</string>
+ <string name="revanced_sb_segments_interaction_sum">Un scurt memento pentru a vă plăcea, abonați sau urmăriți-le în mijlocul conținutului. Dacă este lung sau este vorba despre ceva specific, acesta ar trebui în schimb autopromovat.</string>
+ <string name="revanced_sb_segments_highlight">Evidențiere</string>
+ <string name="revanced_sb_segments_highlight_sum">Partea din video pe care majoritatea oamenilor o caută</string>
+ <string name="revanced_sb_segments_intro">Intermizare/Animație Intro</string>
+ <string name="revanced_sb_segments_intro_sum">Un interval fără conținut real. Poate fi o pauză, un cadru static sau o repetare a animației. Nu include tranziții care conțin informații</string>
+ <string name="revanced_sb_segments_outro">Carduri finale/Credite</string>
+ <string name="revanced_sb_segments_outro_sum">Credite sau atunci când apar cardurile Youtube . Nu sunt concluzii cu informaţii</string>
+ <string name="revanced_sb_segments_preview">Previzualizare/Recuperează/Cârlig</string>
+ <string name="revanced_sb_segments_preview_sum">Colecția de clipuri care arată ce se apropie sau ce s-a întâmplat în videoclip sau în alte videoclipuri dintr-o serie, unde toate informațiile sunt repetate în altă parte</string>
+ <string name="revanced_sb_segments_filler">Flor Tangent/Glumă</string>
+ <string name="revanced_sb_segments_filler_sum">Scenele tactil adăugate numai pentru umplutură sau umor care nu sunt necesare pentru a înțelege conținutul principal al videoclipului. Nu include segmente care furnizează date de context sau de fundal</string>
+ <string name="revanced_sb_segments_nomusic">Muzică: Secţiunea Non-Muzică</string>
+ <string name="revanced_sb_segments_nomusic_sum">Doar pentru utilizare în videoclipuri. Secțiuni de videoclipuri fără muzică, care nu sunt deja acoperite de o altă categorie</string>
+ <string name="revanced_sb_skip_button_compact">Omitere</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Evidențiere</string>
+ <string name="revanced_sb_skip_button_sponsor">Sari peste sponsor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Sari peste promoție</string>
+ <string name="revanced_sb_skip_button_interaction">Omite interacțiunea</string>
+ <string name="revanced_sb_skip_button_highlight">Sari la evidențiere</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Sari peste introducere</string>
+ <string name="revanced_sb_skip_button_intro_middle">Omitere intermisiune</string>
+ <string name="revanced_sb_skip_button_intro_end">Omitere intermisiune</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Sari peste previzualizare</string>
+ <string name="revanced_sb_skip_button_preview_middle">Sari peste previzualizare</string>
+ <string name="revanced_sb_skip_button_preview_end">Sari peste recap</string>
+ <string name="revanced_sb_skip_button_filler">Sari peste umplutură</string>
+ <string name="revanced_sb_skip_button_nomusic">Omite non-muzica</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Sari peste segment</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor sărit</string>
+ <string name="revanced_sb_skipped_selfpromo">Auto-promoție sărită</string>
+ <string name="revanced_sb_skipped_interaction">Memento enervant sărit</string>
+ <string name="revanced_sb_skipped_highlight">Salt la evidențiere</string>
+ <string name="revanced_sb_skipped_intro_beginning">Introducere sărită</string>
+ <string name="revanced_sb_skipped_intro_middle">Intermisiune sărită</string>
+ <string name="revanced_sb_skipped_intro_end">Intermisiune sărită</string>
+ <string name="revanced_sb_skipped_outro">Sutro sărit</string>
+ <string name="revanced_sb_skipped_preview_beginning">Previzualizare sărită</string>
+ <string name="revanced_sb_skipped_preview_middle">Previzualizare sărită</string>
+ <string name="revanced_sb_skipped_preview_end">Amplasare sărită</string>
+ <string name="revanced_sb_skipped_filler">Umplutură sărită</string>
+ <string name="revanced_sb_skipped_nomusic">S-a sărit o secţiune non-muzică</string>
+ <string name="revanced_sb_skipped_unsubmitted">Salt netrimis</string>
+ <string name="revanced_sb_skipped_multiple_segments">Sărit mai multe segmente</string>
+ <string name="revanced_sb_skip_automatically">Omiteți automat</string>
+ <string name="revanced_sb_skip_automatically_once">Omiteți automat o dată</string>
+ <string name="revanced_sb_skip_showbutton">Arată un buton de omitere</string>
+ <string name="revanced_sb_skip_seekbaronly">Arată în bara de căutare</string>
+ <string name="revanced_sb_skip_ignore">Dezactivează</string>
+ <string name="revanced_sb_submit_failed_invalid">Imposibil de trimis segmentul: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock este temporar oprit</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Imposibil de trimis segmentul (stare: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Nu se poate trimite segmentul.\nRata Limitată (prea multe de la același utilizator sau IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Nu se poate trimite segmentul: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Nu se poate trimite segmentul.\nExistă deja</string>
+ <string name="revanced_sb_submit_succeeded">Segment trimis cu succes</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock temporar indisponibil (API a expirat)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock temporar indisponibil (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock temporar indisponibil</string>
+ <string name="revanced_sb_vote_failed_timeout">Imposibil de votat pentru segment (API a expirat)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Nu se poate vota pentru segment (stare: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Nu se poate vota pentru segment: %s</string>
+ <string name="revanced_sb_vote_upvote">Upvote</string>
+ <string name="revanced_sb_vote_downvote">Retrogradeaza</string>
+ <string name="revanced_sb_vote_category">Schimbă categoria</string>
+ <string name="revanced_sb_vote_no_segments">Nu sunt segmente pentru a vota pentru</string>
+ <string name="revanced_sb_new_segment_choose_category">Alege categoria segmentului</string>
+ <string name="revanced_sb_new_segment_disabled_category">Categoria este dezactivată în setări. Activați categoria pentru a trimite.</string>
+ <string name="revanced_sb_new_segment_title">Segment de sponsorBlock nou</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Setează %1$02d:%2$02d:%3$03d ca început sau sfârșit al unui nou segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">pornește</string>
+ <string name="revanced_sb_new_segment_mark_end">sfarsit</string>
+ <string name="revanced_sb_new_segment_now">acum</string>
+ <string name="revanced_sb_new_segment_time_start">Timpul în care segmentul începe la</string>
+ <string name="revanced_sb_new_segment_time_end">Timpul în care segmentul se termină la</string>
+ <string name="revanced_sb_new_segment_confirm_title">Sunt vremurile corecte?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmentul este de la\n\n%1$s\nla\n%2$s\n\n(%3$s)\n\nGata de trimitere?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Începe trebuie să fie înainte de sfârșit</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Marchează mai întâi două locații pe bara de timp</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Previzualizați segmentul și asigurați-vă că sare fără probleme</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Editați sincronizarea segmentului manual</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Doriți să editați sincronizarea pentru începutul sau sfârșitul segmentului?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Oră nevalidă dată</string>
+ <string name="revanced_sb_stats">Statistici</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistici indisponibile temporar (API este oprit)</string>
+ <string name="revanced_sb_stats_loading">Se încarcă...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock este dezactivat</string>
+ <string name="revanced_sb_stats_username">Numele de utilizator: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Apasă aici pentru a-ți schimba numele de utilizator</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Imposibil de modificat numele de utilizator: Stare: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Nume utilizator schimbat cu succes</string>
+ <string name="revanced_sb_stats_reputation">Reputaţia ta este <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Ați creat <b>%s</b> segmente </string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock clasament</string>
+ <string name="revanced_sb_stats_saved">Ai salvat persoane de la segmentele <b>%s</b></string>
+ <string name="revanced_sb_stats_saved_sum_zero">Apăsați aici pentru a vedea statisticile globale și contribuitorii de top</string>
+ <string name="revanced_sb_stats_saved_sum">Asta înseamnă <b>%s</b> din viața lor.<br>Apasă aici pentru a vedea clasamentul</string>
+ <string name="revanced_sb_stats_self_saved">Ați omis <b>%s</b> segmente </string>
+ <string name="revanced_sb_stats_self_saved_sum">Asta înseamnă <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Resetați contorul de segmente omis?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s ore %2$s minute</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minute %2$s secunde</string>
+ <string name="revanced_sb_stats_saved_second_format">%s secunde</string>
+ <string name="revanced_sb_color_dot_label">Culoare:</string>
+ <string name="revanced_sb_color_changed">Culoare schimbată</string>
+ <string name="revanced_sb_color_reset">Resetare culoare</string>
+ <string name="revanced_sb_color_invalid">Cod culoare nevalid</string>
+ <string name="revanced_sb_reset_color">Resetare culoare</string>
+ <string name="revanced_sb_reset">Reset</string>
+ <string name="revanced_sb_about">Despre</string>
+ <string name="revanced_sb_about_api_sum">Datele sunt furnizate de API-ul SponsorBlock. Apasă aici pentru a afla mai multe și a vedea descărcările pentru alte platforme</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Versiune Spoof app</string>
+ <string name="revanced_spoof_app_version_summary_on">Versiune falsificată</string>
+ <string name="revanced_spoof_app_version_summary_off">Versiune neafectată</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Versiunea aplicației va fi falsificată de o versiune mai veche de YouTube.\n\nAceasta va schimba aspectul şi caracteristicile aplicaţiei, dar pot apărea reacţii adverse necunoscute.\n\nDacă se dezactivează ulterior, se recomandă ștergerea datelor aplicației pentru a preveni erorile de interfață.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app version target</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Restaurează RYD în modul incognito Shorts</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Restaurare viteză video mare & meniu calitate</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Restaurare tab librărie</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Restaurați vechiul raft al listei de redare</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Restaurați aspectul vechi al interfeței</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Setaţi pagina de start</string>
+ <string name="revanced_start_page_entry_0">Implicit</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Acasă</string>
+ <string name="revanced_start_page_entry_2">Caută</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonamente</string>
+ <string name="revanced_start_page_entry_4">Explorați</string>
+ <string name="revanced_start_page_entry_5">Scurtături</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Fila ta</string>
+ <string name="revanced_start_page_entry_7">Videoclipuri apreciate</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Istoric</string>
+ <string name="revanced_start_page_entry_9">Populare</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Dezactivează reluarea Jucător de scurtături</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Scurtătura jucătorului nu va fi reluată la pornirea aplicației</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Scurtătura va fi reluată la pornirea aplicației</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Activează aspectul tabletei</string>
+ <string name="revanced_tablet_layout_summary_on">Aspectul tabletei este activat</string>
+ <string name="revanced_tablet_layout_summary_off">Aspectul tabletei este dezactivat</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Posturile comunitare nu apar pe tablete</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minijucător</string>
+ <string name="revanced_miniplayer_screen_summary">Schimbă stilul aplicaţiei minimizat jucătorul</string>
+ <string name="revanced_miniplayer_type_title">Tip minijucător</string>
+ <string name="revanced_miniplayer_type_entry_1">Originală</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tabletă</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ascunde extinderea și închiderea butoanelor</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Butoanele sunt ascunse\n(glisați miniplayer pentru a extinde sau închide)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Afișarea și închiderea butoanelor sunt afișate</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ascunde subtexte</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Subtexte sunt ascunse</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Subtexte sunt afișate</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ascunde butoanele de omitere înainte şi înapoi</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Sari înainte și înapoi sunt ascunse</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Sari înainte și înapoi sunt afișate</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Valoarea Opacității între 0-100, unde 0 este transparent</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Opacitatea miniplayer suprapusă trebuie să fie între 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Activează ecranul de încărcare gradient</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Încărcarea ecranului va avea un fundal pentru gradient</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Ecranul de încărcare va avea un fundal solid</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Activează culoarea barei de căutare personalizate</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Culoarea personalizată a barei de căutare este afișată</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Culoarea bara de căutare originală este afișată</string>
+ <string name="revanced_seekbar_custom_color_value_title">Culoare personalizată bara de căutare</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Culoarea barei de căutare</string>
+ <string name="revanced_seekbar_custom_color_invalid">Valoare nevalidă a culorii barei de căutare. Utilizarea valorii implicite.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Fila principală</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Filă abonament</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Fila ta</string>
+ <string name="revanced_alt_thumbnail_player_title">Liste de redare, recomandări</string>
+ <string name="revanced_alt_thumbnail_search_title">Rezultatele căutării</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">Săgeată & Miniaturi originale</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">Săgeată & Captură încă</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Încă mai capturează</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow oferă miniaturi de mulțime pentru videoclipuri YouTube. Aceste miniaturi sunt adesea mai relevante decât cele furnizate de YouTube\n\nDacă sunt activate, URL-uri video vor fi trimise pe serverul API şi nu sunt trimise alte date. Dacă un videoclip nu are miniaturi DeArrow, apoi capturile originale sau fixe sunt arătate\n\nAtinge aici pentru a afla mai multe despre DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Arată un toast dacă API-ul nu este disponibil</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Toast este afișat dacă DeArrow nu este disponibil</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Toast nu este afișat dacă DeArrow nu este disponibil</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL-ul pentru directorul de cache al miniaturii DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Capturi video încă</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Încă se fac capturi de la început/mijloc/sfârșit al fiecărui video. Aceste imagini sunt încorporate pe YouTube și niciun API extern nu este folosit</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Folosește capturi rapide încă</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Folosind calitatea medie încă captură. Miniaturile se vor încărca mai repede, dar fluxuri live, nepublicate sau foarte vechi videoclipuri pot afișa miniaturi necompletate</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Folosind calitate înaltă capturează încă</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Timp video pentru a face capturi încă din</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Începutul videoclipului</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Mijloc video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Sfârșitul videoclipului</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">Derow temporar indisponibil (cod de stare: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">Desăgeată indisponibilă temporar</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Arată anunțuri revizuite</string>
+ <string name="revanced_announcements_summary_on">Anunțurile sunt afișate la pornire</string>
+ <string name="revanced_announcements_summary_off">Anunțurile nu sunt afișate la pornire</string>
+ <string name="revanced_announcements_enabled_summary">Afișare anunțuri la pornire</string>
+ <string name="revanced_announcements_connection_failed">Conectarea la furnizorul de anunțuri a eșuat</string>
+ <string name="revanced_announcements_dialog_dismiss">Anulare</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Activare auto-repetare</string>
+ <string name="revanced_auto_repeat_summary_on">Auto-repetarea este activată</string>
+ <string name="revanced_auto_repeat_summary_off">Auto-Repetarea este dezactivată</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Spoul dimensiunilor dispozitivului</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Dimensiunile dispozitivului falsificate\n\nCaracteristici video mai mari ar putea fi deblocate, dar este posibil să vă confruntați cu redare video blocată, o viață mai proastă a bateriei și efecte secundare necunoscute</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Dimensiunile dispozitivului nu sunt falsificate\n\nActivarea acesteia poate debloca calități video mai înalte</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Activarea acestei opțiuni poate provoca redare video care rulează, o durată de viață mai slabă a bateriei și efecte secundare necunoscute.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Setări GmsCore</string>
+ <string name="microg_settings_summary">Setări pentru GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Ignoră redirecționările adreselor URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Redirecționările URL sunt ocolite</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Redirecționările URL nu sunt ocolite</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Deschide link-uri în browser</string>
+ <string name="revanced_external_browser_summary_on">Se deschid link-uri extern</string>
+ <string name="revanced_external_browser_summary_off">Se deschid link-uri în aplicație</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Redare fundal</string>
+ <string name="revanced_background_playback_summary">Această setare poate fi găsită în Setări -> Fundal</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Elimină parametrul de urmărire interogare</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Parametrul de urmărire a interogării este eliminat din link-uri</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Parametrul de urmărire a interogării nu este eliminat din link-uri</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Dezactivare haptics zoom</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Hapticele sunt dezactivate</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptic-urile sunt activate</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Calitate automată</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Memorează modificările calității video</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Modificările de calitate se aplică tuturor videoclipurilor</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Modificările de calitate se aplică numai video-ului curent</string>
+ <string name="revanced_video_quality_default_wifi_title">Calitate video implicită în rețeaua Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Calitatea video implicită în rețeaua mobilă</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">WiFi</string>
+ <string name="revanced_remember_video_quality_toast">Calitate %1$s modificată implicit: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Arată butonul de dialog de viteză</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Butonul este afișat</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Butonul nu este afișat</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Viteze de redare personalizate</string>
+ <string name="revanced_custom_playback_speeds_summary">Adaugă sau modifică viteza de redare disponibilă</string>
+ <string name="revanced_custom_playback_speeds_invalid">Vitezele personalizate trebuie să fie mai mici decât %s. Utilizarea valorilor implicite.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Viteze de redare personalizate invalide. Utilizarea valorilor implicite.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Memorează schimbările vitezei de redare</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Schimbarea vitezei de redare se aplică tuturor videoclipurilor</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Modificările vitezei de redare se aplică numai videoclipului curent</string>
+ <string name="revanced_playback_speed_default_title">Viteza de redare implicită</string>
+ <string name="revanced_remember_playback_speed_toast">Viteza implicită a fost modificată la: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Restaurează meniul de calitate video vechi</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Vechea meniu de calitate a videoclipului este afișat</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Meniul vechi de calitate a videoclipului nu este afișat</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Activează diapozitivul pentru a căuta</string>
+ <string name="revanced_slide_to_seek_summary_on">Slide pentru căutare este activat</string>
+ <string name="revanced_slide_to_seek_summary_off">Slide pentru a căuta nu este activat</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof client</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof al clientului pentru a preveni problemele de redare</string>
+ <string name="revanced_spoof_client_title">Spoof client</string>
+ <string name="revanced_spoof_client_summary_on">Clientul este falsificat</string>
+ <string name="revanced_spoof_client_summary_off">Clientul nu este lovit\n\nEste posibil ca redarea video să nu funcționeze</string>
+ <string name="revanced_spoof_client_user_dialog_message">Dezactivarea acestei setări poate cauza probleme de redare video.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof client pe iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Clientul este în prezent falsificat de iOS\n\nEfectele secundare includ:\n• Niciun video HDR\n• Istoria ceasului nu funcționează\n• Calități video mai înalte pot lipsi\n• Fluxurile live nu pot fi redate deoarece doar audio\n• Fluxuri live nu sunt disponibile pe Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Clientul este în prezent falsificat pe Android VR\n\nEfectele secundare includ:\n• Niciun video HDR\n• Videoclipuri cu copii nu redă\n• Videoclipurile întrerupte pot relua aleatoriu\n• Pictograme scurte de calitate slabă\n• Butonul de acțiune de descărcare este întotdeauna ascuns\n• Cardurile de pe ecran sunt întotdeauna ascunse</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Spoof a miniaturilor clientului nu este disponibil (API a expirat)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Fixarea miniaturilor clientului nu este disponibilă temporar: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Semnătură aplicație Spoof</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Sporirea semnăturii aplicației pentru a preveni problemele de redare</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Semnătură aplicație Spoof</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Semnătura aplicației falsificată\n\nEfectele secundare includ:\n• Rata de biți îmbunătățită nu este disponibilă\n• Videoclipurile nu pot fi descărcate\n• Nicio miniatură din bara de căutare pentru videoclipuri cu plată</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Semnătura aplicației nu este falsificată de\n\nEste posibil ca redarea video să nu funcționeze</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Dezactivarea acestei setări va cauza probleme de redare video.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Spoof app signature in feed</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Semnătura aplicației falsificată\n\nEfectele secundare includ:\n• Flux de videoclipuri lipsește subtitrările\n• Fluxurile de videoclipuri redate automat vor apărea în istoricul vizionărilor</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Semnătura aplicației nu este falsificată pentru videoclipurile feed\n\nFlux de videoclipuri vor fi redate pentru mai puțin de 1 minut înainte de a întâmpina probleme de redare</string>
+ <string name="revanced_spoof_storyboard_title">Panou de povestiri</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard cu lingură</string>
+ <string name="revanced_spoof_storyboard_summary_off">Povestirile care nu sunt falsificate de\n\nEfectele secundare includ:\n• Niciun mod ambiental\n• Miniaturile din Seekbar sunt ascunse</string>
+ <string name="revanced_spoof_storyboard_timeout">Spoof storyboard temporar indisponibil (API a expirat)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Tabloul de povestire temporar indisponibil: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Activează luminozitatea automată HDR</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Luminozitatea HDR automată este activată</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Luminozitatea HDR automată este dezactivată</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blochează reclamele audio</string>
+ <string name="revanced_block_audio_ads_summary_on">Anunţurile audio sunt blocate</string>
+ <string name="revanced_block_audio_ads_summary_off">Anunţurile audio sunt deblocate</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s este indisponibil. Reclame pot arata. Incercati sa treceti la un alt serviciu de blocare a reclamelor din setari.</string>
+ <string name="revanced_embedded_ads_service_failed">Serverul %s a returnat o eroare. Anunţurile pot apărea. Încearcă să treci la un alt serviciu de blocare a reclamelor din setări.</string>
+ <string name="revanced_block_embedded_ads_title">Blocare reclame video integrate</string>
+ <string name="revanced_block_embedded_ads_entry_1">Dezactivat</string>
+ <string name="revanced_block_embedded_ads_entry_2">Proxy luminos</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blocare reclame video</string>
+ <string name="revanced_block_video_ads_summary_on">Anunțurile video sunt blocate</string>
+ <string name="revanced_block_video_ads_summary_off">Anunţurile video sunt deblocate</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mesaj șters</string>
+ <string name="revanced_show_deleted_messages_title">Arată mesajele șterse</string>
+ <string name="revanced_show_deleted_messages_entry_1">Nu afișa mesajele șterse</string>
+ <string name="revanced_show_deleted_messages_entry_2">Ascunde mesajele șterse în spatele unui spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Arată mesajele șterse ca text interceptat</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Solicită automat punctele canalului</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Punctele canalului sunt revendicate automat</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Punctele canalului nu sunt revendicate automat</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Activează modul de depanare Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Modul de depanare Twitch este activat (nu este recomandat)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Modul de depanare Twitch este dezactivat</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Setări ReVanced</string>
+ <string name="revanced_ads_screen_title">Anunţuri</string>
+ <string name="revanced_ads_screen_summary">Setări blocare reclame</string>
+ <string name="revanced_chat_screen_title">Chat</string>
+ <string name="revanced_chat_screen_summary">Setări chat</string>
+ <string name="revanced_misc_screen_title">Diverse</string>
+ <string name="revanced_misc_screen_summary">Diverse setări</string>
+ <string name="revanced_general_category_title">Setări generale</string>
+ <string name="revanced_other_category_title">Alte setări</string>
+ <string name="revanced_client_ads_category_title">Reclame din partea clientului</string>
+ <string name="revanced_surestream_ads_category_title">Reclame surestream de pe server</string>
+ <string name="revanced_twitch_debug_title">Jurnal depanare</string>
+ <string name="revanced_twitch_debug_summary_on">Jurnalele de depanare sunt activate</string>
+ <string name="revanced_twitch_debug_summary_off">Jurnalele de depanare sunt dezactivate</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ru-rRU/strings.xml b/src/main/resources/addresources/values-ru-rRU/strings.xml
new file mode 100644
index 0000000000..318ade27c0
--- /dev/null
+++ b/src/main/resources/addresources/values-ru-rRU/strings.xml
@@ -0,0 +1,1198 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Вы хотите продолжить?</string>
+ <string name="revanced_settings_reset">Сбросить</string>
+ <string name="revanced_settings_restart_title">Перезапустить для применения</string>
+ <string name="revanced_settings_restart">Перезапустить</string>
+ <string name="revanced_settings_import">Импортировать</string>
+ <string name="revanced_settings_import_copy">Копировать</string>
+ <string name="revanced_settings_import_reset">Настройки ReVanced сброшены по умолчанию</string>
+ <string name="revanced_settings_import_success">Импортировано %d настроек</string>
+ <string name="revanced_settings_import_failure_parse">Не удалось импортировать: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore не установлен. Установите его.</string>
+ <string name="gms_core_dialog_title">Требуется действие</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore не имеет разрешения на работу в фоновом режиме.\n\nНастройте MicroG согласно инструкции \"Don\'t kill my app\" для Вашего телефона.\n\nЭто необходимо для работы приложения.</string>
+ <string name="gms_core_dialog_open_website_text">Открыть сайт</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Во избежание проблем необходимо отключить оптимизацию батареи для MicroG GmsCore.\n\nНажмите кнопку \"Продолжить\" и отключите оптимизацию батареи.</string>
+ <string name="gms_core_dialog_continue_text">Продолжить</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Вы используете ReVanced Patches версии <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Примечание</string>
+ <string name="revanced_settings_about_links_dev_body">Эта версия является предварительным релизом, могут возникать непредвиденные ошибки</string>
+ <string name="revanced_settings_about_links_header">Официальные ссылки</string>
+ <string name="revanced_pref_import_export_title">Импорт и экспорт настроек</string>
+ <string name="revanced_pref_import_export_summary">Восстановление и сохранение настроек ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Информация</string>
+ <string name="revanced_settings_screen_01_ads_title">Реклама</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Альтернативные миниатюры</string>
+ <string name="revanced_settings_screen_03_feed_title">Лента</string>
+ <string name="revanced_settings_screen_04_player_title">Плеер</string>
+ <string name="revanced_settings_screen_05_general_title">Основной интерфейс</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Прогресс воспроизведения</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Управление жестами</string>
+ <string name="revanced_settings_screen_11_misc_title">Прочие</string>
+ <string name="revanced_settings_screen_12_video_title">Видео</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Отладка</string>
+ <string name="revanced_debug_screen_summary">Включить или отключить параметры отладки</string>
+ <string name="revanced_debug_title">Журналы отладки</string>
+ <string name="revanced_debug_summary_on">Журналы отладки включены</string>
+ <string name="revanced_debug_summary_off">Журналы отладки отключены</string>
+ <string name="revanced_debug_protobuffer_title">Журнал протокола буфера</string>
+ <string name="revanced_debug_protobuffer_summary_on">Журналы отладки включают протокол буфера</string>
+ <string name="revanced_debug_protobuffer_summary_off">Журналы отладки не включают протокол буфера</string>
+ <string name="revanced_debug_stacktrace_title">Журнал трассировки стека</string>
+ <string name="revanced_debug_stacktrace_summary_on">Журналы отладки включают трассировку стека</string>
+ <string name="revanced_debug_stacktrace_summary_off">Журналы отладки не включают трассировку стека</string>
+ <string name="revanced_debug_toast_on_error_title">Уведомление при ошибке</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Всплывающее уведомление при ошибке Revanced отображено</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Всплывающее уведомление при ошибке Revanced скрыто</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Отключение всплывающих уведомлений об ошибках скрывает все сообщения об ошибках ReVanced.\n\nВы не будете получать уведомления о каких-либо непредвиденных событиях.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Подсветка кнопок</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Кнопки \"Лайк\" и \"Подписаться\" не будут подсвечиваться при упоминании</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Кнопки \"Лайк\" и \"Подписаться\" будут подсвечиваться при упоминании</string>
+ <string name="revanced_hide_gray_separator_title">Серые разделители</string>
+ <string name="revanced_hide_gray_separator_summary_on">Серые разделители в ленте между видео и публикациями сообщества скрыты</string>
+ <string name="revanced_hide_gray_separator_summary_off">Серые разделители в ленте между видео и публикациями сообщества отображены</string>
+ <string name="revanced_hide_channel_watermark_title">Водяной знак канала</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Водяной знак канала в плеере скрыт</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Водяной знак канала в плеере отображен</string>
+ <string name="revanced_hide_horizontal_shelves_title">Горизонтальные секции</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Горизонтальные секции скрыты:\n• Срочные новости\n• Продолжить просмотр\n• Исследовать больше каналов\n• Покупки\n• Смотреть снова</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Горизонтальные секции отображены</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Кнопка \"Стать спонсором\"</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Кнопка \"Стать спонсором\" скрыта</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Кнопка \"Стать спонсором\" отображена</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Секция \"Для вас\"</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Секция \"Для вас\" на странице канала скрыта</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Секция \"Для вас\" на странице канала отображена</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Кнопка \"Прислать уведомление\"</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Кнопка \"Прислать уведомление\" под видео скрыта</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Кнопка \"Прислать уведомление\" под видео отображена</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Секция \"Зрители также посмотрели\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Секция рекомендаций \"Зрители также посмотрели\" в ленте скрыта</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Секция рекомендаций \"Зрители также посмотрели\" в ленте отображена</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Кнопка \"Загрузить еще\"</string>
+ <string name="revanced_hide_show_more_button_summary_on">Кнопка \"Загрузить еще\" в результатах поиска скрыта</string>
+ <string name="revanced_hide_show_more_button_summary_off">Кнопка \"Загрузить еще\" в результатах поиска отображена</string>
+ <string name="revanced_hide_timed_reactions_title">Временные реакции</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Временные реакции в комментариях и живом чате скрыты</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Временные реакции в комментариях и живом чате отображены</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Заголовок секции в поиске</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Заголовок секции в результатах поиска скрыт</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Заголовок секции в результатах поиска отображен</string>
+ <string name="revanced_hide_channel_guidelines_title">Правила канала</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Правила канала в комментариях скрыты</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Правила канала в комментариях отображены</string>
+ <string name="revanced_hide_expandable_chip_title">Расширяемые фрагменты</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Расширяемые фрагменты под видео скрыты</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Расширяемые фрагменты под видео отображены</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Меню качества видео</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Меню качества видео скрыто</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Меню качества видео отображено</string>
+ <string name="revanced_hide_community_posts_title">Публикации сообщества</string>
+ <string name="revanced_hide_community_posts_summary_on">Публикации сообщества в ленте скрыты</string>
+ <string name="revanced_hide_community_posts_summary_off">Публикации сообщества в ленте отображены</string>
+ <string name="revanced_hide_compact_banner_title">Компактные баннеры</string>
+ <string name="revanced_hide_compact_banner_summary_on">Компактные баннеры скрыты</string>
+ <string name="revanced_hide_compact_banner_summary_off">Компактные баннеры отображены</string>
+ <string name="revanced_hide_movies_section_title">Раздел фильмов</string>
+ <string name="revanced_hide_movies_section_summary_on">Раздел фильмов в описании видео скрыт</string>
+ <string name="revanced_hide_movies_section_summary_off">Раздел фильмов в описании видео отображен</string>
+ <string name="revanced_hide_feed_survey_title">Опросы в ленте</string>
+ <string name="revanced_hide_feed_survey_summary_on">Опросы в ленте скрыты</string>
+ <string name="revanced_hide_feed_survey_summary_off">Опросы в ленте отображены</string>
+ <string name="revanced_hide_community_guidelines_title">Правила сообщества</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Правила сообщества в комментариях скрыты</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Правила сообщества в комментариях отображены</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Правила сообщества подписчиков</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Правила сообщества подписчиков скрыты</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Правила сообщества подписчиков отображены</string>
+ <string name="revanced_hide_channel_member_shelf_title">Секция спонсоров канала</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Секция спонсоров на странице канала скрыта</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Секция спонсоров на странице канала отображена</string>
+ <string name="revanced_hide_emergency_box_title">Экстренные колонки</string>
+ <string name="revanced_hide_emergency_box_summary_on">Экстренные колонки в результатах поиска и плеере скрыты</string>
+ <string name="revanced_hide_emergency_box_summary_off">Экстренные колонки в результатах поиска и плеере отображены</string>
+ <string name="revanced_hide_info_panels_title">Информационные панели</string>
+ <string name="revanced_hide_info_panels_summary_on">Информационные панели с важной информацией в ленте, результатах поиска и видео скрыты</string>
+ <string name="revanced_hide_info_panels_summary_off">Информационные панели с важной информацией в ленте, результатах поиска и видео отображены</string>
+ <string name="revanced_hide_medical_panels_title">Медицинские панели</string>
+ <string name="revanced_hide_medical_panels_summary_on">Медицинские панели в ленте, результатах поиска и видео скрыты</string>
+ <string name="revanced_hide_medical_panels_summary_off">Медицинские панели в ленте, результатах поиска и видео отображены</string>
+ <string name="revanced_hide_channel_bar_title">Панель канала</string>
+ <string name="revanced_hide_channel_bar_summary_on">Панель канала под плеером скрыта</string>
+ <string name="revanced_hide_channel_bar_summary_off">Панель канала под плеером отображена</string>
+ <string name="revanced_hide_playables_title">Встроенные игры</string>
+ <string name="revanced_hide_playables_summary_on">Встроенные игры в ленте скрыты</string>
+ <string name="revanced_hide_playables_summary_off">Встроенные игры в ленте отображены</string>
+ <string name="revanced_hide_quick_actions_title">Быстрые действия</string>
+ <string name="revanced_hide_quick_actions_summary_on">Быстрые действия в полноэкранном режиме скрыты</string>
+ <string name="revanced_hide_quick_actions_summary_off">Быстрые действия в полноэкранном режиме отображены</string>
+ <string name="revanced_hide_related_videos_title">Похожие видео</string>
+ <string name="revanced_hide_related_videos_summary_on">Похожие видео в быстрых действиях в полноэкранном режиме скрыты</string>
+ <string name="revanced_hide_related_videos_summary_off">Похожие видео в быстрых действиях в полноэкранном режиме отображены</string>
+ <string name="revanced_hide_image_shelf_title">Секция изображений</string>
+ <string name="revanced_hide_image_shelf_summary_on">Секция изображений в результатах поиска скрыта</string>
+ <string name="revanced_hide_image_shelf_summary_off">Секция изображений в результатах поиска отображена</string>
+ <string name="revanced_hide_latest_posts_ads_title">Последние публикации</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Последние публикации в ленте скрыты</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Последние публикации в ленте отображены</string>
+ <string name="revanced_hide_mix_playlists_title">Плейлисты \"Джем\"</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Плейлисты \"Джем\" в ленте и плеере скрыты</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Плейлисты \"Джем\" в ленте и плеере отображены</string>
+ <string name="revanced_hide_artist_cards_title">Карточки исполнителей</string>
+ <string name="revanced_hide_artist_cards_summary_on">Карточки исполнителей скрыты</string>
+ <string name="revanced_hide_artist_cards_summary_off">Карточки исполнителей отображены</string>
+ <string name="revanced_hide_chips_shelf_title">Секция тегов видео</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Секция тегов похожих видео под плеером скрыта</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Секция тегов похожих видео под плеером отображена</string>
+ <string name="revanced_hide_attributes_section_title">Разделы атрибутов</string>
+ <string name="revanced_hide_attributes_section_summary_on">Разделы \"Упомянутые или показанные места\", \"Игры\" и \"Музыка\" в описании видео скрыты</string>
+ <string name="revanced_hide_attributes_section_summary_off">Разделы \"Упомянутые или показанные места\", \"Игры\" и \"Музыка\" в описании видео отображены</string>
+ <string name="revanced_hide_chapters_section_title">Раздел \"Эпизоды\"</string>
+ <string name="revanced_hide_chapters_section_summary_on">Раздел \"Эпизоды\" в описании видео скрыт</string>
+ <string name="revanced_hide_chapters_section_summary_off">Раздел \"Эпизоды\" в описании видео отображен</string>
+ <string name="revanced_hide_podcast_section_title">Раздел \"Другие выпуски подкаста\"</string>
+ <string name="revanced_hide_podcast_section_summary_on">Раздел \"Другие выпуски подкаста\" скрыт</string>
+ <string name="revanced_hide_podcast_section_summary_off">Раздел \"Другие выпуски подкаста\" отображен</string>
+ <string name="revanced_hide_info_cards_section_title">Раздел подсказок</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Раздел подсказок в описании видео скрыт</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Раздел подсказок в описании видео отображен</string>
+ <string name="revanced_hide_transcript_section_title">Раздел расшифровки</string>
+ <string name="revanced_hide_transcript_section_summary_on">Раздел расшифровки в описании видео скрыт</string>
+ <string name="revanced_hide_transcript_section_summary_off">Раздел расшифровки в описании видео отображен</string>
+ <string name="revanced_hide_description_components_screen_title">Описание видео</string>
+ <string name="revanced_hide_description_components_screen_summary">Скрыть или отобразить компоненты описания видео</string>
+ <string name="revanced_custom_filter_screen_title">Пользовательский фильтр</string>
+ <string name="revanced_custom_filter_screen_summary">Скрыть компоненты с помощью пользовательских фильтров</string>
+ <string name="revanced_custom_filter_title">Пользовательский фильтр</string>
+ <string name="revanced_custom_filter_summary_on">Пользовательский фильтр включен</string>
+ <string name="revanced_custom_filter_summary_off">Пользовательский фильтр отключен</string>
+ <string name="revanced_custom_filter_strings_title">Пользовательский фильтр</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Список строк для фильтрации, разделенных новой строкой</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Недопустимый пользовательский фильтр: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Фильтр ключевых слов</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Скрыть видео из результатов поиска и ленты с помощью фильтров ключевых слов</string>
+ <string name="revanced_hide_keyword_content_home_title">Видео на \"Главной\"</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Видео на вкладке \"Главная\" фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Видео на вкладке \"Главная\" не фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Видео в \"Подписках\"</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Видео на вкладке \"Подписки\" фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Видео на вкладке \"Подписки\" не фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_search_title">Фильтр результатов поиска</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Результаты поиска фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Результаты поиска не фильтруются по ключевым словам</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Ключевые слова для скрытия</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Ключевые слова и фразы, которые нужно скрыть, разделены новыми строками\n\nСлова чувствительны к регистру (например: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">О фильтре ключевых слов</string>
+ <string name="revanced_hide_keyword_content_about_summary">Вкладки \"Главная\", \"Подписки\" и результаты поиска фильтруются для скрытия контента, соответствующего ключевым фразам\n\nОграничения\n• Некоторые Shorts могут быть не скрыты\n• Некоторые компоненты пользовательского интерфейса могут быть не скрыты\n• Поиск по ключевому слову может не дать результатов</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Недопустимое ключевое слово. Невозможно использовать: \'%s\' в качестве фильтра</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Недопустимое ключевое слово. \'%1$s\' содержит менее %2$d символов</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Ключевое слово \'$s\' скроет все видео</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Реклама общего формата</string>
+ <string name="revanced_hide_general_ads_summary_on">Реклама общего формата скрыта</string>
+ <string name="revanced_hide_general_ads_summary_off">Реклама общего формата отображена</string>
+ <string name="revanced_hide_fullscreen_ads_title">Полноэкранная реклама</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Полноэкранная реклама при запуске приложения скрыта\n\nДанная функция доступна только для старых устройств</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Полноэкранная реклама при запуске приложения отображена</string>
+ <string name="revanced_hide_buttoned_ads_title">Видеообъявления</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Видеообъявления скрыты</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Видеообъявления отображены</string>
+ <string name="revanced_hide_paid_promotion_label_title">Метка платной акции</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Метка платной акции в плеере скрыта</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Метка платной акции в плеере отображена</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Заставки саморекламы</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Заставки саморекламы под информацией о видео скрыты</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Заставки саморекламы под информацией о видео отображены</string>
+ <string name="revanced_hide_products_banner_title">Баннеры просмотра товаров</string>
+ <string name="revanced_hide_products_banner_summary_on">Баннеры просмотра товаров в плеере скрыты</string>
+ <string name="revanced_hide_products_banner_summary_off">Баннеры просмотра товаров в плеере отображены</string>
+ <string name="revanced_hide_shopping_links_title">Ссылки на товары</string>
+ <string name="revanced_hide_shopping_links_summary_on">Ссылки на товары в описании видео скрыты</string>
+ <string name="revanced_hide_shopping_links_summary_off">Ссылки на товары в описании видео отображены</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Кнопка \"Посетить магазин\"</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Кнопка \"Посетить магазин\" на странице канала скрыта</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Кнопка \"Посетить магазин\" на странице канала отображена</string>
+ <string name="revanced_hide_web_search_results_title">Результаты веб-поиска</string>
+ <string name="revanced_hide_web_search_results_summary_on">Результаты веб-поиска в ленте скрыты</string>
+ <string name="revanced_hide_web_search_results_summary_off">Результаты веб-поиска в ленте отображены</string>
+ <string name="revanced_hide_merchandise_banners_title">Баннеры торговли</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Баннеры торговли в ленте скрыты</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Баннеры торговли в ленте отображены</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Скрытие полноэкранной рекламы работает только для старых устройств</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Реклама YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Реклама YouTube Premium под плеером скрыта</string>
+ <string name="revanced_hide_get_premium_summary_off">Реклама YouTube Premium под плеером отображена</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Видеореклама</string>
+ <string name="revanced_hide_video_ads_summary_on">Видеореклама в плеере скрыта</string>
+ <string name="revanced_hide_video_ads_summary_off">Видеореклама в плеере отображена</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL-адрес скопирован</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL-адрес с меткой времени скопирован</string>
+ <string name="revanced_copy_video_url_title">Кнопка копирования URL</string>
+ <string name="revanced_copy_video_url_summary_on">Кнопка отображена. Нажмите для копирования URL-адреса видео. Нажмите и удерживайте для копирования URL-адреса видео с меткой времени</string>
+ <string name="revanced_copy_video_url_summary_off">Кнопка копирования URL-адреса видео скрыта</string>
+ <string name="revanced_copy_video_url_timestamp_title">Кнопка копирования URL с меткой</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Кнопка отображена. Нажмите для копирования URL-адреса видео с меткой времени. Нажмите и удерживайте для копирования URL-адреса видео без метки времени</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Кнопка копирования URL-адреса видео с меткой времени скрыта</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Окно о нежелательном контенте</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Диалоговое окно о нежелательном контенте скрыто</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Диалоговое окно о нежелательном контенте отображено</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Данная функция не обходит возрастное ограничение. Она просто принимает возрастное ограничение автоматически.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Внешний загрузчик</string>
+ <string name="revanced_external_downloader_screen_summary">Настройки использования внешнего загрузчика видео</string>
+ <string name="revanced_external_downloader_title">Кнопка внешнего загрузчика</string>
+ <string name="revanced_external_downloader_summary_on">Кнопка внешнего загрузчика в плеере отображена</string>
+ <string name="revanced_external_downloader_summary_off">Кнопка внешнего загрузчика в плеере скрыта</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Действие кнопки \"Скачать\"</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Кнопка \"Скачать\" запускает внешний загрузчик</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Кнопка \"Скачать\" запускает собственный загрузчик</string>
+ <string name="revanced_external_downloader_name_title">Имя пакета загрузчика</string>
+ <string name="revanced_external_downloader_name_summary">Имя пакета установленного Вами приложения внешнего загрузчика, такого как NewPipe или Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s не установлен. Пожалуйста, установите его.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Жест покадровой перемотки</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Жест покадровой перемотки отключен</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Жест покадровой перемотки включен</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Перемотка нажатием</string>
+ <string name="revanced_seekbar_tapping_summary_on">Перемотка нажатием на прогресс воспроизведения включена</string>
+ <string name="revanced_seekbar_tapping_summary_off">Перемотка нажатием на прогресс воспроизведения отключена</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Регулировка яркости жестом</string>
+ <string name="revanced_swipe_brightness_summary_on">Регулировка яркости жестом включена</string>
+ <string name="revanced_swipe_brightness_summary_off">Регулировка яркости жестом отключена</string>
+ <string name="revanced_swipe_volume_title">Регулировка громкости жестом</string>
+ <string name="revanced_swipe_volume_summary_on">Регулировка громкости жестом включена</string>
+ <string name="revanced_swipe_volume_summary_off">Регулировка громкости жестом отключена</string>
+ <string name="revanced_swipe_press_to_engage_title">Нажатие для жестов</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Нажатие для выполнения жестов включено</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Нажатие для выполнения жестов отключено</string>
+ <string name="revanced_swipe_haptic_feedback_title">Виброотклик при жестах</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Виброотклик при выполнении жестов включен</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Виброотклик при выполнении жестов отключен</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Запоминание значений яркости</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Значения яркости запоминаются при выходе или входе в полноэкранный режим</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Значения яркости не запоминаются при выходе или входе в полноэкранный режим</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Жест автояркости</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Активация автояркости жестом до самого низкого значения яркости включена</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Активация автояркости жестом до самого низкого значения яркости отключена</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Автоматически</string>
+ <string name="revanced_swipe_overlay_timeout_title">Длительность оверлея жестов</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Количество миллисекунд для отображения оверлея при выполнении жестов</string>
+ <string name="revanced_swipe_text_overlay_size_title">Размер текста оверлея жестов</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Размер текста оверлея при выполнении жестов</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Видимость фона оверлея жестов</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Видимость фона оверлея при выполнении жестов</string>
+ <string name="revanced_swipe_threshold_title">Порог величины жеста</string>
+ <string name="revanced_swipe_threshold_summary">Минимальная амплитуда движения, распознаваемого как жест</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Автоматические субтитры</string>
+ <string name="revanced_auto_captions_summary_on">Автоматические субтитры отключены</string>
+ <string name="revanced_auto_captions_summary_off">Автоматические субтитры включены</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Кнопки действий</string>
+ <string name="revanced_hide_buttons_screen_summary">Скрыть или отобразить кнопки действий под видео</string>
+ <string name="revanced_hide_like_dislike_button_title">Кнопки \"Лайк\" и \"Дизлайк\"</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Кнопки \"Лайк\" и \"Дизлайк\" под плеером скрыты</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Кнопки \"Лайк\" и \"Дизлайк\" под плеером отображены</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Кнопка \"Поделиться\"</string>
+ <string name="revanced_hide_share_button_summary_on">Кнопка \"Поделиться\" под плеером скрыта</string>
+ <string name="revanced_hide_share_button_summary_off">Кнопка \"Поделиться\" под плеером отображена</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Кнопка \"Пожаловаться\"</string>
+ <string name="revanced_hide_report_button_summary_on">Кнопка \"Пожаловаться\" под плеером скрыта</string>
+ <string name="revanced_hide_report_button_summary_off">Кнопка \"Пожаловаться\" под плеером отображена</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Кнопка \"Ремикс\"</string>
+ <string name="revanced_hide_remix_button_summary_on">Кнопка \"Ремикс\" под плеером скрыта</string>
+ <string name="revanced_hide_remix_button_summary_off">Кнопка \"Ремикс\" под плеером отображена</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Кнопка \"Скачать\"</string>
+ <string name="revanced_hide_download_button_summary_on">Кнопка \"Скачать\" под плеером скрыта</string>
+ <string name="revanced_hide_download_button_summary_off">Кнопка \"Скачать\" под плеером отображена</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Кнопка \"Спасибо\"</string>
+ <string name="revanced_hide_thanks_button_summary_on">Кнопка \"Спасибо\" под плеером скрыта</string>
+ <string name="revanced_hide_thanks_button_summary_off">Кнопка \"Спасибо\" под плеером отображена</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Кнопка \"Создать клип\"</string>
+ <string name="revanced_hide_clip_button_summary_on">Кнопка \"Создать клип\" под плеером скрыта</string>
+ <string name="revanced_hide_clip_button_summary_off">Кнопка \"Создать клип\" под плеером отображена</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Кнопка \"Сохранить в плейлист\"</string>
+ <string name="revanced_hide_playlist_button_summary_on">Кнопка \"Сохранить в плейлист\" под плеером скрыта</string>
+ <string name="revanced_hide_playlist_button_summary_off">Кнопка \"Сохранить в плейлист\" под плеером отображена</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Кнопка \"Автовоспроизведение\"</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Кнопка \"Автовоспроизведение\" в плеере скрыта</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Кнопка \"Автовоспроизведение\" в плеере отображена</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Кнопка \"Субтитры\"</string>
+ <string name="revanced_hide_captions_button_summary_on">Кнопка \"Субтитры\" в плеере скрыта</string>
+ <string name="revanced_hide_captions_button_summary_off">Кнопка \"Субтитры\" в плеере отображена</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Кнопка \"Трансляция\"</string>
+ <string name="revanced_hide_cast_button_summary_on">Кнопка \"Трансляция\" в плеере скрыта</string>
+ <string name="revanced_hide_cast_button_summary_off">Кнопка \"Трансляция\" в плеере отображена</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Кнопки навигации</string>
+ <string name="revanced_navigation_buttons_screen_summary">Скрыть или изменить кнопки в панели навигации</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Кнопка \"Главная\"</string>
+ <string name="revanced_hide_home_button_summary_on">Кнопка \"Главная\" в панели навигации скрыта</string>
+ <string name="revanced_hide_home_button_summary_off">Кнопка \"Главная\" в панели навигации отображена</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Кнопка \"Shorts\"</string>
+ <string name="revanced_hide_shorts_button_summary_on">Кнопка \"Shorts\" в панели навигации скрыта</string>
+ <string name="revanced_hide_shorts_button_summary_off">Кнопка \"Shorts\" в панели навигации отображена</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Кнопка \"Создать\"</string>
+ <string name="revanced_hide_create_button_summary_on">Кнопка \"Создать\" в панели навигации скрыта</string>
+ <string name="revanced_hide_create_button_summary_off">Кнопка \"Создать\" в панели навигации отображена</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Кнопка \"Подписки\"</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Кнопка \"Подписки\" в панели навигации скрыта</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Кнопка \"Подписки\" в панели навигации отображена</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Инверсия \"Создать\" и \"Уведомления\"</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Кнопки \"Создать\" и \"Уведомления\" заменены местами\n\nПримечание: включение этой опции также принудительно скрывает видеорекламу</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Кнопки \"Создать\" и \"Уведомления\" не заменены местами</string>
+ <string name="revanced_hide_navigation_button_labels_title">Подписи кнопок навигации</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Подписи кнопок навигации скрыты</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Подписи кнопок навигации отображены</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Выдвижное меню плеера</string>
+ <string name="revanced_hide_player_flyout_summary">Скрыть или отобразить пункты выдвижного меню плеера</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Пункт \"Субтитры\"</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Пункт \"Субтитры\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Пункт \"Субтитры\" в выдвижном меню плеера отображен</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Пункт \"Дополнительные настройки\"</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Пункт \"Дополнительные настройки\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Пункт \"Дополнительные настройки\" в выдвижном меню плеера отображен</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Пункт \"Повтор воспроизведения\"</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Пункт \"Повтор воспроизведения\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Пункт \"Повтор воспроизведения\" в выдвижном меню плеера отображен</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Пункт \"Фоновая подсветка\"</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Пункт \"Фоновая подсветка\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Пункт \"Фоновая подсветка\" в выдвижном меню плеера отображен</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Пункт \"Справка и отзывы\"</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Пункт \"Справка и отзывы\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Пункт \"Справка и отзывы\" в выдвижном меню плеера отображен</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Пункт \"Скорость воспроизведения\"</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Пункт \"Скорость воспроизведения\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Пункт \"Скорость воспроизведения\" в выдвижном меню плеера отображен</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Пункт \"Дополнительная информация\"</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Пункт \"Дополнительная информация\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Пункт \"Дополнительная информация\" в выдвижном меню плеера отображен</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Пункт \"Блокировка экрана\"</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Пункт \"Блокировка экрана\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Пункт \"Блокировка экрана\" в выдвижном меню плеера отображен</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Пункт \"Звуковая дорожка\"</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Пункт \"Звуковая дорожка\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Пункт \"Звуковая дорожка\" в выдвижном меню плеера отображен</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Пункт \"Смотреть в VR-режиме\"</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Пункт \"Смотреть в VR-режиме\" в выдвижном меню плеера скрыт</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Пункт \"Смотреть в VR-режиме\" в выдвижном меню плеера отображен</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Кнопки переключения видео</string>
+ <string name="revanced_hide_player_buttons_summary_on">Кнопки предыдущего и следующего видео скрыты</string>
+ <string name="revanced_hide_player_buttons_summary_off">Кнопки предыдущего и следующего видео отображены</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Карточки альбомов</string>
+ <string name="revanced_hide_album_cards_summary_on">Карточки альбомов под описанием артистов скрыты</string>
+ <string name="revanced_hide_album_cards_summary_off">Карточки альбомов под описанием артистов отображены</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Комментарии</string>
+ <string name="revanced_comments_screen_summary">Скрыть или отобразить компоненты раздела комментариев</string>
+ <string name="revanced_hide_comments_by_members_header_title">Заголовок \"Комментарии спонсоров\"</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Заголовок \"Комментарии спонсоров\" скрыт</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Заголовок \"Комментарии спонсоров\" отображен</string>
+ <string name="revanced_hide_comments_section_title">Раздел комментариев</string>
+ <string name="revanced_hide_comments_section_summary_on">Раздел комментариев под плеером скрыт</string>
+ <string name="revanced_hide_comments_section_summary_off">Раздел комментариев под плеером отображен</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Кнопка \"Создать Short\"</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Кнопка \"Создать Short\" скрыта</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Кнопка \"Создать Short\" отображена</string>
+ <string name="revanced_hide_comments_preview_comment_title">Предпросмотр комментария</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Предпросмотр комментария под плеером скрыт</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Предпросмотр комментария под плеером отображен</string>
+ <string name="revanced_hide_comments_thanks_button_title">Кнопка \"Спасибо\"</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Кнопка \"Спасибо\" скрыта</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Кнопка \"Спасибо\" отображена</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Метка времени и кнопки эмодзи</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Метка времени и кнопки эмодзи в разделе комментариев скрыты</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Метка времени и кнопки эмодзи в разделе комментариев отображены</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Колонка \"Коллективный сбор\"</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Колонка \"Коллективный сбор\" между плеером и описанием видео скрыта</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Колонка \"Коллективный сбор\" между плеером и описанием видео отображена</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Заставки следущих видео</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Заставки следующих видео в конце просмотра скрыты</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Заставки следующих видео в конце просмотра отображены</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Панель фильтров</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Скрыть или отобразить панель фильтров в ленте, поиске и похожих видео</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Панель фильтров в ленте</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Панель фильтров в ленте скрыта</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Панель фильтров в ленте отображена</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Панель фильтров в поиске</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Панель фильтров в поиске скрыта</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Панель фильтров в поиске отображена</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Панель фильтров в похожих видео</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Панель фильтров в похожих видео скрыта</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Панель фильтров в похожих видео отображена</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Плавающая кнопка микрофона</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Плавающая кнопка микрофона в поиске скрыта</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Плавающая кнопка микрофона в поиске отображена</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Фоновая подсветка</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Фоновая подсветка в полноэкранном режиме отключена</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Фоновая подсветка в полноэкранном режиме включена</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Подсказки</string>
+ <string name="revanced_hide_info_cards_summary_on">Подсказки в видео скрыты</string>
+ <string name="revanced_hide_info_cards_summary_off">Подсказки в видео отображены</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Анимированные счетчики</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Анимированные счетчики просмотров, лайков и дизлайков отключены</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Анимированные счетчики просмотров, лайков и дизлайков включены</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Прогресс воспроизведения</string>
+ <string name="revanced_hide_seekbar_summary_on">Прогресс воспроизведения в плеере скрыт</string>
+ <string name="revanced_hide_seekbar_summary_off">Прогресс воспроизведения в плеере отображен</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Миниатюры прогресса воспроизведения</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Миниатюры прогресса воспроизведения скрыты</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Миниатюры прогресса воспроизведения отображены</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Shorts в ленте \"Главной\"</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts в ленте \"Главной\" скрыты</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts в ленте \"Главной\" отображены</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Shorts в ленте \"Подписок\"</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts в ленте \"Подписок\" скрыты</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts в ленте \"Подписок\" отображены</string>
+ <string name="revanced_hide_shorts_search_title">Shorts в результатах поиска</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts в результатах поиска скрыты</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts в результатах поиска отображены</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Кнопка \"Присоединиться\"</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Кнопка \"Присоединиться\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Кнопка \"Присоединиться\" в Shorts отображена</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Кнопка \"Подписаться\"</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Кнопка \"Подписаться\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Кнопка \"Подписаться\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Оверлей кнопок при паузе</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Оверлей кнопок при паузе скрыт</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Оверлей кнопок при паузе отображен</string>
+ <string name="revanced_hide_shorts_shop_button_title">Кнопка \"Магазин\"</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Кнопка \"Магазин\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Кнопка \"Магазин\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Скрыть кнопку \"Супер спасибо\"</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Кнопка \"Супер спасибо\" скрыта</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Кнопка \"Супер спасибо\" показывается</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Товары с тегом</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Товары с тегом в Shorts скрыты</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Товары с тегом в Shorts отображены</string>
+ <string name="revanced_hide_shorts_location_label_title">Метка местоположения</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Метка местоположения в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Метка местоположения в Shorts отображена</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Кнопка \"Сохранить звук в плейлист\"</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Кнопка \"Сохранить звук в плейлист\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Кнопка \"Сохранить звук в плейлист\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Поисковые подсказки</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Поисковые подсказки скрыты</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Поисковые подсказки отображены</string>
+ <string name="revanced_hide_shorts_like_button_title">Кнопка \"Лайк\"</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Кнопка \"Лайк\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Кнопка \"Лайк\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Кнопка \"Дизлайк\"</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Кнопка \"Дизлайк\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Кнопка \"Дизлайк\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_comments_button_title">Кнопка \"Комментарии\"</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Кнопка \"Комментарии\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Кнопка \"Комментарии\" в Shorts отображена</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Кнопка \"Ремикс\"</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Кнопка \"Ремикс\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Кнопка \"Ремикс\" в Shorts отображена</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Кнопка \"Поделиться\"</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Кнопка \"Поделиться\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Кнопка \"Поделиться\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_info_panel_title">Информационная панель</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Информационная панель в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Информационная панель в Shorts отображена</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Панель канала</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Панель канала в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Панель канала в Shorts отображена</string>
+ <string name="revanced_hide_shorts_video_title_title">Заголовок видео</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Заголовок видео в Shorts скрыт</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Заголовок видео в Shorts отображен</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Метка звуковых метаданных</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Метка звуковых метаданных в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Метка звуковых метаданных в Shorts отображена</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Метка полной ссылки на видео</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Метка полной ссылки на видео в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Метка полной ссылки на видео в Shorts отображена</string>
+ <string name="revanced_hide_shorts_sound_button_title">Кнопка \"Со звуком\"</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Кнопка \"Со звуком\" в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Кнопка \"Со звуком\" в Shorts отображена</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Панель навигации</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Панель навигации в Shorts скрыта</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Панель навигации в Shorts отображена</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Предлагаемые видео</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Предлагаемые видео в конце просмотра скрыты</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Предлагаемые видео в конце просмотра отображены</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Метка времени видео</string>
+ <string name="revanced_hide_timestamp_summary_on">Метка времени видео в плеере скрыта</string>
+ <string name="revanced_hide_timestamp_summary_off">Метка времени видео в плеере отображена</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Всплывающие панели плеера</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Автоматически всплывающие панели (плейлист или живой чат) в плеере скрыты</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Автоматически всплывающие панели (плейлист или живой чат) в плеере отображены</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Непрозрачность оверлея плеера</string>
+ <string name="revanced_player_overlay_opacity_summary">Значение непрозрачности в пределах 0-100, где 0 - это прозрачно</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Непрозрачность оверлея плеера должна быть от 0 до 100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Скрыты</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">\"Дизлайки\" временно недоступны (таймаут API)</string>
+ <string name="revanced_ryd_failure_connection_status_code">\"Дизлайки\" недоступны (статус %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">\"Дизлайки\" недоступны (лимит клиентов API)</string>
+ <string name="revanced_ryd_failure_generic">\"Дизлайки\" недоступны (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Обновите видео для голосования с Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">\"Дизлайки\" отображены</string>
+ <string name="revanced_ryd_enable_summary_off">\"Дизлайки\" скрыты</string>
+ <string name="revanced_ryd_shorts_title">\"Дизлайки\" в Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">\"Дизлайки\" в Shorts отображены</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">\"Дизлайки\" в Shorts отображены\n\nОграничение: \"Дизлайки\" могут не отображаться в режиме инкогнито</string>
+ <string name="revanced_ryd_shorts_summary_off">\"Дизлайки\" в Shorts скрыты</string>
+ <string name="revanced_ryd_dislike_percentage_title">Варианты отображения \"Дизлайков\"</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">\"Дизлайки\" отображаются как проценты</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">\"Дизлайки\" отображаются как число</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Стиль кнопки \"Лайк\"</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Кнопка \"Лайк\" стилизована для минимальной ширины</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Кнопка \"Лайк\" стилизована для лучшего внешнего вида</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Уведомление при недоступности API</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Всплывающее уведомление при недоступности Return YouTube Dislike отображено</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Всплывающее уведомление при недоступности Return YouTube Dislike скрыто</string>
+ <string name="revanced_ryd_about">Информация</string>
+ <string name="revanced_ryd_attribution_summary">Данные предоставлены Return YouTube Dislike API. Нажмите для получения дополнительной информации</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Статистика Return YouTube Dislike API этого устройства</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Время ответа API, среднее</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Время ответа API, минимальное</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Время ответа API, максимальное</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Время ответа API, последнее видео</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">\"Дизлайки\" временно недоступны – действует ограничение скорости клиентского API</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API получает голоса, количество запросов</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Сетевые запросы не выполнены</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Выполнено %d сетевых запросов</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API получает голоса, количество таймаутов</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Сетевые запросы не имели таймаутов</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Таймаут %d сетевых запросов</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Ограничения скорости клиента API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Ограничения скорости клиента API не обнаружены</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Ограничения скорости клиента API обнаружены %d раз</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d миллисекунд</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Широкая панель поиска</string>
+ <string name="revanced_wide_searchbar_summary_on">Широкая панель поиска вместо кнопки поиска включена (логотип YouTube будет скрыт)</string>
+ <string name="revanced_wide_searchbar_summary_off">Широкая панель поиска отключена</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Восстановление старых миниатюр</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Старые миниатюры восстановлены - миниатюры прогресса воспроизведения отображаются над ним</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Миниатюры прогресса воспроизведения отображаются в полноэкранном режиме</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Включить SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock – это краудсорсинговая система для пропуска раздражающих фрагментов видео YouTube</string>
+ <string name="revanced_sb_appearance_category">Внешний вид</string>
+ <string name="revanced_sb_enable_voting">Кнопка голосования</string>
+ <string name="revanced_sb_enable_voting_sum_on">Кнопка голосования за сегмент отображена</string>
+ <string name="revanced_sb_enable_voting_sum_off">Кнопка голосования за сегмент скрыта</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Компактная кнопка пропуска</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Кнопка пропуска стилизована для минимальной ширины</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Кнопка пропуска стилизована для лучшего внешнего вида</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Автоскрытие кнопки пропуска</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Кнопка пропуска скрывается через несколько секунд</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Кнопка пропуска отображается для всего сегмента</string>
+ <string name="revanced_sb_general_skiptoast">Уведомление при автопропуске</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Всплывающее уведомление при автоматическом пропуске сегмента отображено. Нажмите для просмотра примера</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Всплывающее уведомление при автоматическом пропуске сегмента скрыто. Нажмите для просмотра примера</string>
+ <string name="revanced_sb_general_time_without">Продолжительность без сегментов</string>
+ <string name="revanced_sb_general_time_without_sum_on">Продолжительность видео за исключением всех сегментов отображена в скобках рядом с полной продолжительностью видео</string>
+ <string name="revanced_sb_general_time_without_sum_off">Полная продолжительность видео отображена</string>
+ <string name="revanced_sb_create_segment_category">Создание новых сегментов</string>
+ <string name="revanced_sb_enable_create_segment">Кнопка создания сегмента</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Кнопка создания нового сегмента отображена</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Кнопка создания нового сегмента скрыта</string>
+ <string name="revanced_sb_general_adjusting">Шаг нового сегмента</string>
+ <string name="revanced_sb_general_adjusting_sum">Количество миллисекунд, на которое перемещаются кнопки регулировки времени при создании новых сегментов</string>
+ <string name="revanced_sb_general_adjusting_invalid">Значение должно быть положительным числом</string>
+ <string name="revanced_sb_guidelines_preference_title">Просмотреть инструкцию</string>
+ <string name="revanced_sb_guidelines_preference_sum">Инструкция содержит правила и советы по созданию новых сегментов</string>
+ <string name="revanced_sb_guidelines_popup_title">Следуйте инструкциям</string>
+ <string name="revanced_sb_guidelines_popup_content">Перед созданием новых сегментов прочтите инструкции SponsorBlock</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Уже прочитано</string>
+ <string name="revanced_sb_guidelines_popup_open">Показать</string>
+ <string name="revanced_sb_general">Основные</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Уведомление при недоступности API</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Всплывающее уведомление при недоступности SponsorBlock отображено</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Всплывающее уведомление при недоступности SponsorBlock скрыто</string>
+ <string name="revanced_sb_general_skipcount">Подсчет количества пропусков</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Это позволяет системе лидеров SponsorBlock знать, сколько времени было сэкономлено. Сообщение отправляется на сервер каждый раз при пропуске сегмента</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Подсчет количества пропусков отключен</string>
+ <string name="revanced_sb_general_min_duration">Минимальная продолжительность сегмента</string>
+ <string name="revanced_sb_general_min_duration_sum">Сегменты короче данного значения (в секундах) не будут отображены или пропущены</string>
+ <string name="revanced_sb_general_uuid">Ваш идентификатор пользователя</string>
+ <string name="revanced_sb_general_uuid_sum">Уникальный идентификатор пользователя должен быть конфиденциальным. Он как пароль - не должен никому передаваться. Имеющий доступ к нему может выдать себя за Вас</string>
+ <string name="revanced_sb_general_uuid_invalid">Уникальный идентификатор пользователя должен быть не менее 30 символов</string>
+ <string name="revanced_sb_general_api_url">Изменить URL-адрес API</string>
+ <string name="revanced_sb_general_api_url_sum">Адрес, используемый SponsorBlock для вызовов на сервер</string>
+ <string name="revanced_sb_api_url_reset">URL-адрес API сброшен</string>
+ <string name="revanced_sb_api_url_invalid">URL-адрес API недействителен</string>
+ <string name="revanced_sb_api_url_changed">URL-адрес API изменен</string>
+ <string name="revanced_sb_settings_ie">Импорт и экспорт настроек</string>
+ <string name="revanced_sb_settings_copy">Копировать</string>
+ <string name="revanced_sb_settings_ie_sum">Ваша JSON конфигурация SponsorBlock, которая может быть импортирована или экспортирована в ReVanced и другие платформы SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Ваша конфигурация JSON SponsorBlock может быть импортирована или экспортирована в ReVanced и другие платформы SponsorBlock. Она включает в себя Ваш личный идентификатор пользователя. Подумайте дважды перед тем, как делиться ею с кем-либо</string>
+ <string name="revanced_sb_settings_import_successful">Настройки успешно импортированы</string>
+ <string name="revanced_sb_settings_import_failed">Не удалось импортировать: %s</string>
+ <string name="revanced_sb_settings_export_failed">Не удалось экспортировать: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ваши настройки SponsorBlock содержат уникальный идентификатор пользователя.\n\nВаш идентификатор пользователя как пароль, им не стоит ни с кем делиться\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Не показывать снова</string>
+ <string name="revanced_sb_diff_segments">Изменить поведение сегмента</string>
+ <string name="revanced_sb_segments_sponsor">Спонсорская реклама</string>
+ <string name="revanced_sb_segments_sponsor_sum">Рекламные интеграции, реферальные ссылки и прямая реклама. Не для саморекламы или рекомендаций различных событий/создателей/сайтов/продуктов, которые нравятся автору видео</string>
+ <string name="revanced_sb_segments_selfpromo">Бесплатная реклама / Самореклама</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Подобно \"Спонсорской рекламе\", за исключением неоплачиваемой рекламы или саморекламы. Включает разделы о товарах, пожертвованиях или информации о том, с кем сотрудничал автор</string>
+ <string name="revanced_sb_segments_interaction">Напоминание о взаимодействии (подписка)</string>
+ <string name="revanced_sb_segments_interaction_sum">Короткое напоминание поставить лайк, подписаться на канал или соцсети посреди видеоролика. Если эта вставка длительная или о чем-то конкретном, она должна классифицироваться как самореклама</string>
+ <string name="revanced_sb_segments_highlight">Основной момент</string>
+ <string name="revanced_sb_segments_highlight_sum">Часть видео, которая интересна большинству людей</string>
+ <string name="revanced_sb_segments_intro">Пауза / Интро</string>
+ <string name="revanced_sb_segments_intro_sum">Интервал без фактического содержания. Может быть паузой, статическим кадром или повторяющейся анимацией. Не включает переходы, содержащие информацию</string>
+ <string name="revanced_sb_segments_outro">Конечные заставки / Титры</string>
+ <string name="revanced_sb_segments_outro_sum">Титры или время появления конечных заставок YouTube. Не для выводов с информацией</string>
+ <string name="revanced_sb_segments_preview">Предпросмотр / Краткое содержание / Завязка</string>
+ <string name="revanced_sb_segments_preview_sum">Демонстрация моментов, которые показывают, что происходит или что произошло в данном видео или в других видео серии, где вся информация повторяется в другом месте</string>
+ <string name="revanced_sb_segments_filler">Отвлеченные темы / Шутки</string>
+ <string name="revanced_sb_segments_filler_sum">Сегменты, которые увеличивают длительность видео за счет отвлеченных тем или шуток, но не требуются для понимания основного содержания. Не включает сегменты, объясняющие контекст или предысторию</string>
+ <string name="revanced_sb_segments_nomusic">Музыка: сегмент без музыки</string>
+ <string name="revanced_sb_segments_nomusic_sum">Только для использования в музыкальных видеороликах. Разделы музыкальных видео без музыки, которые еще не охвачены другой категорией</string>
+ <string name="revanced_sb_skip_button_compact">Пропустить</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Основной момент</string>
+ <string name="revanced_sb_skip_button_sponsor">Пропустить спонсорскую рекламу</string>
+ <string name="revanced_sb_skip_button_selfpromo">Пропустить промо</string>
+ <string name="revanced_sb_skip_button_interaction">Пропустить взаимодействие</string>
+ <string name="revanced_sb_skip_button_highlight">Пропустить к основному моменту</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Пропустить интро</string>
+ <string name="revanced_sb_skip_button_intro_middle">Пропустить паузу</string>
+ <string name="revanced_sb_skip_button_intro_end">Пропустить паузу</string>
+ <string name="revanced_sb_skip_button_outro">Пропустить концовку</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Пропустить предпросмотр</string>
+ <string name="revanced_sb_skip_button_preview_middle">Пропустить предпросмотр</string>
+ <string name="revanced_sb_skip_button_preview_end">Пропустить краткое изложение</string>
+ <string name="revanced_sb_skip_button_filler">Пропустить вставку</string>
+ <string name="revanced_sb_skip_button_nomusic">Пропустить сегмент без музыки</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Пропустить сегмент</string>
+ <string name="revanced_sb_skipped_sponsor">Пропущена спонсорская реклама</string>
+ <string name="revanced_sb_skipped_selfpromo">Пропущена самореклама</string>
+ <string name="revanced_sb_skipped_interaction">Пропущено назойливое напоминание</string>
+ <string name="revanced_sb_skipped_highlight">Пропущено к основному моменту</string>
+ <string name="revanced_sb_skipped_intro_beginning">Пропущено интро</string>
+ <string name="revanced_sb_skipped_intro_middle">Пропущена пауза</string>
+ <string name="revanced_sb_skipped_intro_end">Пропущена пауза</string>
+ <string name="revanced_sb_skipped_outro">Пропущена концовка</string>
+ <string name="revanced_sb_skipped_preview_beginning">Пропущен предпросмотр</string>
+ <string name="revanced_sb_skipped_preview_middle">Пропущен предпросмотр</string>
+ <string name="revanced_sb_skipped_preview_end">Пропущено краткое изложение</string>
+ <string name="revanced_sb_skipped_filler">Пропущена вставка</string>
+ <string name="revanced_sb_skipped_nomusic">Пропущен сегмент без музыки</string>
+ <string name="revanced_sb_skipped_unsubmitted">Пропущен неподтвержденный сегмент</string>
+ <string name="revanced_sb_skipped_multiple_segments">Пропущено несколько сегментов</string>
+ <string name="revanced_sb_skip_automatically">Пропускать автоматически</string>
+ <string name="revanced_sb_skip_automatically_once">Пропускать автоматически один раз</string>
+ <string name="revanced_sb_skip_showbutton">Кнопка пропуска</string>
+ <string name="revanced_sb_skip_seekbaronly">Отображать в прогрессе воспроизведения</string>
+ <string name="revanced_sb_skip_ignore">Отключить</string>
+ <string name="revanced_sb_submit_failed_invalid">Не удалось отправить сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock временно не работает</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Не удалось отправить сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Невозможно отправить сегмент.\nЧастота ограничена (слишком много от одного пользователя или IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Невозможно отправить сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Невозможно отправить сегмент.\nУже существует</string>
+ <string name="revanced_sb_submit_succeeded">Сегмент успешно отправлен</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock временно недоступен (время API истекло)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock временно недоступен (статус %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock временно недоступен</string>
+ <string name="revanced_sb_vote_failed_timeout">Невозможно проголосовать за сегмент (время API истекло)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Невозможно проголосовать за сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Невозможно проголосовать за сегмент: %s</string>
+ <string name="revanced_sb_vote_upvote">Проголосовать за</string>
+ <string name="revanced_sb_vote_downvote">Проголосовать против</string>
+ <string name="revanced_sb_vote_category">Изменить категорию</string>
+ <string name="revanced_sb_vote_no_segments">Нет сегментов для голосования</string>
+ <string name="revanced_sb_new_segment_choose_category">Выбрать категорию сегмента</string>
+ <string name="revanced_sb_new_segment_disabled_category">Категория отключена в настройках. Включите категорию для отправки.</string>
+ <string name="revanced_sb_new_segment_title">Новый сегмент SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Установить %1$02d:%2$02d:%3$03d как начало или конец нового сегмента?</string>
+ <string name="revanced_sb_new_segment_mark_start">начало</string>
+ <string name="revanced_sb_new_segment_mark_end">конец</string>
+ <string name="revanced_sb_new_segment_now">сейчас</string>
+ <string name="revanced_sb_new_segment_time_start">Время начала сегмента</string>
+ <string name="revanced_sb_new_segment_time_end">Время окончания сегмента</string>
+ <string name="revanced_sb_new_segment_confirm_title">Верно ли выбрано время?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Сегмент от\n\n%1$s\nдо\n%2$s\n\n(%3$s)\n\nГотов к отправке?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Начало должно быть перед окончанием</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Сначала отметьте два места на шкале времени</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Предварительный просмотр сегмента для обеспечения плавного пропуска</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Изменить время сегмента вручную</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Вы хотите изменить время начала или окончания сегмента?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Указано неверное время</string>
+ <string name="revanced_sb_stats">Статистика</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Статистика временно недоступна (API отключен)</string>
+ <string name="revanced_sb_stats_loading">Загрузка...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock отключен</string>
+ <string name="revanced_sb_stats_username">Ваше имя пользователя: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Нажмите для изменения Вашего имени пользователя</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Невозможно изменить имя пользователя: Статус: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Имя пользователя успешно изменено</string>
+ <string name="revanced_sb_stats_reputation">Ваша репутация - <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Вы создали <b>%s</b> сегментов</string>
+ <string name="revanced_sb_stats_saved_zero">Таблица лидеров SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Вы избавили людей от <b>%s</b> сегментов</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Нажмите для просмотра глобальной статистики и лучших участников</string>
+ <string name="revanced_sb_stats_saved_sum">Это <b>%s</b> их жизни.<br>Нажмите для просмотра таблицы лидеров</string>
+ <string name="revanced_sb_stats_self_saved">Вы пропустили <b>%s</b> сегментов</string>
+ <string name="revanced_sb_stats_self_saved_sum">Это <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Сбросить счетчик пропущенных сегментов?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s часов %2$s минут</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s минут(ы) %2$s секунд(ы)</string>
+ <string name="revanced_sb_stats_saved_second_format">%s секунд</string>
+ <string name="revanced_sb_color_dot_label">Цвет:</string>
+ <string name="revanced_sb_color_changed">Цвет изменен</string>
+ <string name="revanced_sb_color_reset">Цвет сброшен</string>
+ <string name="revanced_sb_color_invalid">Неверный код цвета</string>
+ <string name="revanced_sb_reset_color">Сбросить цвет</string>
+ <string name="revanced_sb_reset">Сброс</string>
+ <string name="revanced_sb_about">Информация</string>
+ <string name="revanced_sb_about_api_sum">Данные предоставлены SponsorBlock API. Нажмите для получения дополнительной информации и просмотра загрузок для других платформ</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Подмена версии приложения</string>
+ <string name="revanced_spoof_app_version_summary_on">Версия приложения подменена</string>
+ <string name="revanced_spoof_app_version_summary_off">Версия приложения не подменена</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Версия приложения будет подменена на более раннюю версию YouTube.\n\nЭто изменит вид и функции приложения, но могут случиться неизвестные побочные эффекты.\n\nЕсли позже данный параметр будет отключен, рекомендуется очистить данные приложения для предотвращения проблем с пользовательским интерфейсом.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Подмена версии приложения на</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Восстановление Return Youtube Dislike в режиме инкогнито Shorts</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Восстановление расширенного меню скорости и качества видео</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Восстановление вкладки \"Библиотека\"</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Восстановление старой секции плейлистов</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Восстановление старого стиля пользовательского интерфейса</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Начальная страница</string>
+ <string name="revanced_start_page_entry_0">По умолчанию</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Главная</string>
+ <string name="revanced_start_page_entry_2">Поиск</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Подписки</string>
+ <string name="revanced_start_page_entry_4">Навигатор</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Вкладка \"Вы\"</string>
+ <string name="revanced_start_page_entry_7">Понравившиеся видео</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">История</string>
+ <string name="revanced_start_page_entry_9">Популярные</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Возобновление плеера Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Возобновление плеера Shorts при запуске приложения отключено</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Возобновление плеера Shorts при запуске приложения включено</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Планшетный интерфейс</string>
+ <string name="revanced_tablet_layout_summary_on">Планшетный интерфейс включен</string>
+ <string name="revanced_tablet_layout_summary_off">Планшетный интерфейс отключен</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Публикации сообщества не отображаются в планшетном интерфейсе</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Мини-плеер</string>
+ <string name="revanced_miniplayer_screen_summary">Стиль свернутого мини-плеера </string>
+ <string name="revanced_miniplayer_type_title">Тип мини-плеера</string>
+ <string name="revanced_miniplayer_type_entry_1">Оригинал</string>
+ <string name="revanced_miniplayer_type_entry_2">Телефон</string>
+ <string name="revanced_miniplayer_type_entry_3">Планшет</string>
+ <string name="revanced_miniplayer_type_entry_4">Современный 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Современный 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Современный 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Кнопки \"Развернуть\" и \"Закрыть\"</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Кнопки \"Развернуть\" и \"Закрыть\" скрыты\n(разворачивание или сворачивание мини-плеера выполняются жестом)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Кнопки \"Развернуть\" и \"Закрыть\" отображены</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Скрыть подтексты</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Субтексты скрыты</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Подтексты показаны</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Кнопки перемотки</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Кнопки перемотки вперед и назад скрыты</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Кнопки перемотки вперед и назад отображены</string>
+ <string name="revanced_miniplayer_opacity_title">Непразрачность оверлея мини-плеера</string>
+ <string name="revanced_miniplayer_opacity_summary">Значение непрозрачности в пределах 0-100, где 0 - это прозрачно</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Непрозрачность оверлея мини-плеера должна быть от 0 до 100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Фон экрана загрузки</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Экран загрузки имеет градиентный фон</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Экран загрузки имеет сплошной фон</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Цвет прогресса воспроизведения</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Пользовательский цвет прогресса воспроизведения отображен</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Оригинальный цвет прогресса воспроизведения отображен</string>
+ <string name="revanced_seekbar_custom_color_value_title">Пользовательский цвет</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Редактировать цвет прогресса воспроизведения</string>
+ <string name="revanced_seekbar_custom_color_invalid">Недопустимое значение цвета</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Вкладка \"Главная\"</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Вкладка \"Подписки\"</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Вкладка \"Вы\"</string>
+ <string name="revanced_alt_thumbnail_player_title">Плейлисты плеера, рекомендации</string>
+ <string name="revanced_alt_thumbnail_search_title">Результаты поиска</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Оригинальные миниатюры</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow и оригинальные миниатюры</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow и захват кадра</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Захват кадра</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow предоставляет краудсорсинговые миниатюры для видео YouTube. Эти миниатюры часто более актуальны относительно предоставляемых YouTube\n\nПри активации URL-адреса видео будут отправлены на сервер API, при этом никакие другие данные отправлены не будут. Если видео не содержит миниатюр DeArrow, то будут отображены оригинальные миниатюры или миниатюры захвата кадра\n\nНажмите для получения дополнительной информации о DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Уведомление при недоступности API</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Всплывающее уведомление при недоступности DeArrow отображено</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Всплывающее уведомление при недоступности DeArrow скрыто</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Конечная точка DeArrow API</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL-адрес конечной точки кэша миниатюр DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Захват кадра из видео</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Кадры взяты из начала/середины/конца каждого видео. Эти изображения уже есть в YouTube и внешний API не используется</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Быстрый захват кадра</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Используется среднее качество кадра. Миниатюры будут грузиться быстрее, но возможна их потеря у трансляций, премьер или очень старых видео</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Используется высокое качество кадра</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Время видео для взятия кадра</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Начало видео</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Середина видео</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Конец видео</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow временно недоступен (код статуса: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow временно недоступен</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Объявления ReVanced</string>
+ <string name="revanced_announcements_summary_on">Объявления ReVanced при запуске приложения отображены</string>
+ <string name="revanced_announcements_summary_off">Объявления ReVanced при запуске приложения скрыты</string>
+ <string name="revanced_announcements_enabled_summary">Отображать объявления ReVanced при запуске приложения</string>
+ <string name="revanced_announcements_connection_failed">Не удалось подключиться к поставщику объявлений</string>
+ <string name="revanced_announcements_dialog_dismiss">Закрыть</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Автоповтор текущего видео</string>
+ <string name="revanced_auto_repeat_summary_on">Автоповтор текущего видео включен</string>
+ <string name="revanced_auto_repeat_summary_off">Автоповтор текущего видео отключен</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Подмена размеров устройства</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Размеры устройства подменены\n\nБолее высокие качества видео могут быть разблокированы, однако при этом возможны заикания видео при воспроизведении, высокое потребление батареи и неизвестные побочные эффекты</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Размеры устройства не подменены\n\nАктивация данной опции может разблокировать более высокие качества видео</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Активация данной опции может привести к заиканиям видео при воспроизведении, высокому потреблению батареи и неизвестным побочным эффектам.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore</string>
+ <string name="microg_settings_summary">Настройки GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Обход перенаправления URL-адресов</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Обход перенаправления URL-адресов (youtube.com/redirect) при открытии ссылок в описаниях видео включен</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Обход перенаправления URL-адресов (youtube.com/redirect) при открытии ссылок в описаниях видео отключен</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Открытие ссылок в браузере</string>
+ <string name="revanced_external_browser_summary_on">Ссылки открываются в браузере</string>
+ <string name="revanced_external_browser_summary_off">Ссылки открываются в самом приложении</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Фоновое воспроизведение</string>
+ <string name="revanced_background_playback_summary">Этот параметр можно найти в настройках фонового и оффлайн режима</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Параметр отслеживания запросов</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Параметр отслеживания запросов из ссылок удален</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Параметр отслеживания запросов из ссылок не удален</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Виброотклик при масштабировании</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Виброотклик при масштабировании отключен</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Виброотклик при масштабировании включен</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Автоматическое качество</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Запоминание изменений качества</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Изменения качества воспроизведения применяются ко всем видео</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Изменения качества воспроизведения применяются только к текущему видео</string>
+ <string name="revanced_video_quality_default_wifi_title">Качество видео для Wi-Fi сети</string>
+ <string name="revanced_video_quality_default_mobile_title">Качество видео для мобильной сети</string>
+ <string name="revanced_remember_video_quality_mobile">мобильной сети</string>
+ <string name="revanced_remember_video_quality_wifi">wifi сети</string>
+ <string name="revanced_remember_video_quality_toast">Качество в %1$s изменено на: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Кнопка выбора скорости</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Кнопка выбора скорости отображена</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Кнопка выбора скорости скрыта</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Скорости воспроизведения</string>
+ <string name="revanced_custom_playback_speeds_summary">Добавить или изменить доступные скорости воспроизведения</string>
+ <string name="revanced_custom_playback_speeds_invalid">Пользовательские скорости должны быть меньше, чем %s. Использование значений по умолчанию.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Недопустимая пользовательская скорость воспроизведения. Использование значений по умолчанию.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Запоминание изменений скорости</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Изменения скорости воспроизведения применяются ко всем видео</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Изменения скорости воспроизведения применяются только к текущему видео</string>
+ <string name="revanced_playback_speed_default_title">Скорость воспроизведения по умолчанию</string>
+ <string name="revanced_remember_playback_speed_toast">Скорость изменена на: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Старое меню качества видео</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Старое меню качества видео отображено</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Старое меню качества видео скрыто</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Перемотка видео слайдом</string>
+ <string name="revanced_slide_to_seek_summary_on">Перемотка видео слайдом включена</string>
+ <string name="revanced_slide_to_seek_summary_off">Перемотка видео слайдом отключена. Ускорение видео \"2x\" при нажатии и удержании на экране включено</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Подмена клиента</string>
+ <string name="revanced_spoof_client_screen_summary">Подмена клиента для предотвращения проблем с воспроизведением видео</string>
+ <string name="revanced_spoof_client_title">Подмена клиента</string>
+ <string name="revanced_spoof_client_summary_on">Клиент подменен</string>
+ <string name="revanced_spoof_client_summary_off">Клиент не подменен\n\nВоспроизведение видео может не работать</string>
+ <string name="revanced_spoof_client_user_dialog_message">Отключение этой настройки может вызвать проблемы с воспроизведением видео.</string>
+ <string name="revanced_spoof_client_use_ios_title">Подмена клиента на iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">В настоящее время клиент подменен на iOS\n\nПобочные эффекты включают:\n• Отсутствует HDR видео\n• История просмотров может не работать\n• Более высокие качества видео могут отсутствовать\n• Прямые трансляции не могут воспроизводиться только как аудио\n• Прямые трансляции недоступны на Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">В настоящее время клиент подменен на Android VR\n\nПобочные эффекты включают:\n• Отсутствует HDR видео\n• Детские видео не воспроизводятся\n• Приостановленные видео могут случайно возобновляться\n• Миниатюры прогресса воспроизведения Shorts низкого качества\n• Кнопка \"Скачать\" всегда скрыта\n• Заставки следующих видео в конце просмотра всегда скрыты</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Миниатюры в режиме подмены клиента недоступны (время API истекло)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Миниатюры в режиме подмены клиента временно недоступны: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Подпись приложения</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Сводка подписи приложения для предотвращения проблем с воспроизведением</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Подпись приложения</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Подпись приложения подделена\n\nэффектами бока:\n• Расширенный битрейт не доступен\n• Видео не могут быть загружены\n• Нет миниатюр в панели поиска для платных видео</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Подпись приложения не подделана\n\nвоспроизведение видео может не работать</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Отключение этой настройки вызовет проблемы с воспроизведением видео.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Подпись приложения в ленте новостей</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Подпись приложения подменена\n\nПобочные эффекты включают:\n• В видео в ленте отсутствуют субтитры\n• Автоматически воспроизведенные видео с ленты будут появляться в Вашей истории просмотра</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Подпись приложения не подделана для лент новостей\n\nвидео будет воспроизводиться менее чем за 1 минуту до возникновения проблем с воспроизведением</string>
+ <string name="revanced_spoof_storyboard_title">Презентация истории</string>
+ <string name="revanced_spoof_storyboard_summary_on">Доска историй подделена</string>
+ <string name="revanced_spoof_storyboard_summary_off">Панель историй не подделена\n\nэффектами бока:\n• Эмбиентный режим\n• Эскизы в панели поиска скрыты</string>
+ <string name="revanced_spoof_storyboard_timeout">Сбор историй временно недоступен (время API истекло)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Сводка историй временно недоступна: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Включить авто-яркость HDR</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Авто яркость HDR включена</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Автоматическая яркость HDR отключена</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Аудиореклама</string>
+ <string name="revanced_block_audio_ads_summary_on">Аудиореклама заблокирована</string>
+ <string name="revanced_block_audio_ads_summary_off">Аудиореклама разблокирована</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s недоступен. Реклама может отображаться. Попробуйте переключиться на другую службу блокировки рекламы в настройках.</string>
+ <string name="revanced_embedded_ads_service_failed">%s сервер вернул ошибку. Реклама может отображаться. Попробуйте переключиться на другую службу блокировки рекламы в настройках.</string>
+ <string name="revanced_block_embedded_ads_title">Встроенная реклама в видео</string>
+ <string name="revanced_block_embedded_ads_entry_1">Отключено</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous прокси</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock прокси</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Реклама в видео</string>
+ <string name="revanced_block_video_ads_summary_on">Реклама в видео заблокирована</string>
+ <string name="revanced_block_video_ads_summary_off">Реклама в видео разблокирована</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">сообщение удалено</string>
+ <string name="revanced_show_deleted_messages_title">Удаленные сообщения</string>
+ <string name="revanced_show_deleted_messages_entry_1">Не отображать удаленные сообщения</string>
+ <string name="revanced_show_deleted_messages_entry_2">Скрыть удаленные сообщения за спойлером</string>
+ <string name="revanced_show_deleted_messages_entry_3">Отображать удаленные сообщения как перекрестный текст</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Автополучение Баллов канала</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Баллы канала получаются автоматически</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Баллы канала не получаются автоматически</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Режим отладки Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Режим отладки Twitch включен (не рекомендуется)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Режим отладки Twitch отключен</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Настройки ReVanced</string>
+ <string name="revanced_ads_screen_title">Реклама</string>
+ <string name="revanced_ads_screen_summary">Настройки блокировки рекламы</string>
+ <string name="revanced_chat_screen_title">Чат</string>
+ <string name="revanced_chat_screen_summary">Настройки чата</string>
+ <string name="revanced_misc_screen_title">Прочие</string>
+ <string name="revanced_misc_screen_summary">Прочие настройки</string>
+ <string name="revanced_general_category_title">Основные настройки</string>
+ <string name="revanced_other_category_title">Другие настройки</string>
+ <string name="revanced_client_ads_category_title">Клиентская реклама</string>
+ <string name="revanced_surestream_ads_category_title">Серверная реклама</string>
+ <string name="revanced_twitch_debug_title">Журналы отладки</string>
+ <string name="revanced_twitch_debug_summary_on">Журналы отладки включены</string>
+ <string name="revanced_twitch_debug_summary_off">Журналы отладки отключены</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-si-rLK/strings.xml b/src/main/resources/addresources/values-si-rLK/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-si-rLK/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sk-rSK/strings.xml b/src/main/resources/addresources/values-sk-rSK/strings.xml
new file mode 100644
index 0000000000..e0c145580f
--- /dev/null
+++ b/src/main/resources/addresources/values-sk-rSK/strings.xml
@@ -0,0 +1,331 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Resetovať</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Informácie</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Ovládanie potiahnutím</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">Tlačidlo zdieľania obrazovky je skryté</string>
+ <string name="revanced_hide_cast_button_summary_off">Tlačidlo zdieľania obrazovky je zobrazené</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_summary_on">Tlačidlo shorts je skryté</string>
+ <string name="revanced_hide_shorts_button_summary_off">Tlačidlo shorts je zobrazené</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">Informačné karty sú skryté</string>
+ <string name="revanced_hide_info_cards_summary_off">Informačné karty sú zobrazené</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Skryté</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Informácie</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Zapnúť SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">Vzhľad</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">Zobraziť pokyny</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Už prečítané</string>
+ <string name="revanced_sb_guidelines_popup_open">Zobraziť</string>
+ <string name="revanced_sb_general">Všeobecné</string>
+ <string name="revanced_sb_general_min_duration">Minimálna dĺžka segmentu</string>
+ <string name="revanced_sb_general_uuid_sum">Toto by ste mali držať v súkromí. Je to ako heslo a nemali by ste ho s nikým zdieľať. Pokiaľ ho niekto má, môže sa za vás vydávať</string>
+ <string name="revanced_sb_general_api_url">Zmeniť adresu URL API</string>
+ <string name="revanced_sb_api_url_reset">Adresa URL API bola resetovaná</string>
+ <string name="revanced_sb_api_url_changed">Adresa URL API bola zmenená</string>
+ <string name="revanced_sb_settings_ie">Importovať/Exportovať nastavenia</string>
+ <string name="revanced_sb_segments_sponsor">Sponzor</string>
+ <string name="revanced_sb_segments_selfpromo">Neplatená/Vlastná propagácia</string>
+ <string name="revanced_sb_segments_interaction">Pripomienka interakcie (Odoberať)</string>
+ <string name="revanced_sb_segments_intro">Prerušenie/Úvodná animácia</string>
+ <string name="revanced_sb_segments_outro">Záverečné karty/Kredity</string>
+ <string name="revanced_sb_segments_filler">Odbočka/Vtipy</string>
+ <string name="revanced_sb_segments_nomusic">Hudba: Nehudobná sekcia</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Preskočiť segment</string>
+ <string name="revanced_sb_skipped_sponsor">Preskočil sa sponzor</string>
+ <string name="revanced_sb_skipped_selfpromo">Preskočila sa vlastná propagácia</string>
+ <string name="revanced_sb_skipped_interaction">Preskočila sa pripomienka interakcie</string>
+ <string name="revanced_sb_skipped_intro_beginning">Preskočil sa úvod</string>
+ <string name="revanced_sb_skipped_outro">Preskočil sa záver</string>
+ <string name="revanced_sb_skipped_preview_beginning">Preskočila sa ukážka/rekapitulácia</string>
+ <string name="revanced_sb_skipped_preview_middle">Preskočila sa ukážka/rekapitulácia</string>
+ <string name="revanced_sb_skipped_filler">Preskočená odbočka</string>
+ <string name="revanced_sb_skipped_nomusic">Preskočená nehudobná sekcia</string>
+ <string name="revanced_sb_skipped_unsubmitted">Preskočený neodoslaný segment</string>
+ <string name="revanced_sb_skip_automatically">Automaticky preskočiť</string>
+ <string name="revanced_sb_skip_showbutton">Zobraziť tlačidlo preskočenia</string>
+ <string name="revanced_sb_skip_ignore">Vypnúť</string>
+ <string name="revanced_sb_submit_failed_duplicate">Segment nie je možné odoslať.\nUž existuje</string>
+ <string name="revanced_sb_submit_succeeded">Segment bol úspešne odoslaný</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">Hlasovať za</string>
+ <string name="revanced_sb_vote_downvote">Hlasovať proti</string>
+ <string name="revanced_sb_vote_category">Zmeniť kategóriu</string>
+ <string name="revanced_sb_vote_no_segments">Nie sú dostupné žiadne segmenty pre hlasovanie</string>
+ <string name="revanced_sb_new_segment_choose_category">Vyberte kategóriu segmentu</string>
+ <string name="revanced_sb_new_segment_title">Nový SponsorBlock segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Nastaviť %1$02d:%2$02d:%3$03d ako začiatok alebo koniec nového segmentu?</string>
+ <string name="revanced_sb_new_segment_mark_start">štart</string>
+ <string name="revanced_sb_new_segment_mark_end">koniec</string>
+ <string name="revanced_sb_new_segment_now">teraz</string>
+ <string name="revanced_sb_new_segment_time_start">Čas, kedy segment začína</string>
+ <string name="revanced_sb_new_segment_time_end">Čas, kedy segment končí</string>
+ <string name="revanced_sb_new_segment_confirm_title">Sú časy správne?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_locations_first">Najprv označte dve miesta na časovej lište</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Ručne upravte časovanie segmentu</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Chcete upraviť časovanie pre začiatok alebo koniec segmentu?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Zadaný neplatný čas</string>
+ <string name="revanced_sb_stats">Štatistiky</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Načítava sa...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock je zakázaný</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Nie je možné zmeniť používateľské meno: Stav: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Používateľské meno bolo úspešne zmenené</string>
+ <string name="revanced_sb_color_changed">Farba bola zmenená</string>
+ <string name="revanced_sb_color_reset">Farba bola resetovaná</string>
+ <string name="revanced_sb_reset">Resetovať</string>
+ <string name="revanced_sb_about">Informácie</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Predvolené</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Vypnuté</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sl-rSI/strings.xml b/src/main/resources/addresources/values-sl-rSI/strings.xml
new file mode 100644
index 0000000000..f73604fda7
--- /dev/null
+++ b/src/main/resources/addresources/values-sl-rSI/strings.xml
@@ -0,0 +1,272 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Ali želite nadaljevati?</string>
+ <string name="revanced_settings_reset">Ponastavi</string>
+ <string name="revanced_settings_restart_title">Osvežitev in ponovni zagon</string>
+ <string name="revanced_settings_restart">Ponovni zagon</string>
+ <string name="revanced_settings_import">Uvoz</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">O programu</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Razhroščevanje</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">O programu</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Izgled</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Nalaganje...</string>
+ <string name="revanced_sb_reset">Ponastavi</string>
+ <string name="revanced_sb_about">O programu</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Privzeto</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Opusti</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">Onemogočeno</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sq-rAL/strings.xml b/src/main/resources/addresources/values-sq-rAL/strings.xml
new file mode 100644
index 0000000000..28a105491d
--- /dev/null
+++ b/src/main/resources/addresources/values-sq-rAL/strings.xml
@@ -0,0 +1,267 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Rivendos</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Rreth nesh</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Rreth nesh</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">Pamja</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Po ngarkohet...</string>
+ <string name="revanced_sb_reset">Rivendos</string>
+ <string name="revanced_sb_about">Rreth nesh</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">Default</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Largoje</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">E ç\'aktivizuar</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sr-rSP/strings.xml b/src/main/resources/addresources/values-sr-rSP/strings.xml
new file mode 100644
index 0000000000..1f3a495ffa
--- /dev/null
+++ b/src/main/resources/addresources/values-sr-rSP/strings.xml
@@ -0,0 +1,1185 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Желите ли да наставите?</string>
+ <string name="revanced_settings_reset">Ресетуј</string>
+ <string name="revanced_settings_restart_title">Освежи и рестартуј</string>
+ <string name="revanced_settings_restart">Рестартуј</string>
+ <string name="revanced_settings_import">Увоз</string>
+ <string name="revanced_settings_import_copy">Копирај</string>
+ <string name="revanced_settings_import_reset">Подешавања ReVanced-а су враћена на подразумеване вредности</string>
+ <string name="revanced_settings_import_success">Увезено %d подешавања</string>
+ <string name="revanced_settings_import_failure_parse">Неуспешан увоз: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore није инсталиран. Инсталирајте га.</string>
+ <string name="gms_core_dialog_title">Неопходна радња</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore нема дозволу за рад у позадини.\n\nПратите упутство „Don\'t kill my app” за свој телефон и примените упутства на своју MicroG инсталацију.\n\nОво је неопходно да би апликација радила.</string>
+ <string name="gms_core_dialog_open_website_text">Отвори веб-сајт</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Оптимизација батерије за MicroG GmsCore мора бити онемогућена да би се спречили проблеми.\n\nДодирните дугме „Настави” и онемогућите оптимизацију батерије.</string>
+ <string name="gms_core_dialog_continue_text">Настави</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Користите верзију <i>%s</i> ReVanced печева</string>
+ <string name="revanced_settings_about_links_dev_header">Напомена</string>
+ <string name="revanced_settings_about_links_dev_body">Ова верзија је предиздање и можда ћете имати неочекиване проблеме</string>
+ <string name="revanced_settings_about_links_header">Званични линкови</string>
+ <string name="revanced_pref_import_export_title">Увоз / Извоз</string>
+ <string name="revanced_pref_import_export_summary">Увоз / Извоз подешавања ReVanced-а</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">О програму</string>
+ <string name="revanced_settings_screen_01_ads_title">Огласи</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Алтернативне сличице</string>
+ <string name="revanced_settings_screen_03_feed_title">Фид</string>
+ <string name="revanced_settings_screen_04_player_title">Плејер</string>
+ <string name="revanced_settings_screen_05_general_title">Општи изглед</string>
+ <string name="revanced_settings_screen_06_shorts_title">Shorts</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Трака за премотавање</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Контроле превлачења</string>
+ <string name="revanced_settings_screen_11_misc_title">Разно</string>
+ <string name="revanced_settings_screen_12_video_title">Видео</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Отклањање грешака</string>
+ <string name="revanced_debug_screen_summary">Омогућите или онемогућите опције за отклањање грешака</string>
+ <string name="revanced_debug_title">Евидентирање отклањања грешака</string>
+ <string name="revanced_debug_summary_on">Евиденције отклањања грешака су омогућене</string>
+ <string name="revanced_debug_summary_off">Евиденције отклањања грешака су онемогућене</string>
+ <string name="revanced_debug_protobuffer_title">Евидентирање бафера протокола</string>
+ <string name="revanced_debug_protobuffer_summary_on">Евиденције отклањања грешака садрже бафер протокола</string>
+ <string name="revanced_debug_protobuffer_summary_off">Евиденције отклањања грешака не садрже бафер протокола</string>
+ <string name="revanced_debug_stacktrace_title">Евидентирање праћења стека</string>
+ <string name="revanced_debug_stacktrace_summary_on">Евиденције отклањања грешака садрже праћење стека</string>
+ <string name="revanced_debug_stacktrace_summary_off">Евиденције отклањања грешака не садрже праћење стека</string>
+ <string name="revanced_debug_toast_on_error_title">Прикажи искачуће обавештење при грешци с ReVanced-ом</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Искачуће обавештење се приказује ако дође до грешке</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Искачуће обавештење се не приказује ако дође до грешке</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Искључивање искачућих обавештења о грешци сакрива сва обавештења о грешкама у ReVanced-у.\n\nНећете бити обавештени ни о каквим неочекиваним догађајима.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Онемогући сјај дугмади „Свиђа ми се” / „Запрати”</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Дугмад „Свиђа ми се” и „Запрати” неће светлети када се притисну</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Дугмад „Свиђа ми се” и „Запрати” ће светлети када се притисну</string>
+ <string name="revanced_hide_gray_separator_title">Сакриј сиви сепаратор</string>
+ <string name="revanced_hide_gray_separator_summary_on">Сиви сепаратори су скривени</string>
+ <string name="revanced_hide_gray_separator_summary_off">Сиви сепаратори су приказани</string>
+ <string name="revanced_hide_channel_watermark_title">Сакриј водени жиг канала</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Водени жиг је скривен</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Водени жиг је приказан</string>
+ <string name="revanced_hide_horizontal_shelves_title">Сакриј хоризонталне полице</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Полице су скривене, као што су:\n• Важне вести\n• Наставите да гледате\n• Истражите још канала\n• Куповина\n• Гледајте поново</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Полице су приказане</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Сакриј дугме „Учлани ме“</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Дугме је скривено</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Дугме је приказано</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Сакриј полицу „За вас” на страници канала</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Полица је скривена</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Полица је приказана</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Сакриј дугме „Обавести ме”</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Дугме је скривено</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Дугме је приказано</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Сакриј препоруке „Други су такође гледали”</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Препоруке су скривене</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Препоруке су приказане</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Сакриј дугме „Прикажи још”</string>
+ <string name="revanced_hide_show_more_button_summary_on">Дугме је скривено</string>
+ <string name="revanced_hide_show_more_button_summary_off">Дугме је приказано</string>
+ <string name="revanced_hide_timed_reactions_title">Сакриј временске реакције</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Временске реакције су скривене</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Временске реакције су приказане</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Сакриј заглавље полице при резултатима претраге</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Заглавље полице је скривено</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Заглавље полице је приказано</string>
+ <string name="revanced_hide_channel_guidelines_title">Сакриј смернице канала</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Смернице канала су скривене</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Смернице канала су приказане</string>
+ <string name="revanced_hide_expandable_chip_title">Сакриј прошириви део испод видеа</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Прошириви делови су скривени</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Прошириви делови су приказани</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Сакриј подножје менија квалитета видеа</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Подножје менија квалитета видеа је скривено</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Подножје менија квалитета видеа је приказано</string>
+ <string name="revanced_hide_community_posts_title">Сакриј објаве заједнице</string>
+ <string name="revanced_hide_community_posts_summary_on">Објаве заједнице су скривене</string>
+ <string name="revanced_hide_community_posts_summary_off">Објаве заједнице су приказане</string>
+ <string name="revanced_hide_compact_banner_title">Сакриј компактне банере</string>
+ <string name="revanced_hide_compact_banner_summary_on">Компактни банери су скривени</string>
+ <string name="revanced_hide_compact_banner_summary_off">Компактни банери су приказани</string>
+ <string name="revanced_hide_movies_section_title">Сакриј одељак за филмове</string>
+ <string name="revanced_hide_movies_section_summary_on">Одељак за филмове је скривен</string>
+ <string name="revanced_hide_movies_section_summary_off">Одељак за филмове је приказан</string>
+ <string name="revanced_hide_feed_survey_title">Сакриј анкете у фиду</string>
+ <string name="revanced_hide_feed_survey_summary_on">Анкете у фиду су скривене</string>
+ <string name="revanced_hide_feed_survey_summary_off">Анкете у фиду су приказане</string>
+ <string name="revanced_hide_community_guidelines_title">Сакриј смернице заједнице</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Смернице заједнице су скривене</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Смернице заједнице су приказане</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Сакриј смернице заједнице пратилаца</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Смернице заједнице пратилаца су скривене</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Смернице заједнице пратилаца су приказане</string>
+ <string name="revanced_hide_channel_member_shelf_title">Сакриј полицу чланова канала</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Полица чланова канала је скривена</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Полица чланова канала је приказана</string>
+ <string name="revanced_hide_emergency_box_title">Сакриј кутије за хитне случајеве</string>
+ <string name="revanced_hide_emergency_box_summary_on">Кутије за хитне случајеве су скривене</string>
+ <string name="revanced_hide_emergency_box_summary_off">Кутије за хитне случајеве су приказане</string>
+ <string name="revanced_hide_info_panels_title">Сакриј инфо панеле</string>
+ <string name="revanced_hide_info_panels_summary_on">Инфо панели су скривени</string>
+ <string name="revanced_hide_info_panels_summary_off">Инфо панели су приказани</string>
+ <string name="revanced_hide_medical_panels_title">Сакриј медицинске панеле</string>
+ <string name="revanced_hide_medical_panels_summary_on">Медицински панели су скривени</string>
+ <string name="revanced_hide_medical_panels_summary_off">Медицински панели су приказани</string>
+ <string name="revanced_hide_channel_bar_title">Сакриј траку канала</string>
+ <string name="revanced_hide_channel_bar_summary_on">Трака канала је скривена</string>
+ <string name="revanced_hide_channel_bar_summary_off">Трака канала је приказана</string>
+ <string name="revanced_hide_playables_title">Сакриј салу за игру</string>
+ <string name="revanced_hide_playables_summary_on">Сала за игру је скривена</string>
+ <string name="revanced_hide_playables_summary_off">Сала за игру је приказана</string>
+ <string name="revanced_hide_quick_actions_title">Сакриј брзе радње у режиму целог екрана</string>
+ <string name="revanced_hide_quick_actions_summary_on">Брзе радње су скривене</string>
+ <string name="revanced_hide_quick_actions_summary_off">Брзе радње су приказане</string>
+ <string name="revanced_hide_related_videos_title">Сакриј сродне видее у брзим радњама</string>
+ <string name="revanced_hide_related_videos_summary_on">Сродни видеи су скривени</string>
+ <string name="revanced_hide_related_videos_summary_off">Сродни видеи су приказани</string>
+ <string name="revanced_hide_image_shelf_title">Сакриј полицу са сликама у резултатима претраге</string>
+ <string name="revanced_hide_image_shelf_summary_on">Полица са сликама је скривена</string>
+ <string name="revanced_hide_image_shelf_summary_off">Полица са сликама је приказана</string>
+ <string name="revanced_hide_latest_posts_ads_title">Сакриј најновије објаве</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Најновије објаве су скривене</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Најновије објаве су приказане</string>
+ <string name="revanced_hide_mix_playlists_title">Сакриј микс плејлисте</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Микс плејлисте су скривене</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Микс плејлисте су приказане</string>
+ <string name="revanced_hide_artist_cards_title">Сакриј картице извођача</string>
+ <string name="revanced_hide_artist_cards_summary_on">Картице извођача су скривене</string>
+ <string name="revanced_hide_artist_cards_summary_off">Картице извођача су приказане</string>
+ <string name="revanced_hide_chips_shelf_title">Сакриј полицу ознака сличних видеа</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Полица ознака сличних видеа је скривена</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Полица ознака сличних видеа је приказана</string>
+ <string name="revanced_hide_info_cards_section_title">Сакриј одељак с инфо картицама</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Одељак с инфо картицама је скривен</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Одељак с инфо картицама је приказан</string>
+ <string name="revanced_hide_transcript_section_summary_on">Одељак за транскрипцију је скривен</string>
+ <string name="revanced_hide_transcript_section_summary_off">Одељак за транскрипцију је скривен</string>
+ <string name="revanced_hide_description_components_screen_title">Опис видеа</string>
+ <string name="revanced_hide_description_components_screen_summary">Сакријте или прикажите компоненте описа видеа</string>
+ <string name="revanced_custom_filter_screen_title">Прилагођени филтер</string>
+ <string name="revanced_custom_filter_screen_summary">Сакријте компоненте користећи прилагођене филтере</string>
+ <string name="revanced_custom_filter_title">Омогући прилагођени филтер</string>
+ <string name="revanced_custom_filter_summary_on">Прилагођени филтер је омогућен</string>
+ <string name="revanced_custom_filter_summary_off">Прилагођени филтер је онемогућен</string>
+ <string name="revanced_custom_filter_strings_title">Прилагођени филтер</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Листа стрингова за прављење путање компоненти за филтрирање, одвојена новим редом</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Неважећи прилагођени филтер: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Сакриј садржај кључне речи</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Сакријте видее из резултата претраге и фида користећи филтере кључних речи</string>
+ <string name="revanced_hide_keyword_content_home_title">Сакриј видее на почетној према кључним речима</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Видеи на почетној картици су филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Видеи на почетној картици нису филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Сакриј видее из праћења према кључним речима</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Видеи на картици праћења су филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Видеи на картици праћења нису филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_search_title">Сакриј резултате претраге према кључним речима</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Резултати претраге су филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Резултати претраге нису филтрирани према кључним речима</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Кључне речи за сакривање</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Кључне речи и фразе које треба сакрити, одвојене новим редовима\n\nРечи са великим словима у средини морају се унети са великим словима (нпр.: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">О филтрирању према кључним речима</string>
+ <string name="revanced_hide_keyword_content_about_summary">Почетна/Праћења/Резултати претраге се филтрирају да би се сакрио садржај који се подудара са кључним фразама\n\nОграничења\n• Неки Shorts видеи можда неће бити сакривени\n• Неке компоненте корисничког интерфејса можда неће бити сакривене\n• Претраживање кључне речи можда неће показати резултате</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Неважећа кључна реч. Није могуће користити „%s”</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Неважећа кључна реч. „%1$s” је краће од %2$d знакова</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Сакриј опште огласе</string>
+ <string name="revanced_hide_general_ads_summary_on">Општи огласи су скривени</string>
+ <string name="revanced_hide_general_ads_summary_off">Општи огласи су приказани</string>
+ <string name="revanced_hide_fullscreen_ads_title">Сакриј огласе преко целог екрана</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Огласи преко целог екрана су скривени\n\nОва функција је доступна само за старије уређаје</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Огласи преко целог екрана су приказани</string>
+ <string name="revanced_hide_buttoned_ads_title">Сакриј огласе у облику дугмади</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Огласи у облику дугмади су скривени</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Огласи у облику дугмади су приказани</string>
+ <string name="revanced_hide_paid_promotion_label_title">Сакриј ознаку плаћене промоције</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Ознака плаћене промоције је скривена</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Ознака плаћене промоције је приказана</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Сакриј самоспонзорисане картице</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Самоспонзорисане картице су скривене</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Самоспонзорисане картице су приказане</string>
+ <string name="revanced_hide_products_banner_title">Сакриј банер за гледање производа</string>
+ <string name="revanced_hide_products_banner_summary_on">Банер је скривен</string>
+ <string name="revanced_hide_products_banner_summary_off">Банер је приказан</string>
+ <string name="revanced_hide_shopping_links_title">Сакриј линкове за куповину у опису видеа</string>
+ <string name="revanced_hide_shopping_links_summary_on">Линкови за куповину су скривени</string>
+ <string name="revanced_hide_shopping_links_summary_off">Линкови за куповину су приказани</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Сакриј дугме „Посети продавницу” на страницама канала</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Дугме је скривено</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Дугме је приказано</string>
+ <string name="revanced_hide_web_search_results_title">Сакриј резултате веб-претраге</string>
+ <string name="revanced_hide_web_search_results_summary_on">Резултати веб-претраге су скривени</string>
+ <string name="revanced_hide_web_search_results_summary_off">Резултати веб-претраге су приказани</string>
+ <string name="revanced_hide_merchandise_banners_title">Сакриј банере с робом</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Банери с робом су скривени</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Банери с робом су приказани</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Сакривање огласа преко целог екрана ради само са старијим уређајима</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Сакриј промоције за YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Промоције за YouTube Premium испод видео плејера су скривене</string>
+ <string name="revanced_hide_get_premium_summary_off">Промоције за YouTube Premium испод видео плејера су приказане</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Сакриј огласе у видеу</string>
+ <string name="revanced_hide_video_ads_summary_on">Огласи у видеу су скривени</string>
+ <string name="revanced_hide_video_ads_summary_off">Огласи у видеу су приказани</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Линк је копиран у привремену меморију</string>
+ <string name="revanced_share_copy_url_timestamp_success">Линк са временском ознаком је копиран</string>
+ <string name="revanced_copy_video_url_title">Прикажи дугме за копирање линка видеа</string>
+ <string name="revanced_copy_video_url_summary_on">Дугме је приказано. Додирните да бисте копирали линк видеа. Додирните и задржите да бисте копирали линк видеа с временском ознаком</string>
+ <string name="revanced_copy_video_url_summary_off">Дугме није приказано</string>
+ <string name="revanced_copy_video_url_timestamp_title">Прикажи дугме за копирање линка видеа са временском ознаком</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Дугме је приказано. Додирните да бисте копирали линк видеа с временском ознаком. Додирните и задржите да бисте копирали линк видеа без временске ознаке</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Дугме није приказано</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Уклони дијалог о дискрецији гледаоца</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Дијалог ће бити уклоњен</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Дијалог ће бити приказан</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Ово не заобилази старосно ограничење. Само га аутоматски прихвата.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Спољна преузимања</string>
+ <string name="revanced_external_downloader_screen_summary">Подешавања за коришћење спољног програма за преузимање</string>
+ <string name="revanced_external_downloader_title">Прикажи дугме за спољно преузимање</string>
+ <string name="revanced_external_downloader_summary_on">Дугме за преузимање је приказано у плејеру</string>
+ <string name="revanced_external_downloader_summary_off">Дугме за преузимање није приказано у плејеру</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Замени изворно дугме „Преузми”</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Дугме „Преузми” отвара спољни програм за преузимање</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Дугме „Преузми” отвара изворни програм за преузимање у апликацији</string>
+ <string name="revanced_external_downloader_name_title">Назив пакета програма за преузимање</string>
+ <string name="revanced_external_downloader_name_summary">Назив пакета инсталираног спољног програма за преузимање, као што је NewPipe или Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s није инсталиран. Инсталирајте га.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Онемогући покрет прецизног премотавања</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Покрет прецизног премотавања је онемогућен</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Покрет прецизног премотавања је омогућен</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Омогући додиривање траке за премотавање</string>
+ <string name="revanced_seekbar_tapping_summary_on">Додиривање траке за премотавање је омогућено</string>
+ <string name="revanced_seekbar_tapping_summary_off">Додиривање траке за премотавање је онемогућено</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Омогући покрет за осветљеност</string>
+ <string name="revanced_swipe_brightness_summary_on">Превлачење за подешавање осветљености је омогућено</string>
+ <string name="revanced_swipe_brightness_summary_off">Превлачење за подешавање осветљености је онемогућено</string>
+ <string name="revanced_swipe_volume_title">Омогући покрет за јачину звука</string>
+ <string name="revanced_swipe_volume_summary_on">Превлачење за подешавање јачине звука је омогућено</string>
+ <string name="revanced_swipe_volume_summary_off">Превлачење за подешавање јачине звука је онемогућено</string>
+ <string name="revanced_swipe_press_to_engage_title">Омогући покрет притиском за превлачење</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Покрет притиском за превлачење је омогућен</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Покрет притиском за превлачење је онемогућен</string>
+ <string name="revanced_swipe_haptic_feedback_title">Омогући вибрацију при додиру</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Вибрација при додиру је омогућена</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Вибрација при додиру је онемогућена</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Сачувај и врати осветљеност</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Чување и враћање осветљености при изласку или уласку у режим целог екрана</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Без чувања и враћања осветљености при изласку или уласку у режим целог екрана</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Омогући покрет за аутоматску осветљеност</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Превлачење надоле до најниже вредности покрета за осветљеност омогућава аутоматску осветљеност</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Превлачење надоле до најниже вредности покрета за осветљеност не омогућава аутоматску осветљеност</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Аутоматски</string>
+ <string name="revanced_swipe_overlay_timeout_title">Временско ограничење покрета превлачења</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Количина милисекунди у којој је покрет превлачења видљив</string>
+ <string name="revanced_swipe_text_overlay_size_title">Величина текста покрета превлачења</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Величина текста за покрет превлачења</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Видљивост позадине покрета превлачења</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Видљивост позадине покрета превлачења</string>
+ <string name="revanced_swipe_threshold_title">Праг трајања превлачења</string>
+ <string name="revanced_swipe_threshold_summary">Износ прага трајања превлачења</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Онемогући аутоматске титлове</string>
+ <string name="revanced_auto_captions_summary_on">Аутоматски титлови су онемогућени</string>
+ <string name="revanced_auto_captions_summary_off">Аутоматски титлови су омогућени</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Дугмад радњи</string>
+ <string name="revanced_hide_buttons_screen_summary">Сакријте или прикажите дугмад испод видеа</string>
+ <string name="revanced_hide_like_dislike_button_title">Сакриј дугмад „Свиђа ми се” и „Не свиђа ми се”</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Дугмад „Свиђа ми се” и „Не свиђа ми се” су скривена</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Дугмад „Свиђа ми се” и „Не свиђа ми се” су приказана</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Сакриј дугме \"Дели\"</string>
+ <string name="revanced_hide_share_button_summary_on">Дугме „Дели” је скривено</string>
+ <string name="revanced_hide_share_button_summary_off">Дугме „Дели” је приказано</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Сакриј дугме „Пријави”</string>
+ <string name="revanced_hide_report_button_summary_on">Дугме „Пријави” је скривено</string>
+ <string name="revanced_hide_report_button_summary_off">Дугме „Пријави” је приказано</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Сакриј дугме „Ремикс”</string>
+ <string name="revanced_hide_remix_button_summary_on">Дугме „Ремикс” је скривено</string>
+ <string name="revanced_hide_remix_button_summary_off">Дугме „Ремикс” је приказано</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Сакриј дугме „Преузми”</string>
+ <string name="revanced_hide_download_button_summary_on">Дугме „Преузми” је скривено</string>
+ <string name="revanced_hide_download_button_summary_off">Дугме „Преузми” је приказано</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Сакриј дугме „Хвала”</string>
+ <string name="revanced_hide_thanks_button_summary_on">Дугме „Хвала” је скривено</string>
+ <string name="revanced_hide_thanks_button_summary_off">Дугме „Хвала” је приказано</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Сакриј дугме „Клип”</string>
+ <string name="revanced_hide_clip_button_summary_on">Дугме „Клип” је скривено</string>
+ <string name="revanced_hide_clip_button_summary_off">Дугме „Клип” је приказано</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Сакриј дугме „Сачувај на плејлисту”</string>
+ <string name="revanced_hide_playlist_button_summary_on">Дугме „Сачувај на плејлисту” је скривено</string>
+ <string name="revanced_hide_playlist_button_summary_off">Дугме „Сачувај на плејлисту” је приказано</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Сакриј дугме „Аутоплеј”</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Дугме „Аутоплеј” је скривено</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Дугме „Аутоплеј” је приказано</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Сакриј дугме „Титл”</string>
+ <string name="revanced_hide_captions_button_summary_on">Дугме „Титл” је скривено</string>
+ <string name="revanced_hide_captions_button_summary_off">Дугме „Титл” је приказано</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Сакриј дугме „Пребацуј”</string>
+ <string name="revanced_hide_cast_button_summary_on">Дугме „Пребацуј” је скривено</string>
+ <string name="revanced_hide_cast_button_summary_off">Дугме „Пребацуј” је приказано</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Дугмад навигације</string>
+ <string name="revanced_navigation_buttons_screen_summary">Сакријте или промените дугмад на траци за навигацију</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Сакриј дугме „Почетна”</string>
+ <string name="revanced_hide_home_button_summary_on">Дугме „Почетна” је скривено</string>
+ <string name="revanced_hide_home_button_summary_off">Дугме „Почетна” је приказано</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Сакриј дугме „Shorts”</string>
+ <string name="revanced_hide_shorts_button_summary_on">Дугме „Shorts” је скривено</string>
+ <string name="revanced_hide_shorts_button_summary_off">Дугме „Shorts” је приказано</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Сакриј дугме „Направи”</string>
+ <string name="revanced_hide_create_button_summary_on">Дугме „Направи” је скривено</string>
+ <string name="revanced_hide_create_button_summary_off">Дугме „Направи” је приказано</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Сакриј дугме „Праћења”</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Дугме „Праћења” је скривено</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Дугме „Праћења” је приказано</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Замени дугме „Направи” дугметом „Обавештења”</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Дугме „Направи” је замењено дугметом „Обавештења”\н\нНапомена: Ако ово омогућите, такође ће се присилно сакрити огласи у видеу</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Дугме „Направи” није замењено дугметом „Обавештења”</string>
+ <string name="revanced_hide_navigation_button_labels_title">Сакриј ознаке дугмади за навигацију</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Ознаке дугмади за навигацију су скривене</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Ознаке дугмади за навигацију су приказане</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Падајући мени</string>
+ <string name="revanced_hide_player_flyout_summary">Сакријте или прикажите предмете у падајућем менију плејера</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Сакриј дугме „Титл”</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Мени „Титл” је скривен</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Мени „Титл” је приказан</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Сакриј дугме „Додатна подешавања”</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Мени „Додатна подешавања” је скривен</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Мени „Додатна подешавања” је приказан</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Сакриј дугме „Понављај видео”</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Дугме „Понављај видео” је скривено</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Дугме „Понављај видео” је скривено</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Сакриј дугме „Амбијентални режим”</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Дугме „Амбијентални режим” је скривено</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Дугме „Амбијентални режим” је приказано</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Сакриј дугме „Помоћ и повратне информације”</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Дугме „Помоћ и повратне информације” је скривено</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Дугме „Помоћ и повратне информације” је приказано</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Сакриј дугме „Брзина репродукције”</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Мени „Брзина репродукције” је скривен</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Мени „Брзина репродукције” је приказан</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Сакриј дугме „Више информација”</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Дугме „Више информација” је скривено</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Дугме „Више информација” је приказано</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Сакриј дугме „Закључај екран”</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Дугме „Закључај екран” је скривено</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Дугме „Закључај екран” је приказано</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Сакриј дугме „Аудио снимак”</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Мени „Аудио снимак” је скривен</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Мени „Аудио снимак” је приказан</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Сакриј дугме „Гледај у ВР”</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Дугме „Гледај у ВР” је скривено</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Дугме „Гледај у ВР” је приказано</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Сакриј дугмад за претходни и следећи видео</string>
+ <string name="revanced_hide_player_buttons_summary_on">Дугмад су скривена</string>
+ <string name="revanced_hide_player_buttons_summary_off">Дугмад су приказана</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Сакриј картице албума</string>
+ <string name="revanced_hide_album_cards_summary_on">Картице албума су скривене</string>
+ <string name="revanced_hide_album_cards_summary_off">Картице албума су приказане</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Коментари</string>
+ <string name="revanced_comments_screen_summary">Сакријте или прикажите компоненте одељка за коментаре</string>
+ <string name="revanced_hide_comments_by_members_header_title">Сакриј заглавље „Коментари од чланова”</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Заглавље „Коментари од чланова” је скривено</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Заглавље „Коментари од чланова” је приказано</string>
+ <string name="revanced_hide_comments_section_title">Сакриј одељак за коментаре</string>
+ <string name="revanced_hide_comments_section_summary_on">Одељак за коментаре је скривен</string>
+ <string name="revanced_hide_comments_section_summary_off">Одељак за коментаре је приказан</string>
+ <string name="revanced_hide_comments_preview_comment_title">Сакриј коментар за преглед</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Коментар за преглед је скривен</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Коментар за преглед је приказан</string>
+ <string name="revanced_hide_comments_thanks_button_title">Сакриј дугме „Хвала”</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Дугме „Хвала” је скривено</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Дугме „Хвала” је приказано</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Сакриј дугмад за временску ознаку и емоџије</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Дугмад за временску ознаку и емоџије су скривена</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Дугмад за временску ознаку и емоџије су приказана</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Сакриј кутију за колективно финансирање</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Кутија за колективно финансирање је скривена</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Кутија за колективно финансирање је приказана</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Сакриј картице завршног екрана</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Картице завршног екрана су скривене</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Картице завршног екрана су приказане</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Трака филтера</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Сакријте или прикажите траку филтера у фиду, претрази или сродним видеима</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Сакриј у фиду</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Скривено у фиду</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Приказано у фиду</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Сакриј у претрази</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Скривено у претрази</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Приказано у претрази</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Сакриј у сродним видеима</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Скривено у сродним видеима</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Приказано у сродним видеима</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Сакриј плутајуће дугме микрофона</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Плутајуће дугме микрофона је скривено</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Плутајуће дугме микрофона је приказано</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Онемогући амбијентални режим у режиму целог екрана</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Амбијентални режим у режиму целог екрана је онемогућен</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Амбијентални режим у режиму целог екрана је омогућен</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Сакриј инфо картице</string>
+ <string name="revanced_hide_info_cards_summary_on">Инфо картице су скривене</string>
+ <string name="revanced_hide_info_cards_summary_off">Инфо картице су приказане</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Онемогући анимације бројева</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Бројеви нису анимирани</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Бројеви су анимирани</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Сакриј траку за премотавање у видео плејеру</string>
+ <string name="revanced_hide_seekbar_summary_on">Трака за премотавање у видео плејеру је скривена</string>
+ <string name="revanced_hide_seekbar_summary_off">Трака за премотавање у видео плејеру је приказана</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Сакриј траку за премотавање на сличици видеа</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Трака за премотавање на сличици видеа је скривена</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Трака за премотавање на сличици видеа је приказана</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Сакриј Shorts видее у фиду „Почетна”</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts видеи у фиду „Почетна” су скривени</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts видеи у фиду „Почетна” су приказани</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Сакриј Shorts видее у фиду „Праћења”</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts видеи у фиду „Праћења” су скривени</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts видеи у фиду „Праћења” су приказани</string>
+ <string name="revanced_hide_shorts_search_title">Сакриј Shorts видее у резултатима претраге</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts видеи у резултатима претраге су скривени</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts видеи у резултатима претраге су приказани</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Сакриј дугме „Учлани ме”</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Дугме „Учлани ме” је скривено</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Дугме „Учлани ме” је приказано</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Сакриј дугме „Запрати”</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Дугме „Запрати” је скривено при паузи</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Дугме „Запрати” је приказано при паузи</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Сакриј дугмад у плејеру при паузи</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Дугмад су скривена при паузи</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Дугмад су приказана при паузи</string>
+ <string name="revanced_hide_shorts_shop_button_title">Сакриј дугме „Куповина”</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Дугме „Куповина” је скривено</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Дугме „Куповина” је приказано</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Сакриј дугме „Суперхвала”</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Дугме „Суперхвала” је скривено</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Дугме „Суперхвала” је приказано</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Сакриј означене производе</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Означени производи су скривени</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Означени производи су приказани</string>
+ <string name="revanced_hide_shorts_location_label_title">Сакриј ознаку локације</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Ознака локације је скривена</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Ознака локације је приказана</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Сакриј дугме „Сачувај звук на плејлисту”</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Дугме „Сачувај звук на плејлисту” је скривено</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Дугме „Сачувај звук на плејлисту” је приказано</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Сакриј предлоге за претрагу</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Предлози за претрагу су скривени</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Предлози за претрагу су приказани</string>
+ <string name="revanced_hide_shorts_like_button_title">Сакриј дугме „Свиђа ми се”</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Дугме „Свиђа ми се” је скривено</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Дугме „Свиђа ми се” је приказано</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Сакриј дугме „Не свиђа ми се”</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Дугме „Не свиђа ми се” је скривено</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Дугме „Не свиђа ми се” је приказано</string>
+ <string name="revanced_hide_shorts_comments_button_title">Сакриј дугме „Коментари”</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Дугме „Коментари” је скривено</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Дугме „Коментари” је приказано</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Сакриј дугме „Ремикс”</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Дугме „Ремикс” је скривено</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Дугме „Ремикс” је приказано</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Сакриј дугме „Дели”</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Дугме „Дели” је скривено</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Дугме „Дели” је приказано</string>
+ <string name="revanced_hide_shorts_info_panel_title">Сакриј инфо панел</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Инфо панел је скривен</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Инфо панел је приказан</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Сакриј траку канала</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Трака канала је скривена</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Трака канала је приказана</string>
+ <string name="revanced_hide_shorts_video_title_title">Сакриј наслов видеа</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Наслов Shorts видеа је скривен</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Наслов Shorts видеа је приказан</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Сакриј ознаку метаподатака звука</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Ознака метаподатака звука је скривена</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Ознака метаподатака звука је приказана</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Сакриј ознаку линка видеа</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Ознака линка видеа је скривена</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Ознака линка видеа је приказана</string>
+ <string name="revanced_hide_shorts_sound_button_title">Сакриј дугме за звук</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Дугме за звук је скривено</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Дугме за звук је приказано</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Сакриј траку за навигацију</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Трака за навигацију је скривена</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Трака за навигацију је приказана</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Онемогући предложени видео на завршном екрану</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Предложени видеи на завршном екрану ће бити скривени</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Предложени видеи на завршном екрану ће бити приказани</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Сакриј временску ознаку видеа</string>
+ <string name="revanced_hide_timestamp_summary_on">Временска ознака видеа је скривена</string>
+ <string name="revanced_hide_timestamp_summary_off">Временска ознака видеа је приказана</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Сакриј искачуће панеле плејера</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Искачући панели плејера су скривени</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Искачући панели плејера су приказани</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Непрозирност слоја плејера</string>
+ <string name="revanced_player_overlay_opacity_summary">Вредност непрозирности између 0-100, где је 0 прозирно</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Прозирност преклопа плејера мора бити између 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Скривено</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Несвиђања привремено нису доступна (API истекао)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Несвиђања нису доступна (статус %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Несвиђања нису доступна (лимит API-ја клијента)</string>
+ <string name="revanced_ryd_failure_generic">Несвиђања нису доступна (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Освежите видео да бисте гласали помоћу ReturnYouTubeDislike</string>
+ <string name="revanced_ryd_enable_summary_on">Несвиђања су приказана</string>
+ <string name="revanced_ryd_enable_summary_off">Несвиђања нису приказана</string>
+ <string name="revanced_ryd_shorts_title">Прикажи несвиђања на Shorts видеима</string>
+ <string name="revanced_ryd_shorts_summary_on">Несвиђања су приказана на Shorts видеима</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Несвиђања су приказана на Shorts видеима\n\nОграничење: Несвиђања се можда неће појавити у режиму без архивирања</string>
+ <string name="revanced_ryd_shorts_summary_off">Несвиђања су скривена на Shorts видеима</string>
+ <string name="revanced_ryd_dislike_percentage_title">Несвиђања у процентима</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Несвиђања приказана у процентима</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Несвиђања приказана у бројевима</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Компактно дугме „Свиђа ми се”</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Дугме „Свиђа ми се” стилизовано за минималну ширину</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Дугме „Свиђа ми се” стилизовано за најбољи изглед</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Прикажи искачуће обавештење ако API није доступан</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Искачуће обавештење је приказано, ако Return YouTube Dislike није доступан</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Искачуће обавештење није приказано, ако Return YouTube Dislike није доступан</string>
+ <string name="revanced_ryd_about">О програму</string>
+ <string name="revanced_ryd_attribution_summary">Податке обезбеђује Return YouTube Dislike API. Додирните овде да бисте сазнали више</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Статистике ReturnYouTubeDislike API-ја за овај уређај</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Време одговора API-ја, просечно</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Време одговора API-ја, минимално</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Време одговора API-ја, максимално</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Време одговора API-ја, последњи видео</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Несвиђања привремено нису доступна – на снази је ограничење стопе API клијента</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API прикупљање гласова, број позива</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Није остварен ниједан мрежни позив</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Број остварених мрежних позива: %d</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API прикупљање гласова, број истека</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Није истекао ниједан мрежни позив</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Број истеклих мрежних позива: %d</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Ограничења стопе клијента API-ја</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Није остварено ниједно ограничење стопе клијента</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Број остварених ограничења стопе клијента: %d</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d милисекунди</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Омогући широку траку за претрагу</string>
+ <string name="revanced_wide_searchbar_summary_on">Широка трака за претрагу је омогућена</string>
+ <string name="revanced_wide_searchbar_summary_off">Широка трака за претрагу је онемогућена</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Врати старе сличице на траци за премотавање</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Сличице траке за премотавање ће се појавити изнад ње</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Сличице траке за премотавање ће се појавити у режиму целог екрана</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Омогући SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock је систем направљен од заједнице корисника и служи за прескакање досадних делова YouTube видеа</string>
+ <string name="revanced_sb_appearance_category">Изглед</string>
+ <string name="revanced_sb_enable_voting">Прикажи дугме за гласање</string>
+ <string name="revanced_sb_enable_voting_sum_on">Дугме за гласање за сегмент је приказано</string>
+ <string name="revanced_sb_enable_voting_sum_off">Дугме за гласање за сегмент није приказано</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Користи компактно дугме за прескакање</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Дугме за прескакање стилизовано за минималну ширину</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Дугме за прескакање стилизовано за најбољи изглед</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Аутоматски сакриј дугме за прескакање</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Дугме за прескакање ће бити скривено након неколико секунди</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Дугме за прескакање ће бити приказано током целог сегмента</string>
+ <string name="revanced_sb_general_skiptoast">Прикажи искачуће обавештење при аутоматском прескакању</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Искачуће обавештење се приказује, када је сегмент аутоматски прескочен. Додирните овде да видите пример</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Искачуће обавештење се не приказује. Додирните овде да видите пример</string>
+ <string name="revanced_sb_general_time_without">Прикажи дужину видеа без сегмената</string>
+ <string name="revanced_sb_general_time_without_sum_on">Дужина видеа минус сви сегменти, приказана у заградама поред пуне дужине видеа</string>
+ <string name="revanced_sb_general_time_without_sum_off">Пуна дужина видеа је приказана</string>
+ <string name="revanced_sb_create_segment_category">Прављење нових сегмената</string>
+ <string name="revanced_sb_enable_create_segment">Прикажи дугме за прављење новог сегмента</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Дугме за прављење новог сегмента је приказано</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Дугме за прављење новог сегмента није приказано</string>
+ <string name="revanced_sb_general_adjusting">Подешавање корака новог сегмента</string>
+ <string name="revanced_sb_general_adjusting_sum">Број милисекунди у којима се померају дугмад за подешавање времена приликом прављења нових сегмената</string>
+ <string name="revanced_sb_general_adjusting_invalid">Вредност мора бити позитиван број</string>
+ <string name="revanced_sb_guidelines_preference_title">Види смернице</string>
+ <string name="revanced_sb_guidelines_preference_sum">Смернице садрже правила и савете за прављење нових сегмената</string>
+ <string name="revanced_sb_guidelines_popup_title">Пратите смернице</string>
+ <string name="revanced_sb_guidelines_popup_content">Прочитајте смернице SponsorBlock-а пре прављења нових сегмената</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Већ прочитано</string>
+ <string name="revanced_sb_guidelines_popup_open">Покажи ми</string>
+ <string name="revanced_sb_general">Опште</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Прикажи искачуће обавештење ако API није доступан</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Искачуће обавештење је приказано, ако SponsorBlock није доступан</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Искачуће обавештење није приказано, ако SponsorBlock није доступан</string>
+ <string name="revanced_sb_general_skipcount">Омогући праћење броја прескакања</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Омогућава SponsorBlock ранг-листи да зна колико је времена уштеђено. Порука се шаље на ранг-листу сваки пут када је сегмент прескочен</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Праћење броја прескакања није омогућено</string>
+ <string name="revanced_sb_general_min_duration">Минимално трајање сегмента</string>
+ <string name="revanced_sb_general_min_duration_sum">Сегменти краћи од ове вредности (у секундама) неће бити приказани или прескочени</string>
+ <string name="revanced_sb_general_uuid">Ваш приватни кориснички ID</string>
+ <string name="revanced_sb_general_uuid_sum">Ово треба да остане приватно. Ово је као лозинка и не би требало да се дели ни са ким. Ако неко има ово, може да се лажно представља за вас</string>
+ <string name="revanced_sb_general_uuid_invalid">Приватни кориснички ID мора да има најмање 30 знакова</string>
+ <string name="revanced_sb_general_api_url">Промена URL-а API-ја</string>
+ <string name="revanced_sb_general_api_url_sum">Адреса коју SponsorBlock користи за упућивање позива серверу</string>
+ <string name="revanced_sb_api_url_reset">Ресетовање URL-а API-ја</string>
+ <string name="revanced_sb_api_url_invalid">URL API-ја је неважећи</string>
+ <string name="revanced_sb_api_url_changed">URL API-ја је промењен</string>
+ <string name="revanced_sb_settings_ie">Увоз/Извоз подешавања</string>
+ <string name="revanced_sb_settings_copy">Копирај</string>
+ <string name="revanced_sb_settings_ie_sum">Ваша SponsorBlock JSON конфигурација која може да се увезе/извезе у ReVanced и друге SponsorBlock платформе</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Ваша SponsorBlock JSON конфигурација која може да се увезе/извезе у ReVanced и друге SponsorBlock платформе. Ово укључује ваш приватни кориснички ID. Делите ово мудро</string>
+ <string name="revanced_sb_settings_import_successful">Подешавања су успешно увезена</string>
+ <string name="revanced_sb_settings_import_failed">Неуспешан увоз: %s</string>
+ <string name="revanced_sb_settings_export_failed">Неуспешан извоз: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ваша подешавања садрже приватни SponsorBlock кориснички ID.\n\nВаш кориснички ID је као лозинка и никада га не треба делити.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Не приказуј поново</string>
+ <string name="revanced_sb_diff_segments">Промена понашања сегмента</string>
+ <string name="revanced_sb_segments_sponsor">Спонзор</string>
+ <string name="revanced_sb_segments_sponsor_sum">Плаћене промоције, плаћене препоруке и директне рекламе. Није за самопромоцију или бесплатно позивање на циљеве/креаторе/веб-сајтове/производе који им се допадају</string>
+ <string name="revanced_sb_segments_selfpromo">Неплаћена промоција/Самопромоција</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Слично као „Спонзор”, осим за неплаћену промоцију или самопромоцију. Укључује одељке о роби, донацијама или информацијама о томе са ким су сарађивали</string>
+ <string name="revanced_sb_segments_interaction">Подсетник о интеракцији (праћење)</string>
+ <string name="revanced_sb_segments_interaction_sum">Кратак подсетник да лајкујете, претплатите се или их запратите усред садржаја. Ако је дугачак или о нечему конкретном, требало би да буде под самопромоцијом</string>
+ <string name="revanced_sb_segments_highlight">Истакнуто</string>
+ <string name="revanced_sb_segments_highlight_sum">Део видеа који већина људи тражи</string>
+ <string name="revanced_sb_segments_intro">Пауза/Уводна анимација</string>
+ <string name="revanced_sb_segments_intro_sum">Интервал без стварног садржаја. Може бити пауза, статични кадар или понављајућа анимација. Не укључује прелазе који садрже информације</string>
+ <string name="revanced_sb_segments_outro">Завршне картице/Кредити</string>
+ <string name="revanced_sb_segments_outro_sum">Кредити или када се појаве YouTube завршне картице. Није за закључке са информацијама</string>
+ <string name="revanced_sb_segments_preview">Преглед/Рекапитулација/Најава</string>
+ <string name="revanced_sb_segments_preview_sum">Колекција клипова који показују шта следи или шта се десило у видеу или у другим видеима серије, где се све информације понављају на другом месту</string>
+ <string name="revanced_sb_segments_filler">Попуњавање/Шале</string>
+ <string name="revanced_sb_segments_filler_sum">Неповезане сцене су додате само за попуњавање или хумор и такве сцене нису потребне за разумевање главног садржаја видеа. Не укључује сегменте који пружају детаље о контексту или позадини</string>
+ <string name="revanced_sb_segments_nomusic">Музика: Сегмент без музике</string>
+ <string name="revanced_sb_segments_nomusic_sum">Само за употребу у музичким спотовима. Делови музичких спотова без музике, који нису обухваћени другом категоријом</string>
+ <string name="revanced_sb_skip_button_compact">Прескочи</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Истакнуто</string>
+ <string name="revanced_sb_skip_button_sponsor">Прескочи спонзора</string>
+ <string name="revanced_sb_skip_button_selfpromo">Прескочи промоцију</string>
+ <string name="revanced_sb_skip_button_interaction">Прескочи интеракцију</string>
+ <string name="revanced_sb_skip_button_highlight">Прескочи на истакнуто</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Прескочи уводну анимацију</string>
+ <string name="revanced_sb_skip_button_intro_middle">Прескочи паузу</string>
+ <string name="revanced_sb_skip_button_intro_end">Прескочи паузу</string>
+ <string name="revanced_sb_skip_button_outro">Прескочи завршну анимацију</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Прескочи преглед</string>
+ <string name="revanced_sb_skip_button_preview_middle">Прескочи преглед</string>
+ <string name="revanced_sb_skip_button_preview_end">Прескочи рекапитулацију</string>
+ <string name="revanced_sb_skip_button_filler">Прескочи попуњавање</string>
+ <string name="revanced_sb_skip_button_nomusic">Прескочи сегмент без музике</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Прескочи сегмент</string>
+ <string name="revanced_sb_skipped_sponsor">Прескочен спонзор</string>
+ <string name="revanced_sb_skipped_selfpromo">Прескочена самопромоција</string>
+ <string name="revanced_sb_skipped_interaction">Прескочен досадни подсетник</string>
+ <string name="revanced_sb_skipped_highlight">Прескочено на истакнуто</string>
+ <string name="revanced_sb_skipped_intro_beginning">Прескочена уводна анимација</string>
+ <string name="revanced_sb_skipped_intro_middle">Прескочена пауза</string>
+ <string name="revanced_sb_skipped_intro_end">Прескочена пауза</string>
+ <string name="revanced_sb_skipped_outro">Прескочена завршна анимација</string>
+ <string name="revanced_sb_skipped_preview_beginning">Прескочен преглед</string>
+ <string name="revanced_sb_skipped_preview_middle">Прескочен преглед</string>
+ <string name="revanced_sb_skipped_preview_end">Прескочена рекапитулација</string>
+ <string name="revanced_sb_skipped_filler">Прескочено попуњавање</string>
+ <string name="revanced_sb_skipped_nomusic">Прескочен сегмент без музике</string>
+ <string name="revanced_sb_skipped_unsubmitted">Прескочен неподнесени сегмент</string>
+ <string name="revanced_sb_skipped_multiple_segments">Прескочено више сегмената</string>
+ <string name="revanced_sb_skip_automatically">Прескочи аутоматски</string>
+ <string name="revanced_sb_skip_automatically_once">Прескочи аутоматски једанпут</string>
+ <string name="revanced_sb_skip_showbutton">Прикажи дугме за прескакање</string>
+ <string name="revanced_sb_skip_seekbaronly">Прикажи у траци за премотавање</string>
+ <string name="revanced_sb_skip_ignore">Онемогући</string>
+ <string name="revanced_sb_submit_failed_invalid">Није могуће поднети сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock привремено не ради</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Није могуће поднети сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Није могуће поднети сегмент.\nОграничење стопе (превише од истог корисника или IP адресе)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Није могуће поднети сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Није могуће поднети сегмент.\nВећ постоји</string>
+ <string name="revanced_sb_submit_succeeded">Сегмент је успешно поднет</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock привремено није доступан (API истекао)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock привремено није доступан (статус %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock привремено није доступан</string>
+ <string name="revanced_sb_vote_failed_timeout">Није могуће гласати за сегмент (API истекао)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Није могуће гласати за сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Није могуће гласати за сегмент: %s</string>
+ <string name="revanced_sb_vote_upvote">Гласај за</string>
+ <string name="revanced_sb_vote_downvote">Гласај против</string>
+ <string name="revanced_sb_vote_category">Промени категорију</string>
+ <string name="revanced_sb_vote_no_segments">Нема ниједног сегмента за гласање</string>
+ <string name="revanced_sb_new_segment_choose_category">Изаберите категорију сегмента</string>
+ <string name="revanced_sb_new_segment_disabled_category">Категорија је онемогућена у подешавањима. Омогућите категорију да бисте поднели.</string>
+ <string name="revanced_sb_new_segment_title">Нови SponsorBlock сегмент</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Поставити %1$02d:%2$02d:%3$03d као почетак или крај новог сегмента?</string>
+ <string name="revanced_sb_new_segment_mark_start">почетак</string>
+ <string name="revanced_sb_new_segment_mark_end">крај</string>
+ <string name="revanced_sb_new_segment_now">сада</string>
+ <string name="revanced_sb_new_segment_time_start">Време почетка сегмента</string>
+ <string name="revanced_sb_new_segment_time_end">Време краја сегмента</string>
+ <string name="revanced_sb_new_segment_confirm_title">Да ли су времена тачна?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Сегмент је од\n\n%1$s\nдо\n%%2$s\n\n(%3$s)\n\nСпреман за подношење?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Почетак мора бити пре краја</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Прво означите два места на временској траци</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Прегледајте сегмент и уверите се да глатко прескаче</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Ручно измените време сегмента</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Желите ли да измените време почетка или краја сегмента?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Дато је неважеће време</string>
+ <string name="revanced_sb_stats">Статистика</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Статистика привремено није доступна (API не ради)</string>
+ <string name="revanced_sb_stats_loading">Учитавање…</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock је онемогућен</string>
+ <string name="revanced_sb_stats_username">Ваше корисничко име: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Додирните овде да промените своје корисничко име</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Није могуће променити корисничко име: Статус: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Корисничко име успешно промењено</string>
+ <string name="revanced_sb_stats_reputation">Ваша репутација је <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Направили сте <b>%s</b> сегмената</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock ранг-листа</string>
+ <string name="revanced_sb_stats_saved">Сачували сте људе од <b>%s</b> сегмената</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Додирните овде да бисте видели глобалну статистику и најбоље доприносиоце</string>
+ <string name="revanced_sb_stats_saved_sum">То је <b>%s</b> њихових живота.<br>Додирните овде да бисте видели ранг-листу</string>
+ <string name="revanced_sb_stats_self_saved">Прескочили сте <b>%s</b> сегмената</string>
+ <string name="revanced_sb_stats_self_saved_sum">То је <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Ресетовати бројач прескочених сегмената?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s сати %2$s минута</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s минута %2$s секунди</string>
+ <string name="revanced_sb_stats_saved_second_format">%s секунди</string>
+ <string name="revanced_sb_color_dot_label">Боја:</string>
+ <string name="revanced_sb_color_changed">Боја промењена</string>
+ <string name="revanced_sb_color_reset">Боја ресетована</string>
+ <string name="revanced_sb_color_invalid">Неважећи кôд боје</string>
+ <string name="revanced_sb_reset_color">Ресетуј боју</string>
+ <string name="revanced_sb_reset">Ресетуј</string>
+ <string name="revanced_sb_about">О програму</string>
+ <string name="revanced_sb_about_api_sum">Податке обезбеђује SponsorBlock API. Додирните овде да бисте сазнали више и видели преузимања за друге платформе</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Лажирана верзија апликације</string>
+ <string name="revanced_spoof_app_version_summary_on">Верзија је лажирана</string>
+ <string name="revanced_spoof_app_version_summary_off">Верзија није лажирана</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Верзија апликације ће бити лажирана на старију верзију YouTube-а.\n\nОво ће променити изглед и карактеристике апликације, али може доћи до непознатих нежељених ефеката.\n\nАко се касније искључи, препоручује се да очистите податке апликације да бисте спречили грешке у корисничком интерфејсу.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Циљна верзија апликације за лажирање</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Враћа Return YouTube Dislike у Shorts видеима у режиму без архивирања</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Враћа широк мени за брзину и квалитет видеа</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Враћа картицу збирке</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Враћа стару полицу плејлисте</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Враћа стари изглед корисничког интерфејса</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Подешавање почетне странице</string>
+ <string name="revanced_start_page_entry_0">Подразумевана</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Почетна</string>
+ <string name="revanced_start_page_entry_2">Претрага</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Праћења</string>
+ <string name="revanced_start_page_entry_4">Истражи</string>
+ <string name="revanced_start_page_entry_5">Shorts</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Картица „Ви”</string>
+ <string name="revanced_start_page_entry_7">Лајковани видеи</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Историја</string>
+ <string name="revanced_start_page_entry_9">У тренду</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Онемогући наставак репродукције Shorts плејера</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shorts плејер неће наставити репродукцију при покретању апликације</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts плејер ће наставити репродукцију при покретању апликације</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Омогући кориснички интерфејс таблета</string>
+ <string name="revanced_tablet_layout_summary_on">Кориснички интерфејс таблета је омогућен</string>
+ <string name="revanced_tablet_layout_summary_off">Кориснички интерфејс таблета је онемогућен</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Објаве заједнице се не приказују у корисничком интерфејсу таблета</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Мини-плејер</string>
+ <string name="revanced_miniplayer_screen_summary">Промените стил минимизираног плејера у апликацији</string>
+ <string name="revanced_miniplayer_type_title">Тип мини-плејера</string>
+ <string name="revanced_miniplayer_type_entry_1">Оригинални</string>
+ <string name="revanced_miniplayer_type_entry_2">Телефон</string>
+ <string name="revanced_miniplayer_type_entry_3">Таблет</string>
+ <string name="revanced_miniplayer_type_entry_4">Модеран 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Модеран 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Модеран 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Сакриј дугмад за проширивање и затварање</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Дугмад за проширивање и затварање су скривена\n(превуците мини-плејер да бисте га проширили или затворили)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Дугмад за проширивање и затварање су приказана</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Сакриј подтекстове</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Подтекстови су скривени</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Подтекстови су приказани</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Сакриј дугмад за премотавање унапред и уназад</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Дугмад за премотавање унапред и уназад су скривена</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Дугмад за премотавање унапред и уназад су приказана</string>
+ <string name="revanced_miniplayer_opacity_title">Прозирност преклопа</string>
+ <string name="revanced_miniplayer_opacity_summary">Вредност непрозирности између 0-100, где је 0 прозирно</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Прозирност преклопа мини-плејера мора бити између 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Омогући екран учитавања с градијентом</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Екран учитавања ће имати позадину с градијентом</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Екран учитавања ће имати обичну позадину</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Омогући прилагођену боју траке за премотавање</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Прилагођена боја траке за премотавање је приказана</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Оригинална боја траке за премотавање је приказана</string>
+ <string name="revanced_seekbar_custom_color_value_title">Прилагођена боја траке за премотавање</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Боја траке за премотавање</string>
+ <string name="revanced_seekbar_custom_color_invalid">Неважећа вредност боје траке за премотавање. Коришћење подразумеване вредности.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Картица „Почетна”</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Картица „Праћења”</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Картица „Ви”</string>
+ <string name="revanced_alt_thumbnail_player_title">Плејлисте плејера, препоруке</string>
+ <string name="revanced_alt_thumbnail_search_title">Резултати претраге</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Оригиналне сличице</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow и оригиналне сличице</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow и захвати кадра</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Захвати кадра</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow пружа сличице за YouTube видее прикупљене од заједнице. Ове сличице су често релевантније од оних које пружа YouTube\n\n Ако је омогућено, линкови видеа ће бити послати на API сервер и никакви други подаци се неће слати. Ако видео нема DeArrow сличице, тада се приказују оригиналне сличице или сличице захвата кадра\n\nДодирните овде да бисте сазнали више о DeArrow-у</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Прикажи искачуће обавештење ако API није доступан</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Искачуће обавештење је приказано, ако DeArrow није доступан</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Искачуће обавештење није приказано, ако DeArrow није доступан</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Крајња тачка DeArrow API-ја</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL крајње тачке кеша DeArrow сличица</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Захвати кадра из видеа</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Захвати кадра се праве од почетка/средине/краја сваког видеа. Ове слике су уграђене у YouTube и не користи се ниједан спољни API</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Користи брзе захвате кадра</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Користе се захвати кадра средњег квалитета. Сличице ће се брже учитавати, али стримови уживо, необјављени или веома стари видеи могу да приказују празне сличице</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Користе се захвати кадра високог квалитета</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Време видеа за прављење захвата кадра</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Почетак видеа</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Средина видеа</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Крај видеа</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow привремено није доступан (кôд статуса: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow привремено није доступан</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Прикажи саопштења ReVanced-а</string>
+ <string name="revanced_announcements_summary_on">Саопштења су приказана при покретању</string>
+ <string name="revanced_announcements_summary_off">Саопштења нису приказана при покретању</string>
+ <string name="revanced_announcements_enabled_summary">Приказивање саопштења при покретању</string>
+ <string name="revanced_announcements_connection_failed">Неуспешно повезивање са пружаоцем саопштења</string>
+ <string name="revanced_announcements_dialog_dismiss">Одбаци</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Омогући аутоматско понављање видеа</string>
+ <string name="revanced_auto_repeat_summary_on">Аутоматско понављање видеа је омогућено</string>
+ <string name="revanced_auto_repeat_summary_off">Аутоматско понављање видеа је онемогућено</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Лажиране димензије уређаја</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Димензије уређаја су лажиране\n\nВиши квалитети видеа ће можда бити откључан, али ћете можда имати застој при репродукцији видеа, краће трајање батерије и непознате нежељене ефекте</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Димензије уређаја нису лажиране\n\nАко ово омогућите, виши квалитети видеа ће се можда откључати</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Ако ово омогућите, можда ће доћи до застоја при репродукцији видеа, краћег трајања батерије и непознатих нежељених ефеката.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Подешавања GmsCore-а</string>
+ <string name="microg_settings_summary">Подешавања за GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Заобиђи URL преусмеравања</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL преусмеравања се заобилазе</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL преусмеравања се не заобилазе</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Отвори линкове у прегледачу</string>
+ <string name="revanced_external_browser_summary_on">Отварање линкова ван апликације</string>
+ <string name="revanced_external_browser_summary_off">Отварање линкова у апликацији</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Репродукција у позадини</string>
+ <string name="revanced_background_playback_summary">Ово подешавање се може пронаћи у „Подешавања” > „У позадини”</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Уклони параметар упита за праћење</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Параметар упита за праћење је уклоњен из линкова</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Параметар упита за праћење није уклоњен из линкова</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Онемогући вибрацију при увеличавању</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Вибрација при увеличавању је онемогућена</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Вибрација при увеличавању је омогућена</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Аутоматски квалитет</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Запамти промене квалитета видеа</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Промене квалитета се примењују на све видее</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Промене квалитета се примењују само на тренутни видео</string>
+ <string name="revanced_video_quality_default_wifi_title">Подразумевани квалитет видеа на Wi-Fi мрежи</string>
+ <string name="revanced_video_quality_default_mobile_title">Подразумевани квалитет видеа на мобилним подацима</string>
+ <string name="revanced_remember_video_quality_mobile">на мобилним подацима</string>
+ <string name="revanced_remember_video_quality_wifi">на Wi-Fi мрежи</string>
+ <string name="revanced_remember_video_quality_toast">Промењен подразумевани квалитет %1$s на: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Прикажи дугме дијалога за брзину</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Дугме је приказано</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Дугме није приказано</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Прилагођене брзине репродукције</string>
+ <string name="revanced_custom_playback_speeds_summary">Додајте или промените доступне брзине репродукције</string>
+ <string name="revanced_custom_playback_speeds_invalid">Прилагођене брзине репродукције морају бити мање од %s. Коришћење подразумеваних вредности.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Неважеће прилагођене брзине репродукције. Коришћење подразумеваних вредности.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Запамти промене брзине репродукције</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Промене брзине репродукције се примењују на све видее</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Промене брзине репродукције се примењују само на тренутни видео</string>
+ <string name="revanced_playback_speed_default_title">Подразумевана брзина репродукције</string>
+ <string name="revanced_remember_playback_speed_toast">Брзина репродукције промењена на: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Врати стари мени квалитета видеа</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Стари мени квалитета видеа је приказан</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Стари мени квалитета видеа није приказан</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Омогући превлачење за премотавање</string>
+ <string name="revanced_slide_to_seek_summary_on">Превлачење за премотавање је омогућено</string>
+ <string name="revanced_slide_to_seek_summary_off">Превлачење за премотавање није омогућено</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Лажиран клијент</string>
+ <string name="revanced_spoof_client_screen_summary">Лажирање клијента да би се спречили проблеми са репродукцијом</string>
+ <string name="revanced_spoof_client_title">Лажиран клијент</string>
+ <string name="revanced_spoof_client_summary_on">Клијент је лажиран</string>
+ <string name="revanced_spoof_client_summary_off">Клијент није лажиран\n\nРепродукција видеа можда неће радити</string>
+ <string name="revanced_spoof_client_user_dialog_message">Искључивање овог подешавања можда ће изазвати проблеме са репродукцијом видеа.</string>
+ <string name="revanced_spoof_client_use_ios_title">Лажиран клијент на iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Клијент је тренутно лажиран на iOS\n\nНежељени ефекти обухватају:\n• Нема HDR видеа\n• Историја гледања можда неће радити\n• Виши квалитети видеа можда ће недостајати\n• Стримови уживо не могу да се пуштају само као аудио\n• Стримови уживо нису доступни на Android верзији 8.0</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Сличице у лажираном клијенту нису доступне (API истекао)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Сличице у лажираном клијенту привремено нису доступне: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Лажирани потпис апликације</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Лажирање потписа апликације да би се спречили проблеми с репродукцијом</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Лажирани потпис апликације</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Потпис апликације је лажиран\n\nНежељени ефекти обухватају:\n• Побољшана брзина преноса није доступна\n• Видеи се не могу преузимати\n• Нема сличица на траци за премотавање за плаћене видее</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Потпис апликације није лажиран\n\nРепродукција видеа можда неће радити</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Искључивање овог подешавања ће изазвати проблеме с репродукцијом видеа.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Лажирани потпис апликације</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Потпис пликације је лажиран\n\nНежељени ефекти обухватају:\n• Видеи у фиду немају титлове\n• Аутоматски пуштени видеи у фиду ће се појавити у историји гледања</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Потпис апликације није лажиран за видее у фиду\n\nВидеи у фиду ће се пустити на мање од 1 минута пре него што наиђу на проблеме с репродукцијом</string>
+ <string name="revanced_spoof_storyboard_title">Лажирани сториборд</string>
+ <string name="revanced_spoof_storyboard_summary_on">Сториборд је лажиран</string>
+ <string name="revanced_spoof_storyboard_summary_off">Сториборд није лажиран\n\nНежељени ефекти укључују:\n• Нема амбијенталног режима\n• Сличице на траци за премотавање су скривене</string>
+ <string name="revanced_spoof_storyboard_timeout">Лажирање сториборда привремено није доступно (API је истекао)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Лажирање сториборда привремено није доступно: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Омогући аутоматску осветљеност HDR режима</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Аутоматска осветљеност HDR режима је омогућена</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Аутоматска осветљеност HDR режима је онемогућена</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Блокирај аудио огласе</string>
+ <string name="revanced_block_audio_ads_summary_on">Аудио огласи су блокирани</string>
+ <string name="revanced_block_audio_ads_summary_off">Аудио огласи су одблокирани</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s недоступан. Огласи ће се можда приказивати. Покушајте да пређете на другу услугу за блокирање огласа у подешавањима.</string>
+ <string name="revanced_embedded_ads_service_failed">%s сервер је вратио грешку. Огласи ће се можда приказивати. Покушајте да пређете на другу услугу за блокирање огласа у подешавањима.</string>
+ <string name="revanced_block_embedded_ads_title">Блокирање уграђених видео огласа</string>
+ <string name="revanced_block_embedded_ads_entry_1">Онемогућено</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous прокси</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock прокси</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Блокирај видео огласе</string>
+ <string name="revanced_block_video_ads_summary_on">Видео огласи су блокирани</string>
+ <string name="revanced_block_video_ads_summary_off">Видео огласи су одблокирани</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">порука избрисана</string>
+ <string name="revanced_show_deleted_messages_title">Приказ избрисаних порука</string>
+ <string name="revanced_show_deleted_messages_entry_1">Не приказуј избрисане поруке</string>
+ <string name="revanced_show_deleted_messages_entry_2">Сакриј избрисане поруке иза спојлера</string>
+ <string name="revanced_show_deleted_messages_entry_3">Прикажи избрисане поруке као прецртан текст</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Аутоматски преузми бодове канала</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Бодови канала су аутоматски преузети</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Бодови канала нису аутоматски преузети</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Омогући Twitch режим отклањања грешака</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch режим отклањања грешака је омогућен (није препоручено)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch режим отклањања грешака је онемогућен</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Подешавања ReVanced-а</string>
+ <string name="revanced_ads_screen_title">Огласи</string>
+ <string name="revanced_ads_screen_summary">Подешавања блокирања огласа</string>
+ <string name="revanced_chat_screen_title">Ћаскање</string>
+ <string name="revanced_chat_screen_summary">Подешавања ћаскања</string>
+ <string name="revanced_misc_screen_title">Разно</string>
+ <string name="revanced_misc_screen_summary">Разна подешавања</string>
+ <string name="revanced_general_category_title">Општа подешавања</string>
+ <string name="revanced_other_category_title">Остала подешавања</string>
+ <string name="revanced_client_ads_category_title">Огласи на страни клијента</string>
+ <string name="revanced_surestream_ads_category_title">Огласи на страни сервера</string>
+ <string name="revanced_twitch_debug_title">Евидентирање отклањања грешака</string>
+ <string name="revanced_twitch_debug_summary_on">Евиденције отклањања грешака су омогућене</string>
+ <string name="revanced_twitch_debug_summary_off">Евиденције отклањања грешака су онемогућене</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sv-rSE/strings.xml b/src/main/resources/addresources/values-sv-rSE/strings.xml
new file mode 100644
index 0000000000..e2095549cf
--- /dev/null
+++ b/src/main/resources/addresources/values-sv-rSE/strings.xml
@@ -0,0 +1,1197 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_title">ReVanced</string>
+ <string name="revanced_settings_confirm_user_dialog_title">Vill du fortsätta?</string>
+ <string name="revanced_settings_reset">Återställ</string>
+ <string name="revanced_settings_restart_title">Uppdatera och starta om</string>
+ <string name="revanced_settings_restart">Starta om</string>
+ <string name="revanced_settings_import">Importera</string>
+ <string name="revanced_settings_import_copy">Kopiera</string>
+ <string name="revanced_settings_import_reset">ReVanced-inställningarna återställda till standard</string>
+ <string name="revanced_settings_import_success">Importerade %d inställningar</string>
+ <string name="revanced_settings_import_failure_parse">Importen misslyckades: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore är inte installerat. Installera.</string>
+ <string name="gms_core_dialog_title">Åtgärd krävs</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore har inte behörighet att köras i bakgrunden.\n\nFölj guiden \"Don\'t kill my app\" för din telefon och använd instruktionerna till din MicroG-installation.\n\nDetta krävs för att appen ska fungera.</string>
+ <string name="gms_core_dialog_open_website_text">Öppna hemsida</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">MicroG GmsCore batterioptimeringar måste inaktiveras för att förhindra problem.\n\nTryck på knappen fortsätt och inaktivera batterioptimeringar.</string>
+ <string name="gms_core_dialog_continue_text">Fortsätt</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings">ReVanced</string>
+ <string name="revanced_settings_about_links_body">Du använder ReVanced Patches version <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Anteckning</string>
+ <string name="revanced_settings_about_links_dev_body">Denna version är en pre-release och du kan uppleva oväntade problem</string>
+ <string name="revanced_settings_about_links_header">Officiella länkar</string>
+ <string name="revanced_pref_import_export_title">Importera / Exportera</string>
+ <string name="revanced_pref_import_export_summary">Importera / Exportera ReVanced-inställningar</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Om</string>
+ <string name="revanced_settings_screen_01_ads_title">Annonser</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternativa miniatyrbilder</string>
+ <string name="revanced_settings_screen_03_feed_title">Flöde</string>
+ <string name="revanced_settings_screen_04_player_title">Spelare</string>
+ <string name="revanced_settings_screen_05_general_title">Allmänt utseende</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Sökfält</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Dragkontroller</string>
+ <string name="revanced_settings_screen_11_misc_title">Övrigt</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Felsökning</string>
+ <string name="revanced_debug_screen_summary">Aktivera eller inaktivera felsökningsalternativ</string>
+ <string name="revanced_debug_title">Felsökningsloggning</string>
+ <string name="revanced_debug_summary_on">Felsökningsloggar är aktiverade</string>
+ <string name="revanced_debug_summary_off">Felsökningsloggar är inaktiverade</string>
+ <string name="revanced_debug_protobuffer_title">Logga protokollbuffert</string>
+ <string name="revanced_debug_protobuffer_summary_on">Felsökningsloggar inkluderar protobuffert</string>
+ <string name="revanced_debug_protobuffer_summary_off">Felsökningsloggar inkluderar inte protobuffert</string>
+ <string name="revanced_debug_stacktrace_title">Logga stackspår</string>
+ <string name="revanced_debug_stacktrace_summary_on">Felsökningsloggar inkluderar stackspår</string>
+ <string name="revanced_debug_stacktrace_summary_off">Felsökningsloggar inkluderar inte stackspår</string>
+ <string name="revanced_debug_toast_on_error_title">Visa ett meddelande om ett fel uppstår med ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Visa ett meddelande om fel uppstår</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Visa inget meddelande om fel uppstår</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Att stänga av felmeddelanden döljer alla felaviseringar från ReVanced.\n\nDu kommer inte att meddelas om några oväntade händelser.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Inaktivera glow som / prenumerationsknapp</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Gilla och prenumerera knappen kommer inte att lysa när det nämns</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Gilla och prenumerera knappen lyser när det nämns</string>
+ <string name="revanced_hide_gray_separator_title">Dölj den gråa avgränsaren</string>
+ <string name="revanced_hide_gray_separator_summary_on">De gråa separatorerna är dolda</string>
+ <string name="revanced_hide_gray_separator_summary_off">De gråa separatorerna är synliga</string>
+ <string name="revanced_hide_channel_watermark_title">Dölj kanalens vattenstämpel</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Vattenstämpeln är dold</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Vattenstämpeln är synlig</string>
+ <string name="revanced_hide_horizontal_shelves_title">Dölj horisontella hyllor</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Hyllorna är synliga</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Dölj knappen \'Gå med\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Knappen är dold</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Knappen är synlig</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Dölj hyllan \'För dig\' i kanalsidan</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Hyllan är dold</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Hyllan är synlig</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Dölj knappen \'Meddela mig\'</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Knappen är dold</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Knappen är synlig</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Dölj \'Folk tittade också på\' rekommendationer</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Rekommendationer är dolda</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Rekommendationer är synlig</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Dölj knappen \"Visa mer\"</string>
+ <string name="revanced_hide_show_more_button_summary_on">Knappen är dold</string>
+ <string name="revanced_hide_show_more_button_summary_off">Knappen är synlig</string>
+ <string name="revanced_hide_timed_reactions_title">Dölj tidsinställda reaktioner</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Tidsinställda reaktioner är dolda</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Tidsinställda reaktioner är synliga</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Dölj sökresultatshyllans sidhuvud</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Hyllans sidhuvud är dolt</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Hyllans sidhuvud är synliga</string>
+ <string name="revanced_hide_channel_guidelines_title">Dölj kanalens riktlinjer</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanalriktlinjerna är dolda</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanalriktlinjer är synliga</string>
+ <string name="revanced_hide_expandable_chip_title">Dölj utökningsbart chip under videor</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Utökningsbara marker är dolda</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Expanderbara marker är synliga</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Dölj sidfot för videokvalitet</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Videokvalitets sidfot är dold</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Videokvalitetsmenyns sidfot är synlig</string>
+ <string name="revanced_hide_community_posts_title">Dölj inlägg i communityn</string>
+ <string name="revanced_hide_community_posts_summary_on">Gemenskapsinlägg är dolda</string>
+ <string name="revanced_hide_community_posts_summary_off">Gemenskapsinlägg är synliga</string>
+ <string name="revanced_hide_compact_banner_title">Dölj kompakta banners</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakta banners är dolda</string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakta banners är synliga</string>
+ <string name="revanced_hide_movies_section_title">Dölj filmsektion</string>
+ <string name="revanced_hide_movies_section_summary_on">Filmsektionen är dold</string>
+ <string name="revanced_hide_movies_section_summary_off">Filmsektionen är synlig</string>
+ <string name="revanced_hide_feed_survey_title">Dölj flödesundersökningar</string>
+ <string name="revanced_hide_feed_survey_summary_on">Flödesundersökningar är dolda</string>
+ <string name="revanced_hide_feed_survey_summary_off">Flödesundersökningar är synliga</string>
+ <string name="revanced_hide_community_guidelines_title">Dölj gemenskapens riktlinjer</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Gemenskapens riktlinjer är dolda</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Gemenskapens riktlinjer är synliga</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Dölj prenumeranternas gemensamma riktlinjer</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Abonnenter community riktlinjer är dolda</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Prenumeranternas gemenskaps riktlinjer är synliga</string>
+ <string name="revanced_hide_channel_member_shelf_title">Dölj kanalmedlemshyllan</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanalmedlemmens hylla är dold</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanalmedlemmens hylla är synliga</string>
+ <string name="revanced_hide_emergency_box_title">Dölj nödboxar</string>
+ <string name="revanced_hide_emergency_box_summary_on">Nödlådor är dolda</string>
+ <string name="revanced_hide_emergency_box_summary_off">Kritiska rutor är synliga</string>
+ <string name="revanced_hide_info_panels_title">Dölj infopaneler</string>
+ <string name="revanced_hide_info_panels_summary_on">Infopanelerna är dolda</string>
+ <string name="revanced_hide_info_panels_summary_off">Infopanelerna är synliga</string>
+ <string name="revanced_hide_medical_panels_title">Dölj medicinska paneler</string>
+ <string name="revanced_hide_medical_panels_summary_on">Medicinska paneler är dolda</string>
+ <string name="revanced_hide_medical_panels_summary_off">Medicinska paneler är synliga</string>
+ <string name="revanced_hide_channel_bar_title">Dölj kanalfält</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanalfältet är dolt</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanalfältet är synligt</string>
+ <string name="revanced_hide_playables_title">Dölj Playables</string>
+ <string name="revanced_hide_playables_summary_on">Playables är dolda</string>
+ <string name="revanced_hide_playables_summary_off">Spelbara är synliga</string>
+ <string name="revanced_hide_quick_actions_title">Dölj snabbåtgärder i helskärm</string>
+ <string name="revanced_hide_quick_actions_summary_on">Snabba åtgärder är dolda</string>
+ <string name="revanced_hide_quick_actions_summary_off">Snabbåtgärder är synliga</string>
+ <string name="revanced_hide_related_videos_title">Dölj relaterade videor i snabba åtgärder</string>
+ <string name="revanced_hide_related_videos_summary_on">Relaterade videor är dolda</string>
+ <string name="revanced_hide_related_videos_summary_off">Relaterade videor är synliga</string>
+ <string name="revanced_hide_image_shelf_title">Dölj bildhyllan i sökresultat</string>
+ <string name="revanced_hide_image_shelf_summary_on">Bildens hylla är dold</string>
+ <string name="revanced_hide_image_shelf_summary_off">Bildhyllan är synlig</string>
+ <string name="revanced_hide_latest_posts_ads_title">Dölj senaste inlägg</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Senaste inläggen är dolda</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Senaste inlägg är synliga</string>
+ <string name="revanced_hide_mix_playlists_title">Dölj spellistor</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Mix spellistor är dolda</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Blandade spellistor är synliga</string>
+ <string name="revanced_hide_artist_cards_title">Dölj artistkort</string>
+ <string name="revanced_hide_artist_cards_summary_on">Konstnärskort är dolda</string>
+ <string name="revanced_hide_artist_cards_summary_off">Artistkort är synliga</string>
+ <string name="revanced_hide_chips_shelf_title">Dölj hylla för flis</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips hylla är dold</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chipshyllan är synlig</string>
+ <string name="revanced_hide_attributes_section_title">Dölj attributsektion</string>
+ <string name="revanced_hide_attributes_section_summary_on">\'Utvalda platser\', Spel- och musiksektioner är dolda</string>
+ <string name="revanced_hide_attributes_section_summary_off">\'Utvalda platser\', Spel- och musiksektioner visas</string>
+ <string name="revanced_hide_chapters_section_title">Dölj kapitelsektion</string>
+ <string name="revanced_hide_chapters_section_summary_on">Kapitel sektionen är dold</string>
+ <string name="revanced_hide_chapters_section_summary_off">Kapitel sektionen visas</string>
+ <string name="revanced_hide_podcast_section_title">Dölj sektionen \'Utforska podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">\'Utforska podcasten\' sektionen är dold</string>
+ <string name="revanced_hide_podcast_section_summary_off">\'Utforska podcasten\' sektionen visas</string>
+ <string name="revanced_hide_info_cards_section_title">Dölj sektion för infokort</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Sektionen för infokort är dold</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Informationskortssektionen är synlig</string>
+ <string name="revanced_hide_transcript_section_title">Dölj avskrift sektion</string>
+ <string name="revanced_hide_transcript_section_summary_on">Avskrift sektionen är dold</string>
+ <string name="revanced_hide_transcript_section_summary_off">Transkriptsektionen är synlig</string>
+ <string name="revanced_hide_description_components_screen_title">Videobeskrivning</string>
+ <string name="revanced_hide_description_components_screen_summary">Dölj eller visa videobeskrivningskomponenter</string>
+ <string name="revanced_custom_filter_screen_title">Anpassat filter</string>
+ <string name="revanced_custom_filter_screen_summary">Dölj komponenter med anpassade filter</string>
+ <string name="revanced_custom_filter_title">Aktivera anpassat filter</string>
+ <string name="revanced_custom_filter_summary_on">Anpassat filter är aktiverat</string>
+ <string name="revanced_custom_filter_summary_off">Anpassat filter är inaktiverat</string>
+ <string name="revanced_custom_filter_strings_title">Anpassat filter</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Lista över sökvägsbyggare för att filtrera separerade med ny rad</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Det anpassade filtret är ogiltigt: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Dölj innehåll i nyckelord</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Dölj sök- och matningsvideor med hjälp av sökordsfilter</string>
+ <string name="revanced_hide_keyword_content_home_title">Dölj hemvideor med sökord</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Videor i fliken hem filtreras efter sökord</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Videor i fliken hem filtreras inte efter sökord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Dölj prenumerationsvideor med sökord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Videor i fliken prenumerationer filtreras med sökord</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Videor i fliken prenumerationer filtreras inte efter sökord</string>
+ <string name="revanced_hide_keyword_content_search_title">Dölj sökresultat med nyckelord</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Sökresultaten filtreras med sökord</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Sökresultaten filtreras inte med sökord</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Nyckelord att dölja</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Nyckelord och fraser att dölja, separerade med nya rader\n\nOrd med versaler i mitten måste anges med höljet (dvs. iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Om sökordsfiltrering</string>
+ <string name="revanced_hide_keyword_content_about_summary">Hem/Prenumeration/Sökresultat filtreras för att dölja innehåll som matchar sökordsfraser\n\nBegränsningar\n• Vissa shorts kanske inte är dolda\n• Vissa UI-komponenter kanske inte är dolda\n• Att söka efter ett sökord kan inte visa några resultat</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ogiltigt sökord. Kan inte använda \'%s\' som filter</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ogiltigt sökord. \'%1$s\' är mindre än %2$d tecken</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Nyckelord \'$s\' kommer att dölja alla videor</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Dölj allmänna annonser</string>
+ <string name="revanced_hide_general_ads_summary_on">Allmänna annonser är dolda</string>
+ <string name="revanced_hide_general_ads_summary_off">Allmänna annonser är synliga</string>
+ <string name="revanced_hide_fullscreen_ads_title">Dölj fullskärmsannonser</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Helskärmsannonser är dolda\n\nDen här funktionen är endast tillgänglig för äldre enheter</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Fullskärmsannonser är synliga</string>
+ <string name="revanced_hide_buttoned_ads_title">Dölj knappannonser</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Knappannonser är dolda</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Knappannonser är synliga</string>
+ <string name="revanced_hide_paid_promotion_label_title">Dölj betald kampanjetikett</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Betald kampanjetikett är dold</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Betald kampanjetikett är synlig</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Dölj självsponsrade kort</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Självsponsrade kort är dolda</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Självsponsrade kort är synliga</string>
+ <string name="revanced_hide_products_banner_title">Dölj banner för att visa produkter</string>
+ <string name="revanced_hide_products_banner_summary_on">Banner är dold</string>
+ <string name="revanced_hide_products_banner_summary_off">Banner är synlig</string>
+ <string name="revanced_hide_shopping_links_title">Dölj shoppinglänkar i videobeskrivning</string>
+ <string name="revanced_hide_shopping_links_summary_on">Shoppinglänkar är dolda</string>
+ <string name="revanced_hide_shopping_links_summary_off">Shoppinglänkar är synliga</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Dölj knappen \'Besök butik\' på kanalsidor</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Knappen är dold</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Knappen är synlig</string>
+ <string name="revanced_hide_web_search_results_title">Dölj sökresultat på webben</string>
+ <string name="revanced_hide_web_search_results_summary_on">Sökresultat på webben är dolda</string>
+ <string name="revanced_hide_web_search_results_summary_off">Sökresultat på webben är synliga</string>
+ <string name="revanced_hide_merchandise_banners_title">Dölj reklambanners</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Reklambanners är dolda</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Reklambanners är synliga</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Dölj fullskärmsannonser fungerar endast med äldre enheter</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Dölj YouTube Premium-kampanjer</string>
+ <string name="revanced_hide_get_premium_summary_on">YouTube Premium-kampanjer under videospelare är dolda</string>
+ <string name="revanced_hide_get_premium_summary_off">YouTube Premium-kampanjer under videospelare är synliga</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Dölj videoannonser</string>
+ <string name="revanced_hide_video_ads_summary_on">Videoannonser är dolda</string>
+ <string name="revanced_hide_video_ads_summary_off">Videoannonser är synliga</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Webbadress kopierad till urklipp</string>
+ <string name="revanced_share_copy_url_timestamp_success">Webbadress med tidsstämpel kopierad</string>
+ <string name="revanced_copy_video_url_title">Visa knappen för kopiering av video-URL</string>
+ <string name="revanced_copy_video_url_summary_on">Knappen är synlig. Tryck för att kopiera videowebbadressen. Tryck och håll ner för att kopiera videowebbadressen med tidsstämpel</string>
+ <string name="revanced_copy_video_url_summary_off">Knappen är dold</string>
+ <string name="revanced_copy_video_url_timestamp_title">Visa knappen för kopiering av tidsstämpel</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Knappen är synlig. Tryck för att kopiera videowebbadressen med tidsstämpel. Tryck och håll ner för att kopiera videon utan tidsstämpel</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Knappen är dold</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Ta bort dialogrutan för diskretion</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Dialog kommer att tas bort</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Dialoger är synliga</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Detta kringgår inte åldersbegränsningen. Det accepterar bara det automatiskt.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Externa nedladdningar</string>
+ <string name="revanced_external_downloader_screen_summary">Inställningar för att använda en extern nerladdare</string>
+ <string name="revanced_external_downloader_title">Visa extern nerladdningsknapp</string>
+ <string name="revanced_external_downloader_summary_on">Nerladdningsknappen visas i spelaren</string>
+ <string name="revanced_external_downloader_summary_off">Nerladdningsknappen visas inte i spelaren</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Åsidosätt knappen för hämtning</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Nedladdningsknappen öppnar din externa nerladdare</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Nedladdningsknappen öppnar infödda in-app downloader</string>
+ <string name="revanced_external_downloader_name_title">Paketets namn för nedladdning</string>
+ <string name="revanced_external_downloader_name_summary">Paketnamn för din installerade externa nedladdningsapp, till exempel NewPipe eller Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s är inte installerat. Installera det.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Inaktivera exakt sök-gest</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Gest är inaktiverad</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Gest är aktiverad</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Aktivera sökfältsknapp</string>
+ <string name="revanced_seekbar_tapping_summary_on">Seekbar tryck är aktiverat</string>
+ <string name="revanced_seekbar_tapping_summary_off">Seekbar tryck är inaktiverat</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Aktivera ljusstyrkegest</string>
+ <string name="revanced_swipe_brightness_summary_on">Svep för ljusstyrka är aktiverat</string>
+ <string name="revanced_swipe_brightness_summary_off">Svep för ljusstyrka är inaktiverat</string>
+ <string name="revanced_swipe_volume_title">Aktivera volymgest</string>
+ <string name="revanced_swipe_volume_summary_on">Volymsvepning är aktiverad</string>
+ <string name="revanced_swipe_volume_summary_off">Volymsvepning är inaktiverad</string>
+ <string name="revanced_swipe_press_to_engage_title">Aktivera gester för att svepa</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Press-till-svep är aktiverat</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Press-till-svepning är inaktiverad</string>
+ <string name="revanced_swipe_haptic_feedback_title">Aktivera haptisk feedback</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Haptisk feedback är aktiverad</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Haptisk feedback är inaktiverad</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Spara och återställ ljusstyrkan</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Spara och återställ ljusstyrkan när du avslutar eller går in i fullskärm</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Spara inte och återställ ljusstyrkan när du avslutar eller går in i fullskärm</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Aktivera automatisk ljusstyrkegest</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Genom att svepa ner till det lägsta värdet av gesten för ljusstyrka aktiveras automatisk ljusstyrka</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Att svepa ner till det lägsta värdet aktiverar inte automatisk ljusstyrka</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Automatiskt</string>
+ <string name="revanced_swipe_overlay_timeout_title">Tidsgräns för svepöverlagring</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Mängden millisekunder överlappningen är synlig</string>
+ <string name="revanced_swipe_text_overlay_size_title">Storlek på svep överlagrad text</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Textstorleken för att svepa överlägg</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Svep bakgrundssynlighet</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Synligheten av svep överlägg bakgrund</string>
+ <string name="revanced_swipe_threshold_title">Svep magnitud tröskel</string>
+ <string name="revanced_swipe_threshold_summary">Mängden tröskel för att svepa ska uppstå</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Inaktivera automatisk bildtext</string>
+ <string name="revanced_auto_captions_summary_on">Auto-bildtexter är inaktiverade</string>
+ <string name="revanced_auto_captions_summary_off">Automatisk bildtext är aktiverad</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Åtgärd knappar</string>
+ <string name="revanced_hide_buttons_screen_summary">Dölj eller visa knappar under videor</string>
+ <string name="revanced_hide_like_dislike_button_title">Dölj gilla och ogilla</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Knapparna gilla och ogilla är dolda</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Knapparna gilla och ogilla är synliga</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Dölj dela</string>
+ <string name="revanced_hide_share_button_summary_on">Knappen dela är dold</string>
+ <string name="revanced_hide_share_button_summary_off">Knappen dela är synlig</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Dölj rapport</string>
+ <string name="revanced_hide_report_button_summary_on">Rapporteringsknappen är dold</string>
+ <string name="revanced_hide_report_button_summary_off">Rapporteringsknappen är synlig</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Dölj remix</string>
+ <string name="revanced_hide_remix_button_summary_on">Remix-knappen är dold</string>
+ <string name="revanced_hide_remix_button_summary_off">Remix-knappen är synlig</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Dölj nerladdning</string>
+ <string name="revanced_hide_download_button_summary_on">Nerladdningsknappen är dold</string>
+ <string name="revanced_hide_download_button_summary_off">Nerladdningsknappen är synlig</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Dölj tack</string>
+ <string name="revanced_hide_thanks_button_summary_on">Tack-knappen är dold</string>
+ <string name="revanced_hide_thanks_button_summary_off">Tackknappen är synlig</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">Klipp knappen är dold</string>
+ <string name="revanced_hide_clip_button_summary_off">Klippknappen är synlig</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Dölj Spara i spellista</string>
+ <string name="revanced_hide_playlist_button_summary_on">Spara till spellistan knappen är dold</string>
+ <string name="revanced_hide_playlist_button_summary_off">Knappen spara till spellista är synlig</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Dölj knappen för automatisk uppspelning</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Knappen för automatisk uppspelning är dold</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Knappen för automatisk uppspelning är synlig</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Dölj bildtextknapp</string>
+ <string name="revanced_hide_captions_button_summary_on">Bildtext-knappen är dold</string>
+ <string name="revanced_hide_captions_button_summary_off">Bildtextsknappen är synlig</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Dölj cast-knapp</string>
+ <string name="revanced_hide_cast_button_summary_on">Cast-knappen är dold</string>
+ <string name="revanced_hide_cast_button_summary_off">Cast-knappen är synlig</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">Dölj eller ändra knappar i navigeringsfältet</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Dölj hem</string>
+ <string name="revanced_hide_home_button_summary_on">Knappen hem är dold</string>
+ <string name="revanced_hide_home_button_summary_off">Hemknappen är synlig</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Dölj shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">Knappen shorts är dold</string>
+ <string name="revanced_hide_shorts_button_summary_off">Knappen shorts är synlig</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Dölj skapa</string>
+ <string name="revanced_hide_create_button_summary_on">Knappen skapa är dold</string>
+ <string name="revanced_hide_create_button_summary_off">Knappen skapa är synlig</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Dölj prenumerationer</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Knappen prenumerationer är dold</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Knappen prenumerationer är synlig</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Växla Skapa med aviseringar</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Skapa knappen byts med\n\nknappen \n \n Notera: Aktivera detta döljer även videoannonser med tvång</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Knappen Skapa är inte bytt med aviseringsknappen</string>
+ <string name="revanced_hide_navigation_button_labels_title">Dölj navigeringsknapp etiketter</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etiketter är dolda</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etiketter visas</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">Dölj eller visa spelarflyout menyobjekt</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Dölj textningar</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Textmenyn är dold</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Bildtextmenyn är synlig</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Dölj ytterligare inställningar</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Ytterligare inställningsmeny är dold</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Menyn ytterligare inställning är synlig</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Dölj loop-video</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Loop videomenyn är dold</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Slingmenyn för videon är synlig</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Dölj omgivningsläge</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Omgivningsläge menyn är dold</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Menyn för omgivningsläge är synligt</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Dölj hjälp & feedback</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Hjälp & återkopplingsmenyn är dold</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Menyn för hjälp och återkoppling är synlig</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Dölj uppspelningshastighet</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Uppspelningshastighet menyn är dold</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Menyn för uppspelningshastigheten är synlig</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Dölj mer information</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Mer info menyn är dold</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Menyn mer info är synlig</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Dölj låsskärm</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Låsskärmsmenyn är dold</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Låsskärmmenyn är synlig</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Dölj ljudspår</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Ljudspårsmenyn är dold</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Ljudspårsmenyn är synlig</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Dölj klocka i VR</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Titta i VR-menyn är dold</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Titta i VR-menyn är synlig</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Dölj tidigare & nästa videoknappar</string>
+ <string name="revanced_hide_player_buttons_summary_on">Knappar är dolda</string>
+ <string name="revanced_hide_player_buttons_summary_off">Knappar är synliga</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Dölj albumkort</string>
+ <string name="revanced_hide_album_cards_summary_on">Skivkorten är dolda</string>
+ <string name="revanced_hide_album_cards_summary_off">Albumkort är synliga</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Kommentarer</string>
+ <string name="revanced_comments_screen_summary">Dölj eller visa kommentarskomponenter</string>
+ <string name="revanced_hide_comments_by_members_header_title">Dölj \'Kommentarer från medlemmar\' header</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Kommentarer från medlemmar\' huvudet är dolt</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Kommentarer från medlemmar\' header visas</string>
+ <string name="revanced_hide_comments_section_title">Dölj kommentarsfältet</string>
+ <string name="revanced_hide_comments_section_summary_on">Sektionen för kommentarer är dold</string>
+ <string name="revanced_hide_comments_section_summary_off">Sektionen för kommentarer visas</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Dölj knappen \'Skapa en kort\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Skapa en kort\' knappen är dold</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Knappen \'Skapa en kort\' visas</string>
+ <string name="revanced_hide_comments_preview_comment_title">Dölj förhandsgranskningskommentar</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Förhandsgranska kommentaren är dold</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Förhandsgranska kommentar är synlig</string>
+ <string name="revanced_hide_comments_thanks_button_title">Dölj tack-knappen</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Tack-knappen är dold</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Tackknappen är synlig</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Dölj tidsstämplar och emoji-knappar</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Tidsstämpel och emoji-knappar är dolda</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Knappar för tidsstämpel och emoji visas</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Dölj crowdfunding-rutan</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Crowdfunding-rutan är dold</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Crowdfunding-rutan är synlig</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Dölj slutskärmskort</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Slutskärmskort är dolda</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Slutskärmskort är synliga</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filterfält</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Dölj eller visa filterfältet i flödet, sök och relaterade videor</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Dölj i flöde</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Dold i flödet</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Visas i flöde</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Dölj i sökningen</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Dold i sökningen</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Visas i sök</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Dölj i relaterade videor</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Dold i relaterade videor</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Visas i relaterade videor</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Dölj flytande mikrofonknapp</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Mikrofon knapp dold</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Mikrofonknappen är synlig</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Inaktivera omgivningsläge i helskärm</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Omgivningsläge inaktiverat</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Omgivningsläge aktiverat</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Dölj infokort</string>
+ <string name="revanced_hide_info_cards_summary_on">Informationskort är dolda</string>
+ <string name="revanced_hide_info_cards_summary_off">Informationskort är synliga</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Inaktivera animationer med rullande nummer</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Rullande nummer är inte animerade</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Rullande nummer är animerade</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Dölj sökfältet i videospelare</string>
+ <string name="revanced_hide_seekbar_summary_on">Sökfältet för videospelare är dolt</string>
+ <string name="revanced_hide_seekbar_summary_off">Sökfältet för videospelaren är synlig</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Dölj sökfältet i videominiatyrer</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Miniatyrsökningsfältet är dolt</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Miniatyrens sökfält är synlig</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Dölj Shorts i hemmatningsflödet</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts i hemmatningsflödet är dolda</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts i hemflödet är synliga</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Dölj Shorts i prenumerationsflöde</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts i prenumerationsflödet är dolda</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts i prenumerationsflödet är synliga</string>
+ <string name="revanced_hide_shorts_search_title">Dölj Shorts i sökresultat</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts i sökresultat är dolda</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts i sökresultat är synliga</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Dölj knappen gå med</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Knappen gå med är dold</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Knappen gå med är synlig</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Dölj prenumerationsknappen</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Prenumerationsknappen är dold</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Prenumerationsknappen är synlig</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Dölj pausade överlappningsknappar</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Pausade överlappningsknappar är dolda</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Pausade överlappningsknappar är synliga</string>
+ <string name="revanced_hide_shorts_shop_button_title">Dölj butiksknapp</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Knappen butik är dold</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Knappen butik är synlig</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Dölj supertack-knappen</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Supertack-knappen är dold</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Supertack-knappen visas</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Dölj taggade produkter</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Taggade produkter är dolda</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Taggade produkter är synliga</string>
+ <string name="revanced_hide_shorts_location_label_title">Dölj platsetikett</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Platsetiketten är dold</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Platsetikett är synlig</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Dölj spara ljud till spellistknappen</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Spara ljud till spellistan är dolt</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Spara ljud till spellistan är synlig</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Dölj sökförslag</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Sökförslag är dolda</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Sökförslag är synliga</string>
+ <string name="revanced_hide_shorts_like_button_title">Dölj knappen gilla</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Knappen gilla är dold</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Knappen gilla är synlig</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Dölj knappen ogilla</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Knappen ogilla är dold</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Knappen ogilla är synlig</string>
+ <string name="revanced_hide_shorts_comments_button_title">Dölj kommentarsknapp</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Knappen för kommentarer är dold</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Knappen för kommentarer visas</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Dölj remix-knappen</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Remix-knappen är dold</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Remix-knappen visas</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Dölj dela-knappen</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Knappen dela är dold</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Knappen dela är synlig</string>
+ <string name="revanced_hide_shorts_info_panel_title">Dölj infopanel</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Info-panelen är dold</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Infopanel visas</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Dölj kanalfält</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanalfältet är dolt</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanalfältet är synligt</string>
+ <string name="revanced_hide_shorts_video_title_title">Dölj videotitel</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Titeln är dold</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Titeln visas</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Dölj ljudmetadata-etikett</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Metadata-etikett är dold</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Metadata etikett visas</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Dölj full videolänk-etikett</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Etiketten för videolänk är dold</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Etikett för videolänk visas</string>
+ <string name="revanced_hide_shorts_sound_button_title">Dölj ljudknapp</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Ljudknappen är dold</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Ljudknappen visas</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Dölj navigeringsfältet</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Navigeringsfältet är dolt</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Navigeringsfältet visas</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Inaktivera föreslagen video slutskärm</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Föreslagna videor kommer att inaktiveras</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Föreslagen video kommer att visas</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Dölj videotidsstämpel</string>
+ <string name="revanced_hide_timestamp_summary_on">Tidsstämpel är dold</string>
+ <string name="revanced_hide_timestamp_summary_off">Tidsstämpel visas</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Dölj popup-paneler för spelare</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Spelare popup-paneler är dolda</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Spelarens popup-paneler visas</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Överlagring av spelarens opacitet</string>
+ <string name="revanced_player_overlay_opacity_summary">Opacitetsvärde mellan 0-100, där 0 är transparent</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Överlagrad spelaropacitet måste vara mellan 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Dold</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Dislikes inte tillgängligt (API timed out)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Gillar inte tillgänglig (status %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Dislikes inte tillgängligt (klient-API-gräns nådd)</string>
+ <string name="revanced_ryd_failure_generic">Tycker inte tillgängligt (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Ladda om video för att rösta med Return YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">Ogilla är synliga</string>
+ <string name="revanced_ryd_enable_summary_off">Ogilla visas inte</string>
+ <string name="revanced_ryd_shorts_title">Visa ogillande på Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Tycker inte om visas på Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Missgillen som visas på Shorts\n\nBegränsning: Missgillen visas kanske inte i inkognitoläge</string>
+ <string name="revanced_ryd_shorts_summary_off">Tycker inte om dolda på Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Gillar inte i procent</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Tycker inte som procentsats</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Tycker inte som nummer</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt som knapp</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Gilla knappen stylad för minsta bredd</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Gilla knappen stylas för bästa utseende</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Visa ett meddelande om API inte är tillgängligt</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Visa ett meddelande om Return YouTube Dislike inte är tillgängligt</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Visa inget meddelande om Return YouTube Dislike inte är tillgängligt</string>
+ <string name="revanced_ryd_about">Om</string>
+ <string name="revanced_ryd_attribution_summary">Data tillhandahålls av Return YouTube Tycker inte om API. Tryck här för att läsa mer</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">ReturnYouTubeDislike API-statistik för denna enhet</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API-svarstid, genomsnittlig</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API svarstid, minimum</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API svarstid, maximalt</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API svarstid, senaste videon</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Tycker inte om temporärt tillgänglig - API-gräns för klientens hastighet i kraft</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API hämtar röster, antal samtal</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Inga nätverkssamtal gjorda</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d nätverksanrop gjorda</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API hämtar röster, antal timeouts</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Inga nätverkssamtal avbröts</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d nätverksanrop avbröts</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Begränsningar för API-klientens hastighet</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Inga gränser för klientpriser påträffade</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Gräns för kundfrekvens påträffad %d gånger</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d millisekunder</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Aktivera brett sökfält</string>
+ <string name="revanced_wide_searchbar_summary_on">Brett sökfält är aktiverat</string>
+ <string name="revanced_wide_searchbar_summary_off">Brett sökfält är inaktiverat</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Återställ gamla miniatyrer i sökfältet</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Seekbar miniatyrer visas ovanför sökfältet</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Seekbar miniatyrer visas i helskärm</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Aktivera SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock är en crowd-sourced system för att hoppa över irriterande delar av YouTube-videor</string>
+ <string name="revanced_sb_appearance_category">Utseende</string>
+ <string name="revanced_sb_enable_voting">Visa röstknapp</string>
+ <string name="revanced_sb_enable_voting_sum_on">Segmentets röstknapp är synligt</string>
+ <string name="revanced_sb_enable_voting_sum_off">Segmentets röstknapp visas inte</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Använd kompakt hopp-knapp</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Skippa knappen stylad för minsta bredd</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Skippa knappen stylad för bästa utseende</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Dölj automatiskt hoppa över knappen</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Hoppa över knappen döljer efter några sekunder</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Skippa knappen som visas för hela segmentet</string>
+ <string name="revanced_sb_general_skiptoast">Visa ett meddelande när du hoppar över automatiskt</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Visa ett meddelande när ett segment hoppas över automatiskt. Tryck här för att se ett exempel</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Meddelande visas inte. Tryck här för att se ett exempel</string>
+ <string name="revanced_sb_general_time_without">Visa videons längd utan segment</string>
+ <string name="revanced_sb_general_time_without_sum_on">Videolängd minus alla segment, som visas i parentes bredvid den fullständiga videolängden</string>
+ <string name="revanced_sb_general_time_without_sum_off">Hela videons längd visas</string>
+ <string name="revanced_sb_create_segment_category">Skapa nya segment</string>
+ <string name="revanced_sb_enable_create_segment">Visa skapa ny knapp för segment</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Skapa ny knapp för segmentet visas</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Skapa ny segmentknapp visas inte</string>
+ <string name="revanced_sb_general_adjusting">Justera nytt steg för segment</string>
+ <string name="revanced_sb_general_adjusting_sum">Antal millisekunder knapparna för tidsjustering rör sig när nya segment skapas</string>
+ <string name="revanced_sb_general_adjusting_invalid">Värdet måste vara ett positivt tal</string>
+ <string name="revanced_sb_guidelines_preference_title">Visa riktlinjer</string>
+ <string name="revanced_sb_guidelines_preference_sum">Riktlinjer innehåller regler och tips för att skapa nya segment</string>
+ <string name="revanced_sb_guidelines_popup_title">Följ riktlinjerna</string>
+ <string name="revanced_sb_guidelines_popup_content">Läs riktlinjerna för SponsorBlock innan du skapar nya segment</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Redan läst</string>
+ <string name="revanced_sb_guidelines_popup_open">Visa mig</string>
+ <string name="revanced_sb_general">Allmänt</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Visa ett meddelande om API inte är tillgängligt</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Visa ett meddelande om SponsorBlock inte är tillgängligt</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Visa inte ett meddelande inte om SponsorBlock inte är tillgängligt</string>
+ <string name="revanced_sb_general_skipcount">Aktivera spårning av hoppa över antalet</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Låt SponsorBlock leaderboarden veta hur mycket tid som sparas. Ett meddelande skickas till leaderboarden varje gång ett segment hoppas över</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Tracking av Skip count är inte aktiverat</string>
+ <string name="revanced_sb_general_min_duration">Minsta segmentlängd</string>
+ <string name="revanced_sb_general_min_duration_sum">Segment kortare än detta värde (i sekunder) kommer inte att visas eller hoppas över</string>
+ <string name="revanced_sb_general_uuid">Ditt privata användar-id</string>
+ <string name="revanced_sb_general_uuid_sum">Detta bör hållas privat. Detta är som ett lösenord och bör inte delas med någon. Om någon har det här, kan de utge sig för att vara dig</string>
+ <string name="revanced_sb_general_uuid_invalid">Privat användar-id måste vara minst 30 tecken långt</string>
+ <string name="revanced_sb_general_api_url">Ändra API URL</string>
+ <string name="revanced_sb_general_api_url_sum">Adressen SponsorBlock använder för att ringa samtal till servern</string>
+ <string name="revanced_sb_api_url_reset">API URL återställning</string>
+ <string name="revanced_sb_api_url_invalid">API-URL är ogiltig</string>
+ <string name="revanced_sb_api_url_changed">API URL ändrad</string>
+ <string name="revanced_sb_settings_ie">Importera/exportera inställningar</string>
+ <string name="revanced_sb_settings_copy">Kopiera</string>
+ <string name="revanced_sb_settings_ie_sum">Din SponsorBlock JSON-konfiguration som kan importeras/exporteras till ReVanced och andra SponsorBlock plattformar</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Din SponsorBlock JSON-konfiguration som kan importeras/exporteras till ReVanced och andra SponsorBlock plattformar. Detta inkluderar ditt privata användar-id. Se till att dela detta klokt</string>
+ <string name="revanced_sb_settings_import_successful">Inställningar har importerats</string>
+ <string name="revanced_sb_settings_import_failed">Det gick inte att importera: %s</string>
+ <string name="revanced_sb_settings_export_failed">Det gick inte att exportera: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Dina inställningar innehåller ett privat sponsorblock-användarnamn.\n\nDitt användar-id är som ett lösenord och det bör aldrig delas.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Visa inte igen</string>
+ <string name="revanced_sb_diff_segments">Ändra segmentbeteende</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Betald marknadsföring, betalda hänvisningar och direktannonser. Inte för självmarknadsföring eller gratis rop till orsaker/skapare/hemsidor/produkter som de gillar</string>
+ <string name="revanced_sb_segments_selfpromo">Obetald/självbefodran</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Liknande \"Sponsor\" med undantag för obetald eller självkampanj. Inkluderar avsnitt om varor, donationer eller information om vem de samarbetade med</string>
+ <string name="revanced_sb_segments_interaction">Interaktionspåminnelse (Prenumerera)</string>
+ <string name="revanced_sb_segments_interaction_sum">En kort påminnelse om att gilla, prenumerera eller följa dem mitt i innehållet. Om den är lång eller om något specifikt, bör den istället vara under självfrämjande</string>
+ <string name="revanced_sb_segments_highlight">Markera</string>
+ <string name="revanced_sb_segments_highlight_sum">Den del av videon som de flesta letar efter</string>
+ <string name="revanced_sb_segments_intro">Paus/introduktionsanimation</string>
+ <string name="revanced_sb_segments_intro_sum">Ett intervall utan faktiskt innehåll. Kan vara en paus, statisk ram eller upprepande animation. Inkluderar inte övergångar som innehåller information</string>
+ <string name="revanced_sb_segments_outro">Slutkort/krediter</string>
+ <string name="revanced_sb_segments_outro_sum">Krediter eller när YouTube slutkort visas. Inte för slutsatser med information</string>
+ <string name="revanced_sb_segments_preview">Förhandsgranska/återskapa/krok</string>
+ <string name="revanced_sb_segments_preview_sum">Samling av klipp som visar vad som kommer upp eller vad som hände i videon eller i andra videor i en serie, där all information upprepas någon annanstans</string>
+ <string name="revanced_sb_segments_filler">Ämnesavvikelse/Skämt</string>
+ <string name="revanced_sb_segments_filler_sum">Tangentiella scener läggs endast till för fyllmedel eller humor som inte krävs för att förstå det huvudsakliga innehållet i videon. Inkluderar inte segment som tillhandahåller kontext eller bakgrundsinformation</string>
+ <string name="revanced_sb_segments_nomusic">Musik: Icke-musiksektionen</string>
+ <string name="revanced_sb_segments_nomusic_sum">Endast för användning i musikvideor. Sektioner av musikvideor utan musik, som inte redan omfattas av en annan kategori</string>
+ <string name="revanced_sb_skip_button_compact">Hoppa</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Markera</string>
+ <string name="revanced_sb_skip_button_sponsor">Hoppa över sponsor</string>
+ <string name="revanced_sb_skip_button_selfpromo">Hoppa över kampanjerbjudande</string>
+ <string name="revanced_sb_skip_button_interaction">Hoppa över interagera</string>
+ <string name="revanced_sb_skip_button_highlight">Hoppa över för att markera</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Hoppa över intro</string>
+ <string name="revanced_sb_skip_button_intro_middle">Hoppa över paus</string>
+ <string name="revanced_sb_skip_button_intro_end">Hoppa över paus</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Hoppa över förhandsgranskning</string>
+ <string name="revanced_sb_skip_button_preview_middle">Hoppa över förhandsgranskning</string>
+ <string name="revanced_sb_skip_button_preview_end">Hoppa över sammanfattning</string>
+ <string name="revanced_sb_skip_button_filler">Hoppa över fyllmedel</string>
+ <string name="revanced_sb_skip_button_nomusic">Hoppa över icke-musik</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Hoppa över segment</string>
+ <string name="revanced_sb_skipped_sponsor">Hoppade över sponsor</string>
+ <string name="revanced_sb_skipped_selfpromo">Hoppade över självmarknadsföring</string>
+ <string name="revanced_sb_skipped_interaction">Överhoppad irriterande påminnelse</string>
+ <string name="revanced_sb_skipped_highlight">Hoppas över för att markera</string>
+ <string name="revanced_sb_skipped_intro_beginning">Hoppade över intro</string>
+ <string name="revanced_sb_skipped_intro_middle">Överhoppad paus</string>
+ <string name="revanced_sb_skipped_intro_end">Överhoppad paus</string>
+ <string name="revanced_sb_skipped_outro">Hoppade över outro</string>
+ <string name="revanced_sb_skipped_preview_beginning">Hoppade över förhandsgranskning</string>
+ <string name="revanced_sb_skipped_preview_middle">Hoppade över förhandsgranskning</string>
+ <string name="revanced_sb_skipped_preview_end">Överhoppad sammanfattning</string>
+ <string name="revanced_sb_skipped_filler">Hoppade över ämnesavvikelse</string>
+ <string name="revanced_sb_skipped_nomusic">Hoppade över icke-musik segment</string>
+ <string name="revanced_sb_skipped_unsubmitted">Hoppade över oinskickat segment</string>
+ <string name="revanced_sb_skipped_multiple_segments">Hoppade över flera segment</string>
+ <string name="revanced_sb_skip_automatically">Hoppa över automatiskt</string>
+ <string name="revanced_sb_skip_automatically_once">Hoppa över automatiskt en gång</string>
+ <string name="revanced_sb_skip_showbutton">Visa en hoppknapp</string>
+ <string name="revanced_sb_skip_seekbaronly">Visa i sökfältet</string>
+ <string name="revanced_sb_skip_ignore">Inaktivera</string>
+ <string name="revanced_sb_submit_failed_invalid">Det går inte att skicka segment: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock är tillfälligt nere</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Det går inte att skicka segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Det gick inte att skicka segment.\nBetygsätt Limited (för många från samma användare eller IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Kan inte skicka segmentet: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Kunde inte skicka segmentet\nDet finns redan</string>
+ <string name="revanced_sb_submit_succeeded">Segmentet har skickats</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock är inte tillgängligt (API timed out)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock tillfälligt inte tillgängligt (status %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock är tillfälligt inte tillgängligt</string>
+ <string name="revanced_sb_vote_failed_timeout">Det går inte att rösta för segmentet (API-tiden har gått ut)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Det gick inte att rösta för segment (status: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Det går inte att rösta för segment: %s</string>
+ <string name="revanced_sb_vote_upvote">Upprösta</string>
+ <string name="revanced_sb_vote_downvote">Nedrösta</string>
+ <string name="revanced_sb_vote_category">Ändra kategori</string>
+ <string name="revanced_sb_vote_no_segments">Det finns inga segment att rösta på</string>
+ <string name="revanced_sb_new_segment_choose_category">Välj segmentkategori</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategorin är inaktiverad i inställningar. Aktivera kategori för att skicka.</string>
+ <string name="revanced_sb_new_segment_title">Nytt Sponsorblock-segment</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Vill du ange %1$02d:%2$02d:%3$03d som början eller slutet av ett nytt segment?</string>
+ <string name="revanced_sb_new_segment_mark_start">start</string>
+ <string name="revanced_sb_new_segment_mark_end">slut</string>
+ <string name="revanced_sb_new_segment_now">nu</string>
+ <string name="revanced_sb_new_segment_time_start">Tid då segmentet börjar på</string>
+ <string name="revanced_sb_new_segment_time_end">Tid då segmentet slutar på</string>
+ <string name="revanced_sb_new_segment_confirm_title">Är tiderna korrekta?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segmentet är från\n\n%1$s\ntill\n%2$s\n\n(%3$s)\n\nRedo att skicka?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Start måste vara innan slutet</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Markera två platser i tidsfältet först</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Förhandsgranska segmentet och se till att det hoppar över smidigt</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Redigera tid för segment manuellt</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Vill du ändra tidpunkten för starten eller slutet av segmentet?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Ogiltig tid angiven</string>
+ <string name="revanced_sb_stats">Statistik</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Statistik tillfälligt inte tillgänglig (API är ner)</string>
+ <string name="revanced_sb_stats_loading">Laddar...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock är inaktiverad</string>
+ <string name="revanced_sb_stats_username">Ditt användarnamn: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Tryck här för att ändra ditt användarnamn</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Det gick inte att ändra användarnamn: Status: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Användarnamnet har ändrats</string>
+ <string name="revanced_sb_stats_reputation">Ditt rykte är <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Du har skapat <b>%s</b> segment</string>
+ <string name="revanced_sb_stats_saved_zero">Sponsra topplista</string>
+ <string name="revanced_sb_stats_saved">Du har räddat personer från <b>%s</b> segment</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Tryck här för att se den globala statistiken och de bästa bidragsgivarna</string>
+ <string name="revanced_sb_stats_saved_sum">Det är <b>%s</b> av deras liv.<br>Tryck här för att se leaderboarden</string>
+ <string name="revanced_sb_stats_self_saved">Du har hoppat över <b>%s</b> segment</string>
+ <string name="revanced_sb_stats_self_saved_sum">Det är <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Återställ överhoppade segment räknare?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s timmar %2$s minuter</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s minuter %2$s sekunder</string>
+ <string name="revanced_sb_stats_saved_second_format">%s sekunder</string>
+ <string name="revanced_sb_color_dot_label">Färg:</string>
+ <string name="revanced_sb_color_changed">Färg ändrad</string>
+ <string name="revanced_sb_color_reset">Färg återställning</string>
+ <string name="revanced_sb_color_invalid">Ogiltig färgkod</string>
+ <string name="revanced_sb_reset_color">Återställ färg</string>
+ <string name="revanced_sb_reset">Återställ</string>
+ <string name="revanced_sb_about">Om</string>
+ <string name="revanced_sb_about_api_sum">Data tillhandahålls av SponsorBlock API. Tryck här för att läsa mer och se nedladdningar för andra plattformar</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Spoof app-version</string>
+ <string name="revanced_spoof_app_version_summary_on">Version förfalskad</string>
+ <string name="revanced_spoof_app_version_summary_off">Version inte förfalskad</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Appversionen kommer att förfalskas till en äldre version av YouTube.\n\nDetta kommer att ändra appens utseende och funktioner, men okända biverkningar kan förekomma.\n\nOm senare stängs av rekommenderas att rensa appdata för att förhindra UI-buggar.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Spoof app-versionsmål</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Återställ RYD på Shorts inkognitoläge</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Återställ videons hastighet & kvalitetsmeny</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Återställ biblioteksfliken</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Återställ gamla spellisthyllor</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Återställ gamla användargränssnitt</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Ställ in startsida</string>
+ <string name="revanced_start_page_entry_0">Standard</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Hem</string>
+ <string name="revanced_start_page_entry_2">Sök</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Prenumerationer</string>
+ <string name="revanced_start_page_entry_4">Utforska</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Du flik</string>
+ <string name="revanced_start_page_entry_7">Gillade videor</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Historik</string>
+ <string name="revanced_start_page_entry_9">Trendande</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Inaktivera återupptagande av Shorts spelare</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shorts spelare kommer inte att återupptas vid appstart</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts spelare kommer att återupptas vid appstart</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Aktivera surfplattans layout</string>
+ <string name="revanced_tablet_layout_summary_on">Surfplattans layout är aktiverad</string>
+ <string name="revanced_tablet_layout_summary_off">Surfplattans layout är inaktiverad</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Gemenskapsinlägg visas inte på surfplattans layouter</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Minispelare</string>
+ <string name="revanced_miniplayer_screen_summary">Ändra stilen på appen minimerad spelare</string>
+ <string name="revanced_miniplayer_type_title">Miniplayer typ</string>
+ <string name="revanced_miniplayer_type_entry_1">Ursprunglig</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Surfplatta</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Dölj expandera och stäng knappar</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Knappar är dolda\n(svep minispelare för att expandera eller stänga)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Expandera och stäng knappar visas</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Dölj undertexter</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Undertexter är dolda</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Undertexter visas</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Dölj hoppa över framåt- och bakknapparna</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Hoppa framåt och tillbaka är dolda</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Hoppa framåt och tillbaka visas</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">Opacitetsvärde mellan 0-100, där 0 är transparent</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Miniplayer overlay opacitet måste vara mellan 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Aktivera gradient laddar skärmen</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Laddar skärmen kommer att ha en lutande bakgrund</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Laddar skärmen kommer att ha en solid bakgrund</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Aktivera anpassad sökfält färg</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Anpassad sökfält färg visas</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Original sökfält färg visas</string>
+ <string name="revanced_seekbar_custom_color_value_title">Anpassad sökfält färg</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Färgen på sökfältet</string>
+ <string name="revanced_seekbar_custom_color_invalid">Ogiltigt sökfältets färgvärde. Använder standardvärde.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Hem flik</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Flik för prenumeration</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Du flik</string>
+ <string name="revanced_alt_thumbnail_player_title">Spelarlistor, rekommendationer</string>
+ <string name="revanced_alt_thumbnail_search_title">Sökresultat</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Original miniatyrer</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & fångar fortfarande</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Fortfarande fångar</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow ger publik-sourcade miniatyrer för YouTube-videor. Dessa miniatyrer är ofta mer relevanta än de som tillhandahålls av YouTube\n\nOm aktiverad, video-URL:er kommer att skickas till API-servern och inga andra data skickas. Om en video inte har DeArrow miniatyrer, sedan visas originalet eller fortfarande fångarna\n\nTryck här för att läsa mer om DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Visa ett meddelande om API inte är tillgängligt</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Visa ett meddelande om DeArrow inte är tillgängligt</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Visa inte ett meddelande om DeArrow inte är tillgängligt</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL till DeArrow miniatyrbilds slutpunkt</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Fortfarande videoinspelningar</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Fortfarande tas bilder från början/mitten/slutet av varje video. Dessa bilder är inbyggda i YouTube och ingen extern API används</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Använd snabbt stillbilder</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Använda medelhög kvalitet fortfarande fångar. Miniatyrer kommer att ladda snabbare, men levande strömmar, outgivna eller mycket gamla videor kan visa tomma miniatyrer</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Använda hög kvalitet fortfarande fångar</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Videotid att ta stillbilder från</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Början av videon</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Mitten av video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Slutet av videon</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow tillfälligt inte tillgängligt (status %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow tillfälligt inte tillgänglig</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Visa vansade notiser</string>
+ <string name="revanced_announcements_summary_on">Meddelanden visas vid start</string>
+ <string name="revanced_announcements_summary_off">Meddelanden visas inte vid start</string>
+ <string name="revanced_announcements_enabled_summary">Visa notiser vid start</string>
+ <string name="revanced_announcements_connection_failed">Det gick inte att ansluta till meddelandeleverantören</string>
+ <string name="revanced_announcements_dialog_dismiss">Avfärda</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Aktivera automatisk upprepning</string>
+ <string name="revanced_auto_repeat_summary_on">Automatisk upprepning är aktiverad</string>
+ <string name="revanced_auto_repeat_summary_off">Automatisk upprepning är inaktiverad</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Enhetsdimensioner för Spoof</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Enhetsdimensioner förfalskade\n\nHögre videokvaliteter kan vara upplåsta men du kan uppleva uppspelning av videouppspelning, sämre batteritid och okända biverkningar</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Enhetsdimensioner som inte är förfalskade\n\nAktivering av detta kan låsa upp högre videokvaliteter</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Att aktivera detta kan orsaka uppspelning av videouppspelning, sämre batteritid och okända biverkningar.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore inställningar</string>
+ <string name="microg_settings_summary">Inställningar för GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Bypass URL omdirigerar</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL-omdirigeringar förbigås</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL-omdirigeringar förbigås inte</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Öppna länkar i webbläsaren</string>
+ <string name="revanced_external_browser_summary_on">Öppna länkar externt</string>
+ <string name="revanced_external_browser_summary_off">Öppna länkar i appen</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Uppspelning av bakgrund</string>
+ <string name="revanced_background_playback_summary">Denna inställning kan hittas i Inställningar -> Bakgrund</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Ta bort spårningsfrågeparameter</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Spårnings frågeparameter har tagits bort från länkar</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Spårnings frågeparameter har inte tagits bort från länkar</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Inaktivera zoomhaptik</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Haptikerna är inaktiverade</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Haptikerna är aktiverade</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Automatisk kvalitet</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Kom ihåg förändringar i videokvaliteten</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Kvalitetsändringar gäller för alla videor</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Kvalitetsförändringar gäller endast för den aktuella videon</string>
+ <string name="revanced_video_quality_default_wifi_title">Standard videokvalitet på Wi-Fi-nätverk</string>
+ <string name="revanced_video_quality_default_mobile_title">Standard videokvalitet på mobilt nätverk</string>
+ <string name="revanced_remember_video_quality_mobile">mobil</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Ändrade standardkvalitet %1$s till: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Visa hastighetsdialogruta knapp</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Knappen är synlig</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Knappen är dold</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Anpassade uppspelningshastigheter</string>
+ <string name="revanced_custom_playback_speeds_summary">Lägg till eller ändra tillgängliga uppspelningshastigheter</string>
+ <string name="revanced_custom_playback_speeds_invalid">Anpassade hastigheter måste vara mindre än %s. Använda standardvärden.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Ogiltig anpassad uppspelningshastighet. Använda standardvärden.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Kom ihåg ändringar i uppspelningshastighet</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Ändring av uppspelningshastighet gäller för alla videor</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Ändring av uppspelningshastighet gäller endast för den aktuella videon</string>
+ <string name="revanced_playback_speed_default_title">Standarduppspelningshastighet</string>
+ <string name="revanced_remember_playback_speed_toast">Ändrade standardhastigheten till: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Återställ gamla videokvalitetsmenyn</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Gammal videokvalitetsmeny visas</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Gamla videokvalitetsmenyn visas inte</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Aktivera glid för att söka</string>
+ <string name="revanced_slide_to_seek_summary_on">Glid för att söka är aktiverat</string>
+ <string name="revanced_slide_to_seek_summary_off">Glid för att söka är inaktiverat</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Spoof klient</string>
+ <string name="revanced_spoof_client_screen_summary">Spoof klienten för att förhindra uppspelningsproblem</string>
+ <string name="revanced_spoof_client_title">Spoof klient</string>
+ <string name="revanced_spoof_client_summary_on">Klienten är förfalskad</string>
+ <string name="revanced_spoof_client_summary_off">Klienten är inte förfalskad\n\nVideouppspelning kanske inte fungerar</string>
+ <string name="revanced_spoof_client_user_dialog_message">Att stänga av den här inställningen kan orsaka videouppspelningsproblem.</string>
+ <string name="revanced_spoof_client_use_ios_title">Spoof klient till iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Klienten är för närvarande förfalskad till iOS\n\nBiverkningar inkluderar:\n• Ingen HDR-video\n• Titta på historiken fungerar kanske inte\n• Högre videokvaliteter kan saknas\n• Livesändningar kan inte spelas upp som ljud endast\n• Livesändningar inte tillgängliga på Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Klienten är för närvarande förfalskad till Android VR\n\nBiverkningar inkluderar:\n• Ingen HDR-video\n• Barnvideor spelar inte upp\n• Pausade videor kan slumpmässigt återuppta\n• Lågkvalitativa Shorts seekbar miniatyrer\n• Nedladdningsknappen är alltid dold\n• Slutskärmskort är alltid dolda</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Spoof klientminiatyrer är inte tillgängliga (API gick ut)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Miniatyrer för Spoof klientminiatyrer tillfälligt inte tillgängliga: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ <string name="revanced_spoof_signature_verification_screen_title">Förfalska appens signatur</string>
+ <string name="revanced_spoof_signature_verification_screen_summary">Förfalska appens signatur för att förhindra uppspelningsproblem</string>
+ <string name="revanced_spoof_signature_verification_enabled_title">Förfalska appens signatur</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_on">Appens signatur förfalskad\n\nNackdelar:\n• Förbättrad bithastighet är inte tillgänglig\n• Videor kan inte laddas ner\n• Inga sökfältsminiatyrer för betalda videor</string>
+ <string name="revanced_spoof_signature_verification_enabled_summary_off">Appens signatur inte förfalskad\n\nVideouppspelning kanske inte fungerar</string>
+ <string name="revanced_spoof_signature_verification_enabled_user_dialog_message">Att stänga av den här inställningen kommer att orsaka videouppspelningsproblem.</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_title">Förfalska appens signatur i flödet</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_on">Appens signatur förfalskad\n\nNackdelar:\n• Flödesvideos saknas undertexter\n• Automatiskt uppspelade flödesvideos kommer att visas i din tittarhistorik</string>
+ <string name="revanced_spoof_signature_in_feed_enabled_summary_off">Appens signatur inte förfalskad för flödesvideor\n\nFlödesvideos spelas upp i mindre än 1 minut innan uppspelningsproblem uppstår</string>
+ <string name="revanced_spoof_storyboard_title">Förfalska storyboard</string>
+ <string name="revanced_spoof_storyboard_summary_on">Storyboard förfalskad</string>
+ <string name="revanced_spoof_storyboard_summary_off">Storyboard är inte förfalskad\n\nNackdelar:\n• Inget omgivningsläge\n• Sökfältsminiatyrer är dolda</string>
+ <string name="revanced_spoof_storyboard_timeout">Förfalska storyboard tillfälligt inte tillgänglig (API timed out)</string>
+ <string name="revanced_spoof_storyboard_io_exception">Förfalska storyboard tillfälligt inte tillgänglig: %s</string>
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ <string name="revanced_hdr_auto_brightness_title">Aktivera automatisk HDR-ljusstyrka</string>
+ <string name="revanced_hdr_auto_brightness_summary_on">Automatisk HDR-ljusstyrka är aktiverad</string>
+ <string name="revanced_hdr_auto_brightness_summary_off">Automatisk HDR-ljusstyrka är inaktiverad</string>
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Blockera ljudannonser</string>
+ <string name="revanced_block_audio_ads_summary_on">Ljudannonser är blockerade</string>
+ <string name="revanced_block_audio_ads_summary_off">Ljudannonser är inte blockerade</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s är inte tillgänglig. Annonser kan visa. Försök att byta till en annan annonsblockstjänst i inställningarna.</string>
+ <string name="revanced_embedded_ads_service_failed">%s server returnerade ett fel. Annonser kan visa. Försök att byta till en annan annonsblockstjänst i inställningarna.</string>
+ <string name="revanced_block_embedded_ads_title">Blockera inbäddade videoannonser</string>
+ <string name="revanced_block_embedded_ads_entry_1">Inaktiverad</string>
+ <string name="revanced_block_embedded_ads_entry_2">Lysande proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Blockera videoannonser</string>
+ <string name="revanced_block_video_ads_summary_on">Videoannonser är blockerade</string>
+ <string name="revanced_block_video_ads_summary_off">Videoannonser är inte blockerade</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">meddelande borttaget</string>
+ <string name="revanced_show_deleted_messages_title">Visa borttagna meddelanden</string>
+ <string name="revanced_show_deleted_messages_entry_1">Visa inte borttagna meddelanden</string>
+ <string name="revanced_show_deleted_messages_entry_2">Dölj borttagna meddelanden bakom en spoiler</string>
+ <string name="revanced_show_deleted_messages_entry_3">Visa borttagna meddelanden som överstruken text</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Gör anspråk på kanalpoäng automatiskt</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanalpoäng hämtas automatiskt</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanalpoäng hämtas inte automatiskt</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Aktivera felsökningsläge för Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Felsökningsläget på Twitch är aktiverat (rekommenderas inte)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch-felsökningsläget är inaktiverat</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced-inställningar</string>
+ <string name="revanced_ads_screen_title">Annonser</string>
+ <string name="revanced_ads_screen_summary">Inställningar för annonsblockering</string>
+ <string name="revanced_chat_screen_title">Chatt</string>
+ <string name="revanced_chat_screen_summary">Chattinställningar</string>
+ <string name="revanced_misc_screen_title">Övrigt</string>
+ <string name="revanced_misc_screen_summary">Övriga inställningar</string>
+ <string name="revanced_general_category_title">Allmänna inställningar</string>
+ <string name="revanced_other_category_title">Andra inställningar</string>
+ <string name="revanced_client_ads_category_title">Annonser på klientsidan</string>
+ <string name="revanced_surestream_ads_category_title">Server-side surestream annonser</string>
+ <string name="revanced_twitch_debug_title">Felsökningsloggning</string>
+ <string name="revanced_twitch_debug_summary_on">Felsökningsloggar är aktiverade</string>
+ <string name="revanced_twitch_debug_summary_off">Felsökningsloggar är inaktiverade</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-sw-rKE/strings.xml b/src/main/resources/addresources/values-sw-rKE/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-sw-rKE/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ta-rIN/strings.xml b/src/main/resources/addresources/values-ta-rIN/strings.xml
new file mode 100644
index 0000000000..028359ad40
--- /dev/null
+++ b/src/main/resources/addresources/values-ta-rIN/strings.xml
@@ -0,0 +1,271 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">நீங்கள் தொடர விரும்புகிறீரா?</string>
+ <string name="revanced_settings_reset">மறுஅமை</string>
+ <string name="revanced_settings_restart_title">புதுப்பித்து மீண்டும் துவங்கு</string>
+ <string name="revanced_settings_restart">மீண்டும் துவங்கு</string>
+ <string name="revanced_settings_import">இறக்கு</string>
+ <string name="revanced_settings_import_copy">நகலெடு</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">இதைப் பற்றி</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">இதைப் பற்றி</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">தோற்றம்</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">ஏற்றுகிறது...</string>
+ <string name="revanced_sb_reset">மறுஅமை</string>
+ <string name="revanced_sb_about">இதைப் பற்றி</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">இயல்புநிலை</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">முடக்கப்பட்டது</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-te-rIN/strings.xml b/src/main/resources/addresources/values-te-rIN/strings.xml
new file mode 100644
index 0000000000..dcb05006ed
--- /dev/null
+++ b/src/main/resources/addresources/values-te-rIN/strings.xml
@@ -0,0 +1,263 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">గురించి</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">గురించి</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">స్వరూపం</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">లోడ్ అవుతుంది...</string>
+ <string name="revanced_sb_about">గురించి</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">రద్దు చేయబడింది</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-th-rTH/strings.xml b/src/main/resources/addresources/values-th-rTH/strings.xml
new file mode 100644
index 0000000000..445d279271
--- /dev/null
+++ b/src/main/resources/addresources/values-th-rTH/strings.xml
@@ -0,0 +1,332 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">รีเซ็ต</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">เกี่ยวกับ</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">ปัดเพื่อควบคุม</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_summary_on">ปุ่มแคสต์ซ่อนอยู่</string>
+ <string name="revanced_hide_cast_button_summary_off">ปุ่มแคสต์แสดงอยู่</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_summary_on">ปุ่ม Shorts ถูกซ่อนอยู่</string>
+ <string name="revanced_hide_shorts_button_summary_off">ปุ่ม Shorts แสดงอยู่</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_summary_on">บัตรข้อมูลซ่อนอยู่</string>
+ <string name="revanced_hide_info_cards_summary_off">บัตรข้อมูลแสดงแล้ว</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">ซ่อน</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">เกี่ยวกับ</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">เปิดใช้งาน SponsorBlock</string>
+ <string name="revanced_sb_appearance_category">หน้าตา</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_guidelines_preference_title">ดูหลักเกณฑ์</string>
+ <string name="revanced_sb_guidelines_popup_already_read">อ่านแล้ว</string>
+ <string name="revanced_sb_guidelines_popup_open">แสดงให้ฉันดู</string>
+ <string name="revanced_sb_general">ทั่วไป</string>
+ <string name="revanced_sb_general_min_duration">ระยะเวลาขั้นต่ำของเซ็กเมนต์</string>
+ <string name="revanced_sb_general_uuid_sum">สิ่งนี้จะต้องบันทึกเป็ส่วนตัว เช่นเดียวกับรหัสผ่าน และไม่ควรให้คนอื่นมองเห็น หากเปิดเผยออกไปคนอื่นสามารถสวมรอยเป็นคุณได้</string>
+ <string name="revanced_sb_general_api_url">เปลี่ยน URL ของ API</string>
+ <string name="revanced_sb_api_url_reset">API URL เปลื่ยนเป็นค่าเริ่มต้นแล้ว</string>
+ <string name="revanced_sb_api_url_changed">API URL ถูกเปลื่ยนแล้ว</string>
+ <string name="revanced_sb_settings_ie">การตั้งค่า นำเข้า/ส่งออก</string>
+ <string name="revanced_sb_segments_sponsor">สปอนเซอร์</string>
+ <string name="revanced_sb_segments_selfpromo">ไม่ได้จ่ายชำระ/โปรโมทตนเอง</string>
+ <string name="revanced_sb_segments_interaction">แจ้งเตือนการกด (ติดตาม)</string>
+ <string name="revanced_sb_segments_intro">แอนิเมชั่นช่วงพัก/ช่วงต้น</string>
+ <string name="revanced_sb_segments_outro">ฉากจบ/เครดิต</string>
+ <string name="revanced_sb_segments_filler">ฟิลเลอร์แทนเจนต์/เรื่องตลก</string>
+ <string name="revanced_sb_segments_nomusic">เพลง: ไม่พบเพลง</string>
+ <string name="revanced_sb_skip_button_unsubmitted">ข้ามส่วนนี้</string>
+ <string name="revanced_sb_skipped_sponsor">ข้ามสปอนเซอร์แล้ว</string>
+ <string name="revanced_sb_skipped_selfpromo">ข้ามการโปรโมทตัวเองแล้ว</string>
+ <string name="revanced_sb_skipped_interaction">ข้ามการแจ้งเตือนที่น่ารำคาญแล้ว</string>
+ <string name="revanced_sb_skipped_intro_beginning">ข้ามอินโทรแล้ว</string>
+ <string name="revanced_sb_skipped_outro">ข้ามเอ้าท์โทรแล้ว</string>
+ <string name="revanced_sb_skipped_preview_beginning">ข้ามตัวอย่างแล้ว</string>
+ <string name="revanced_sb_skipped_preview_middle">ข้ามตัวอย่างแล้ว</string>
+ <string name="revanced_sb_skipped_filler">ข้ามการคั่นแล้ว</string>
+ <string name="revanced_sb_skipped_nomusic">ข้ามช่วงไม่มีเพลงแล้ว</string>
+ <string name="revanced_sb_skipped_unsubmitted">ข้ามส่วนที่ไม่ได้รับการยืนยันแล้ว</string>
+ <string name="revanced_sb_skip_automatically">ข้ามอัตโนมัติ</string>
+ <string name="revanced_sb_skip_showbutton">แสดงปุ่มกดข้าม</string>
+ <string name="revanced_sb_skip_ignore">ปิดการใช้งาน</string>
+ <string name="revanced_sb_submit_failed_duplicate">ส่งส่วนไม่ได้ \nมีอยู่แล้ว</string>
+ <string name="revanced_sb_submit_succeeded">ส่งคำขอของคุณสำเร็จ</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_vote_upvote">โหวตขึ้น</string>
+ <string name="revanced_sb_vote_downvote">โหวตลง</string>
+ <string name="revanced_sb_vote_category">เปลี่ยนหมวดหมู่</string>
+ <string name="revanced_sb_vote_no_segments">ไม่มีส่วนใดจะให้โหวต</string>
+ <string name="revanced_sb_new_segment_choose_category">กรุณาเลือกหมวดหมู่ของส่วน</string>
+ <string name="revanced_sb_new_segment_title">SponsorBlockส่วนใหม่</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">ตั้ง %1$02d:%2$02d:%3$03d เป็นเวลาเริ่มต้นเวลาจบในส่วนใหม่</string>
+ <string name="revanced_sb_new_segment_mark_start">เริ่มต้น</string>
+ <string name="revanced_sb_new_segment_mark_end">จบ</string>
+ <string name="revanced_sb_new_segment_now">ขณะนี้</string>
+ <string name="revanced_sb_new_segment_time_start">เวลาที่เริ่มต้นส่วนนี้</string>
+ <string name="revanced_sb_new_segment_time_end">เวลาที่จบส่วนนี้</string>
+ <string name="revanced_sb_new_segment_confirm_title">เวลานี้ถูกต้องไหม?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_locations_first">กำหนดจุดบนเส้นเวลาก่อน</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">แก้ไขส่วนแบบมือ</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">คุณต้องการแก้ไขจุดเริ่มต้นและจุดจบของส่วนนี้ไหม?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">ค่าเวลาที่ให้มาผิดพลาด</string>
+ <string name="revanced_sb_stats">สถิติ</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">กำลังโหลด...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock ถูกปิดการใช้งาน</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">ไม่สามารถเปลื่ยนชื่อ: สถานะ: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">เปลื่ยนชื่อเรียบร้อยแล้ว</string>
+ <string name="revanced_sb_color_changed">เปลื่ยนสีแล้ว</string>
+ <string name="revanced_sb_color_reset">สีเปลื่ยนเป็นค่าเริ่มต้นแล้ว</string>
+ <string name="revanced_sb_reset">รีเซ็ต</string>
+ <string name="revanced_sb_about">เกี่ยวกับ</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">ค่าเริ่มต้น</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">Dismiss</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">ปิดการใช้งานอยู่</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-tl-rPH/strings.xml b/src/main/resources/addresources/values-tl-rPH/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-tl-rPH/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-tr-rTR/strings.xml b/src/main/resources/addresources/values-tr-rTR/strings.xml
new file mode 100644
index 0000000000..950eea224c
--- /dev/null
+++ b/src/main/resources/addresources/values-tr-rTR/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Devam etmek istiyor musunuz?</string>
+ <string name="revanced_settings_reset">Sıfırla</string>
+ <string name="revanced_settings_restart_title">Yenile ve yeniden başlat</string>
+ <string name="revanced_settings_restart">Yeniden başlat</string>
+ <string name="revanced_settings_import">İçe aktar</string>
+ <string name="revanced_settings_import_copy">Kopyala</string>
+ <string name="revanced_settings_import_reset">ReVanced ayarları varsayılanlara sıfırlandı</string>
+ <string name="revanced_settings_import_success">%d ayar içe aktarıldı</string>
+ <string name="revanced_settings_import_failure_parse">İçe aktarılamadı: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore yüklü değil. Yükleyin.</string>
+ <string name="gms_core_dialog_title">Eylem gerekiyor</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore\'nin arka planda çalışma izni yok.\n\nCihazınız için \"Don\'t kill my app\" kılavuzunu takip edin, ve yönergeleri MicroG GmsCore için uygulayın.\n\nBu, uygulamanın çalışması için gereklidir.</string>
+ <string name="gms_core_dialog_open_website_text">Websitesini aç</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Sorunları önlemek için MicroG GmsCore pil optimizasyonları devre dışı bırakılmalıdır.\n\n\"Devam et\" tuşuna tıklayın ve pil optimizasyonlarını devre dışı bırakın.</string>
+ <string name="gms_core_dialog_continue_text">Devam et</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">ReVanced Patches <i>%s</i> sürümünü kullanıyorsunuz</string>
+ <string name="revanced_settings_about_links_dev_header">Not</string>
+ <string name="revanced_settings_about_links_dev_body">Bu bir ön-sürümdür ve beklenmeyen sorunlar yaşayabilirsiniz</string>
+ <string name="revanced_settings_about_links_header">Resmi bağlantılar</string>
+ <string name="revanced_pref_import_export_title">İçe / Dışa aktar</string>
+ <string name="revanced_pref_import_export_summary">ReVanced ayarlarını içe / dışa aktar</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Hakkında</string>
+ <string name="revanced_settings_screen_01_ads_title">Reklamlar</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Alternatif kapak fotoğrafları</string>
+ <string name="revanced_settings_screen_03_feed_title">Akış</string>
+ <string name="revanced_settings_screen_04_player_title">Oynatıcı</string>
+ <string name="revanced_settings_screen_05_general_title">Genel düzen</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Zaman çubuğu</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Kaydırma kontrolleri</string>
+ <string name="revanced_settings_screen_11_misc_title">Çeşitli</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Debugging</string>
+ <string name="revanced_debug_screen_summary">Debugging seçeneklerini etkinleştir veya devre dışı bırak</string>
+ <string name="revanced_debug_title">Debug logları</string>
+ <string name="revanced_debug_summary_on">Debug logları etkin</string>
+ <string name="revanced_debug_summary_off">Debug logları devre dışı</string>
+ <string name="revanced_debug_protobuffer_title">Protocol buffer\'ın logunu tut</string>
+ <string name="revanced_debug_protobuffer_summary_on">Debug logları proto bufffer\'ı içeriyor</string>
+ <string name="revanced_debug_protobuffer_summary_off">Debug logları proto buffer\'ı içermiyor</string>
+ <string name="revanced_debug_stacktrace_title">Stack traces\'in logunu tut</string>
+ <string name="revanced_debug_stacktrace_summary_on">Debug logları stack traces\'i içeriyor</string>
+ <string name="revanced_debug_stacktrace_summary_off">Debug logları stack traces\'i içermiyor</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced hatasında tost bildirimi göster</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Hata oluştuğunda tost bildirimi gösteriliyor</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Hata oluştuğunda tost bildirimi gösterilmiyor</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Hata tost bildirimlerini gizlemek bütün ReVanced hata bildirimlerini gizler.\n\nBeklenmeyen playlar hakkında bilgilendirilmeyeceksiniz.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Beğen / abone ol düğmesi parlamasını devre dışı bırak</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Beğen ve abone ol düğmesi bahsedildiğinde parlamayacak</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Beğen ve abone ol düğmesi bahsedildiğinde parlayacak</string>
+ <string name="revanced_hide_gray_separator_title">Gri ayırıcıları gizle</string>
+ <string name="revanced_hide_gray_separator_summary_on">Gri ayırıcılar gizleniyor</string>
+ <string name="revanced_hide_gray_separator_summary_off">Gri ayırıcılar gösteriliyor</string>
+ <string name="revanced_hide_channel_watermark_title">Kanal filigranını gizle</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Filigran gizleniyor</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Filigran gösteriliyor</string>
+ <string name="revanced_hide_horizontal_shelves_title">Yatay rafları gizle</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Şunlar gibi raflar gizli:\n• Son dakika haberleri\n• İzlemeye devam edin\n• Daha fazla kanal keşfet\n• Alışveriş\n• Tekrar izleyin</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Raflar gösteriliyor </string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">\'Katıl\' butonunu gizle</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Buton gizleniyor</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Buton gösteriliyor</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Kanal sayfasındaki \'Sizin için\' rafını gizle</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Raf gizleniyor</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Raf gösteriliyor</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">\'Hatırlatma oluştur\' düğmesini gizle</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Buton gizleniyor</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Buton gösteriliyor</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">\'İnsanlar şunu da izledi\' önerilerini gizle</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Öneriler gizleniyor</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Öneriler gösteriliyor</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">\'Daha fazla göster\' butonunu gizle</string>
+ <string name="revanced_hide_show_more_button_summary_on">Buton gizleniyor</string>
+ <string name="revanced_hide_show_more_button_summary_off">Buton gösteriliyor</string>
+ <string name="revanced_hide_timed_reactions_title">Süreli tepkileri gizle</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Süreli tepkiler gizleniyor</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Süreli tepkiler gösteriliyor </string>
+ <string name="revanced_hide_search_result_shelf_header_title">Arama sonuçları raf başlığını gizle</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Raf başlığı gizleniyor</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Raf başlığı gösteriliyor</string>
+ <string name="revanced_hide_channel_guidelines_title">Kanal yönergelerini gizle</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Kanal yönergeleri gizleniyor </string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Kanal yönergeleri gösteriliyor</string>
+ <string name="revanced_hide_expandable_chip_title">Videoların altındaki genişletilebilir çentiği gizle</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Genişletilebilir çentikler gizleniyor</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Genişletilebilir çentikler gösteriliyor</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Video kalite menüsü alt bilgisini gizle</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Video kalite menüsü alt bilgisi gizleniyor </string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Video kalite menüsü alt bilgisi gösteriliyor</string>
+ <string name="revanced_hide_community_posts_title">Topluluk gönderilerini gizle</string>
+ <string name="revanced_hide_community_posts_summary_on">Topluluk gönderileri gizleniyor </string>
+ <string name="revanced_hide_community_posts_summary_off">Topluluk gönderileri gösteriliyor</string>
+ <string name="revanced_hide_compact_banner_title">Kompakt afişleri gizle</string>
+ <string name="revanced_hide_compact_banner_summary_on">Kompakt afişler gizleniyor </string>
+ <string name="revanced_hide_compact_banner_summary_off">Kompakt afişler gösteriliyor</string>
+ <string name="revanced_hide_movies_section_title">Filmler kısmını gizle</string>
+ <string name="revanced_hide_movies_section_summary_on">Filmler kısmı gizleniyor </string>
+ <string name="revanced_hide_movies_section_summary_off">Filmler kısmı gösteriliyor</string>
+ <string name="revanced_hide_feed_survey_title">Akış anketlerini gizle</string>
+ <string name="revanced_hide_feed_survey_summary_on">Akış anketleri gizleniyor</string>
+ <string name="revanced_hide_feed_survey_summary_off">Akış anketleri gösteriliyor</string>
+ <string name="revanced_hide_community_guidelines_title">Topluluk yönergelerini gizle</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Topluluk yönergeleri gizleniyor </string>
+ <string name="revanced_hide_community_guidelines_summary_off">Topluluk yönergeleri gösteriliyor</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Abone topluluk yönergelerini gizle</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Abone topluluk yönergeleri gizlendi</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Abone topluluk yönergeleri gösteriliyor</string>
+ <string name="revanced_hide_channel_member_shelf_title">Kanal üyeleri rafını gizle</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kanal üyeleri rafı gizleniyor </string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kanal üyeleri rafı gösteriliyor</string>
+ <string name="revanced_hide_emergency_box_title">Acil durum kutularını gizle</string>
+ <string name="revanced_hide_emergency_box_summary_on">Acil durum kutuları gizleniyor </string>
+ <string name="revanced_hide_emergency_box_summary_off">Acil durum kutuları gösteriliyor</string>
+ <string name="revanced_hide_info_panels_title">Bilgi panellerini gizle</string>
+ <string name="revanced_hide_info_panels_summary_on">Bilgi panelleri gizleniyor </string>
+ <string name="revanced_hide_info_panels_summary_off">Bilgi panelleri gösteriliyor</string>
+ <string name="revanced_hide_medical_panels_title">Tıbbi bilgi panellerini gizle</string>
+ <string name="revanced_hide_medical_panels_summary_on">Tıbbi bilgi panelleri gizleniyor </string>
+ <string name="revanced_hide_medical_panels_summary_off">Tıbbi bilgi panelleri gösteriliyor</string>
+ <string name="revanced_hide_channel_bar_title">Kanal çubuğunu gizle</string>
+ <string name="revanced_hide_channel_bar_summary_on">Kanal çubuğu gizlendi</string>
+ <string name="revanced_hide_channel_bar_summary_off">Kanal çubuğu gösteriliyor</string>
+ <string name="revanced_hide_playables_title">Hazır Oyunlar\'ı gizle</string>
+ <string name="revanced_hide_playables_summary_on">Hazır Oyunlar gizleniyor </string>
+ <string name="revanced_hide_playables_summary_off">Hazır Oyunlar gösteriliyor </string>
+ <string name="revanced_hide_quick_actions_title">Tam ekrandaki hızlı eylemleri gizle</string>
+ <string name="revanced_hide_quick_actions_summary_on">Hızlı eylemler gizleniyor</string>
+ <string name="revanced_hide_quick_actions_summary_off">Hızlı eylemler gösteriliyor</string>
+ <string name="revanced_hide_related_videos_title">Hızlı eylemlerdeki alakalı videoları gizle</string>
+ <string name="revanced_hide_related_videos_summary_on">Alâkalı videolar gizleniyor</string>
+ <string name="revanced_hide_related_videos_summary_off">Alakalı videolar gösteriliyor</string>
+ <string name="revanced_hide_image_shelf_title">Arama sonuçlarındaki resim rafını gizle</string>
+ <string name="revanced_hide_image_shelf_summary_on">Resim rafı gizleniyor</string>
+ <string name="revanced_hide_image_shelf_summary_off">Resim rafı gösteriliyor</string>
+ <string name="revanced_hide_latest_posts_ads_title">Son gönderileri gizle</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Son gönderiler gizleniyor</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Son gönderiler gösteriliyor</string>
+ <string name="revanced_hide_mix_playlists_title">Mix oynatma listelerini gizle</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Mix oynatma listeleri gizleniyor</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Mix oynatma listeleri gösteriliyor</string>
+ <string name="revanced_hide_artist_cards_title">Sanatçı kartlarını gizle</string>
+ <string name="revanced_hide_artist_cards_summary_on">Sanatçı kartları gizlendi</string>
+ <string name="revanced_hide_artist_cards_summary_off">Sanatçı kartları gösteriliyor</string>
+ <string name="revanced_hide_chips_shelf_title">Çip rafını gizle</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Çip rafı gizlendi</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Çip rafı gösteriliyor</string>
+ <string name="revanced_hide_attributes_section_title">Nitelikler bölümünü gizle</string>
+ <string name="revanced_hide_attributes_section_summary_on">Öne çıkan yerler, Oyunlar ve Müzik bölümleri gizli</string>
+ <string name="revanced_hide_attributes_section_summary_off">Öne çıkan yerler, Oyunlar ve Müzik bölümleri görünür</string>
+ <string name="revanced_hide_chapters_section_title">Bölümler kısmını gizle</string>
+ <string name="revanced_hide_chapters_section_summary_on">Bölümler kısmı gizli</string>
+ <string name="revanced_hide_chapters_section_summary_off">Bölümler kısmı görünür</string>
+ <string name="revanced_hide_podcast_section_title">\"Podcast\'i keşfedin\" kısmını gizle</string>
+ <string name="revanced_hide_podcast_section_summary_on">\"Podcast\'ı keşfedin\" kısmı gizli</string>
+ <string name="revanced_hide_podcast_section_summary_off">\"Podcast\'ı keşfedin\" bölümü görünür</string>
+ <string name="revanced_hide_info_cards_section_title">Bilgi kartları kısmını gizle</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Bilgi kartları kısmı gizleniyor</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Bilgi kartları kısmı gösteriliyor</string>
+ <string name="revanced_hide_transcript_section_title">Transkript kısmını gizle</string>
+ <string name="revanced_hide_transcript_section_summary_on">Transkript kısmı gizleniyor</string>
+ <string name="revanced_hide_transcript_section_summary_off">Transkript kısmı gösteriliyor</string>
+ <string name="revanced_hide_description_components_screen_title">Video açıklaması</string>
+ <string name="revanced_hide_description_components_screen_summary">Video açıklamasındaki öğeleri gizle veya göster</string>
+ <string name="revanced_custom_filter_screen_title">Özel filtre</string>
+ <string name="revanced_custom_filter_screen_summary">Özel filtre ile öğeleri gizle</string>
+ <string name="revanced_custom_filter_title">Özel filtreyi etkinleştir</string>
+ <string name="revanced_custom_filter_summary_on">Özel filtre etkin</string>
+ <string name="revanced_custom_filter_summary_off">Özel filtre devre dışı</string>
+ <string name="revanced_custom_filter_strings_title">Özel filtre</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Yeni satırla ayrılmış olarak filtrelenecek öğe yolu oluşturucu dizelerinin listesi</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Geçersiz özel filtre: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Anahtar kelimeyle içerik gizle</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Anahtar kelime filtreleriyle arama ve akıştaki videoları gizle</string>
+ <string name="revanced_hide_keyword_content_home_title">Ana sayfadaki videoları anahtar kelimelerle gizle</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Ana sayfa sekmesindeki videolar anahtar kelimelerle filtreleniyor</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Ana sayfa sekmesindeki videolar anahtar kelimelerle filtrelenmiyor</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Aboneliklerdeki videoları anahtar kelimelerle gizle</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Abonelikler sekmesindeki videolar anahtar kelimelerle filtreleniyor</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Abonelikler sekmesindeki videolar anahtar kelimelerle filtrelenmiyor</string>
+ <string name="revanced_hide_keyword_content_search_title">Arama sonuçlarını anahtar kelimelerle filtrele</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Arama sonuçları anahtar kelimelerle filtreleniyor</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Arama sonuçları anahtar kelimelerle filtrelenmiyor</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Gizlemek için anahtar kelimeler</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Yeni satırla ayrılmış, gizlenecek anahtar kelimeler ve söz öbekleri\n\nOrtasında büyük harf bulunan kelimeler büyük harfle birlikte girilmelidir (örn: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Anahtar kelimeyle filtreleme hakkında</string>
+ <string name="revanced_hide_keyword_content_about_summary">Ana Sayfa/Abonelikler/Arama sonuçları anahtar kelimelerle eşleşen videoları gizlemek için filtrelenir\n\nKısıtlamalar\n• Bazı Short videolar gizlenemeyebilir\n• Bazı arayüz bileşenleri gizlenemeyebilir\n• Anahtar kelime aratmak hiçbir sonuç göstermeyebilir</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Geçersiz anahtar kelime. \'%s\' kullanılamaz</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Geçersiz anahtar kelime. \'%1$s\' %2$d karakterden az</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">\'$s\' anahtar kelimesi bütün videoları gizleyecektir</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Genel reklamları gizle</string>
+ <string name="revanced_hide_general_ads_summary_on">Genel reklamlar gizleniyor </string>
+ <string name="revanced_hide_general_ads_summary_off">Genel reklamlar gösteriliyor </string>
+ <string name="revanced_hide_fullscreen_ads_title">Tam ekran reklamlarını gizle</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Tam ekran reklamlar gizli\n\nBu özellik yalnızca eski cihazlarda kullanılabilir</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Tam ekran reklamları gösteriliyor </string>
+ <string name="revanced_hide_buttoned_ads_title">Butonlu reklamları gizle</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Butonlu reklamlar gizleniyor </string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Butonlu reklamlar gösteriliyor </string>
+ <string name="revanced_hide_paid_promotion_label_title">Ücretli tanıtım yazısını gizle</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Ücretli tanıtım yazısı gizleniyor</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Ücretli tanıtım yazısı gösteriliyor </string>
+ <string name="revanced_hide_self_sponsor_ads_title">Kendine sponsor kartları gizle</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Kendine sponsor kartlar gizleniyor</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Kendine sponsor kartlar gösteriliyor </string>
+ <string name="revanced_hide_products_banner_title">Ürünleri görme afişini gizle</string>
+ <string name="revanced_hide_products_banner_summary_on">Afiş gizleniyor</string>
+ <string name="revanced_hide_products_banner_summary_off">Afiş gösteriliyor</string>
+ <string name="revanced_hide_shopping_links_title">Video açıklamasındaki alışveriş bağlantılarını gizle</string>
+ <string name="revanced_hide_shopping_links_summary_on">Alışveriş bağlantıları gizleniyor </string>
+ <string name="revanced_hide_shopping_links_summary_off">Alışveriş bağlantıları gösteriliyor </string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Kanal sayfalarındaki \'Mağazayı ziyaret et\' butonunu gizle</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Buton gizleniyor</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Buton gösteriliyor</string>
+ <string name="revanced_hide_web_search_results_title">Web arama sonuçlarını gizle</string>
+ <string name="revanced_hide_web_search_results_summary_on">Web arama sonuçları gizleniyor </string>
+ <string name="revanced_hide_web_search_results_summary_off">Web arama sonuçları gösteriliyor </string>
+ <string name="revanced_hide_merchandise_banners_title">Ürün afişlerini gizle</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Ürün afişleri gizleniyor</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Ürün afişleri gösteriliyor </string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Tam ekran reklamlarını gizleme yalnızca eski cihazlarda çalışır</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">YouTube Premium promosyonlarını gizle</string>
+ <string name="revanced_hide_get_premium_summary_on">Videonun altındaki YouTube Premium promosyonları gizleniyor </string>
+ <string name="revanced_hide_get_premium_summary_off">Videonun altındaki YouTube Premium promosyonları gösteriliyor </string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Video reklamlarını gizle</string>
+ <string name="revanced_hide_video_ads_summary_on">Video reklamları gizleniyor </string>
+ <string name="revanced_hide_video_ads_summary_off">Video reklamları gösteriliyor </string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL panoya kopyalandı</string>
+ <string name="revanced_share_copy_url_timestamp_success">Zaman damgalı URL kopyalandı</string>
+ <string name="revanced_copy_video_url_title">Video URL\'sini kopyalama butonunu göster</string>
+ <string name="revanced_copy_video_url_summary_on">Buton gösteriliyor. Video URL\'sini kopyalamak için dokunun. Zaman damgalı URL\'yi kopyalamak için basılı tutun</string>
+ <string name="revanced_copy_video_url_summary_off">Buton gizleniyor </string>
+ <string name="revanced_copy_video_url_timestamp_title">Zaman damgalı URL\'yi kopyalama düğmesini göster</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Düğme görünür. Zamanlı video URLsini kopyalamak için dokunun. Zaman olmadan kopyalamak için basılı tutun</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Buton gösterilmiyor</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">İzleyici takdiri iletişim kutusunu kaldır</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">İletişim kutusu kaldırılacak</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">İletişim kutusu gösterilecek</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Bu, yaş kısıtlamasını atlamaz. Sadece otomatik olarak kabul eder.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Harici indirmeler</string>
+ <string name="revanced_external_downloader_screen_summary">Harici indirici kullanmak için ayarlar</string>
+ <string name="revanced_external_downloader_title">Harici indirme düğmesini göster</string>
+ <string name="revanced_external_downloader_summary_on">Oynatıcıda indirme butonu gösteriliyor </string>
+ <string name="revanced_external_downloader_summary_off">Oynatıcıda indirme butonu gösteriliyor </string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">İndirme işlemi butonunu geçersiz kıl</string>
+ <string name="revanced_external_downloader_action_button_summary_on">İndirme butonu harici indiricinizi açar</string>
+ <string name="revanced_external_downloader_action_button_summary_off">İndirme butonu yerel uygulama içi indiriciyi açar</string>
+ <string name="revanced_external_downloader_name_title">İndirici paket adı</string>
+ <string name="revanced_external_downloader_name_summary">NewPipe veya Seal gibi yüklü olan harici indirici uygulamanızın paket adı</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s yüklü değil. Lütfen yükleyin.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Hassas sarma hareketini devre dışı bırak</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Hareket devre dışı</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Hareket etkin</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Zaman çubuğuna dokunmayı etkinleştir</string>
+ <string name="revanced_seekbar_tapping_summary_on">Zaman çubuğuna dokunma etkin</string>
+ <string name="revanced_seekbar_tapping_summary_off">Zaman çubuğuna dokunma devre dışı</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Parlaklık hareketini etkinleştir</string>
+ <string name="revanced_swipe_brightness_summary_on">Parlaklık kaydırma hareketi etkin</string>
+ <string name="revanced_swipe_brightness_summary_off">Parlaklık kaydırma hareketi devre dışı</string>
+ <string name="revanced_swipe_volume_title">Ses hareketini etkinleştir</string>
+ <string name="revanced_swipe_volume_summary_on">Ses kaydırma hareketi etkin</string>
+ <string name="revanced_swipe_volume_summary_off">Ses kaydırma hareketi devre dışı</string>
+ <string name="revanced_swipe_press_to_engage_title">Basılı tutup kaydırma hareketini etkinleştir</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Basılı tutup kaydırma hareketi etkin</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Basılı tutup kaydırma hareketi devre dışı</string>
+ <string name="revanced_swipe_haptic_feedback_title">Titireşimli geri bildirimi etkinleştir</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Titreşimli geri bildirim etkin</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Titreşimli geri bildirim devre dışı</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Parlaklığı kaydet ve geri yükle</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Tam ekrana girip çıkarken parlaklık kaydediliyor ve sonrasında tekrar geri yükleniyor</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Tam ekrana girip çıkarken parlaklık kaydedilip sonrasında tekrar geri yüklenmiyor</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Kaydırarak otomatik parlaklığı etkinleştir</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Kaydırarak parlaklığı en düşüğe ayarlamak otomatik parlaklığı etkinleştiriyor</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Kaydırarak parlaklığı en düşüğe ayarlamak otomatik parlaklığı etkinleştirmiyor</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Oto</string>
+ <string name="revanced_swipe_overlay_timeout_title">Kaydırma paneli zaman aşımı</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Panelin görünür olduğu milisaniye miktarı</string>
+ <string name="revanced_swipe_text_overlay_size_title">Kaydırma paneli metin boyutu</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Kaydırma paneli için metin boyutu</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Kaydırma paneli opaklığı</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Kaydırma panelinin opaklık değeri</string>
+ <string name="revanced_swipe_threshold_title">Kaydırma büyüklük eşiği</string>
+ <string name="revanced_swipe_threshold_summary">Kaydırma işleminin gerçekleşmesi için eşik miktarı</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Altyazıların kendiliğinden açılmasını devre dışı bırak</string>
+ <string name="revanced_auto_captions_summary_on">Altyazılar kendiliğinden açılmıyor</string>
+ <string name="revanced_auto_captions_summary_off">Altyazılar kendiliğinden açılabilir</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Eylem butonları</string>
+ <string name="revanced_hide_buttons_screen_summary">Videonun altındaki butonları gizle veya göster</string>
+ <string name="revanced_hide_like_dislike_button_title">\"Beğen\" ve \"Beğenme\" butonlarını gizle</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">\"Beğen\" ve \"Beğenme\" butonları gizleniyor</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">\"Beğen\" ve \"Beğenme\" butonları gösteriliyor </string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">\'Paylaş\' butonunu gizle</string>
+ <string name="revanced_hide_share_button_summary_on">\'Paylaş\' butonu gizleniyor </string>
+ <string name="revanced_hide_share_button_summary_off">\'Paylaş\' butonu gösteriliyor</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">\"Bildir\" butonunu gizle</string>
+ <string name="revanced_hide_report_button_summary_on">\"Bildir\" butonu gizleniyor</string>
+ <string name="revanced_hide_report_button_summary_off">\"Bildir\" butonu gösteriliyor </string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">\"Remix\" butonunu gizle</string>
+ <string name="revanced_hide_remix_button_summary_on">\"Remix\" butonu gizleniyor </string>
+ <string name="revanced_hide_remix_button_summary_off">\"Remix\" butonu gösteriliyor</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">\"İndir\" butonunu gizle</string>
+ <string name="revanced_hide_download_button_summary_on">\"İndir\" butonu gizleniyor</string>
+ <string name="revanced_hide_download_button_summary_off">\"İndir\" butonu gösteriliyor </string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">\"Teşekkürler\" butonunu gizle</string>
+ <string name="revanced_hide_thanks_button_summary_on">\"Teşekkürler\" butonu gizleniyor</string>
+ <string name="revanced_hide_thanks_button_summary_off">\"Teşekkürler\" butonu gösteriliyor</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">\"Klip\" butonunu gizle</string>
+ <string name="revanced_hide_clip_button_summary_on">\"Klip\" butonu gizleniyor</string>
+ <string name="revanced_hide_clip_button_summary_off">\"Klip\" butonu gösteriliyor </string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">\"Kaydet\" butonunu gizle</string>
+ <string name="revanced_hide_playlist_button_summary_on">\"Kaydet\" butonu gizleniyor</string>
+ <string name="revanced_hide_playlist_button_summary_off">\"Kaydet\" butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Otomatik oynatma butonunu gizle</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Otomatik oynatma butonu gizleniyor</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Otomatik oynatma butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Altyazı butonunu gizle</string>
+ <string name="revanced_hide_captions_button_summary_on">Altyazı butonu gizleniyor </string>
+ <string name="revanced_hide_captions_button_summary_off">Altyazı butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Yansıtma butonunu gizle</string>
+ <string name="revanced_hide_cast_button_summary_on">Yansıtma butonu gizleniyor </string>
+ <string name="revanced_hide_cast_button_summary_off">Yansıtma butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Gezinme butonları</string>
+ <string name="revanced_navigation_buttons_screen_summary">Gezinme çubuğundaki butonları gizle veya değiştir</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">\"Ana Sayfa\" butonunu gizle</string>
+ <string name="revanced_hide_home_button_summary_on">\"Ana Sayfa\" butonu gizleniyor</string>
+ <string name="revanced_hide_home_button_summary_off">\"Ana Sayfa\" butonu gösteriliyor</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">\"Shorts\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_button_summary_on">\"Shorts\" butonu gizleniyor </string>
+ <string name="revanced_hide_shorts_button_summary_off">\"Shorts\" butonu gösteriliyor </string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">\"Oluştur\" butonunu gizle</string>
+ <string name="revanced_hide_create_button_summary_on">\"Oluştur\" butonu gizleniyor </string>
+ <string name="revanced_hide_create_button_summary_off">\"Oluştur\" butonu gösteriliyor </string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">\"Abonelikler\" butonunu gizle</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">\"Abonelikler\" butonu gizleniyor</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">\"Abonelikler\" butonu gösteriliyor </string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">\"Oluştur\" butonunun ve \"Bildirimler\" butonunun yerlerini değiştir</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Oluştur düğmesi, Bildirimler düğmesiyle değiştirilir\n\nNot: Bu etkinleştirildiğinde video reklamlar da zorla gizlenir</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">\"Oluştur\" butonunun ve \"Bildirimler\" butonunun yerleri değiştirilmiyor</string>
+ <string name="revanced_hide_navigation_button_labels_title">Gezinme düğmeleri etiketlerini gizle</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Etiketler gizli</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Etiketler görünür</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Açılır menü</string>
+ <string name="revanced_hide_player_flyout_summary">Oynatıcı açılır menü öğelerini gizle veya göster</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">\"Altyazılar\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">\"Altyazılar\" butonu gizleniyor</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">\"Altyazılar\" butonu gösteriliyor </string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">\"Ek ayarlar\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">\"Ek ayarlar\" butonu gizleniyor </string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">\"Ek ayarlar\" butonu gösteriliyor </string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">\"Videoyu döngüye al\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">\"Videoyu döngüye al\" butonu gizleniyor </string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">\"Videoyu döngüye al\" butonu gösteriliyor</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">\"Ambiyans modu\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">\"Ambiyans modu\" butonu gizleniyor</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">\"Ambiyans modu\" butonu gösteriliyor </string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">\"Yardım ve geri bildirim\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">\"Yardım ve geri bildirim\" butonu gizleniyor</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">\"Yardım ve geri bildirim\" butonu gösteriliyor </string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">\"Oynatma hızı\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">\"Oynatma hızı\" butonu gizleniyor</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">\"Oynatma hızı\" butonu gösteriliyor </string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">\"Daha fazla bilgi\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">\"Daha fazla bilgi\" butonu gizleniyor </string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">\"Daha fazla bilgi\" butonu gösteriliyor </string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">\"Ekranı kilitle\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">\"Ekranı kilitle\" butonu gizleniyor </string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">\"Ekranı kilitle\" butonu gösteriliyor </string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">\"Ses parçası\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">\"Ses parçası\" butonu gizleniyor</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">\"Ses parçası\" butonu gösteriliyor </string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">\"VR modunda izle\" butonunu gizle</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">\"VR modunda izle\" butonu gizleniyor </string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">\"VR modunda izle\" butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Önceki ve Sonraki video butonlarını gizle</string>
+ <string name="revanced_hide_player_buttons_summary_on">Önceki ve Sonraki video butonları gizleniyor</string>
+ <string name="revanced_hide_player_buttons_summary_off">Önceki ve Sonraki video butonları gösteriliyor</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Albüm kartlarını gizle</string>
+ <string name="revanced_hide_album_cards_summary_on">Albüm kartları gizleniyor</string>
+ <string name="revanced_hide_album_cards_summary_off">Albüm kartları gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Yorumlar</string>
+ <string name="revanced_comments_screen_summary">Yorumlar kısmındaki öğeleri gizle veya göster</string>
+ <string name="revanced_hide_comments_by_members_header_title">\'Üyeler tarafından yapılan yorumlar\' başlığını gizle</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">\'Üyeler tarafından yapılan yorumlar\' başlığı gizli</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">\'Üyeler tarafından yapılan yorumlar\' başlığı görünür</string>
+ <string name="revanced_hide_comments_section_title">Yorumlar kısmını gizle</string>
+ <string name="revanced_hide_comments_section_summary_on">Yorumlar kısmı gizli</string>
+ <string name="revanced_hide_comments_section_summary_off">Yorumlar kısmı görünür</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">\'Short oluştur\' düğmesini gizle</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">\'Short oluştur\' düğmesi gizli</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">\'Short oluştur\' düğmesi görünür</string>
+ <string name="revanced_hide_comments_preview_comment_title">Önizlenen yorumu gizle</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Önizlenen yorum gizleniyor</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Önizlenen yorum gösteriliyor </string>
+ <string name="revanced_hide_comments_thanks_button_title">Teşekkürler butonunu gizle</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">\"Teşekkürler\" butonu gizleniyor</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">\"Teşekkürler\" butonu gösteriliyor</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Zaman damgasını ve emoji butonlarını gizle</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Zaman damgası ve emoji düğmeleri gizli</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Zaman damgası ve emoji düğmeleri görünür</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Bağış etkinliklerini gizle</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Bağış etkinliği kutuları gizleniyor</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Bağış etkinliği kutuları gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Bitiş ekranı kartlarını gizle</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Bitiş ekranı kartları gizleniyor </string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Bitiş ekranı kartları gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Filtreleme çubuğu</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Akışta, arama sonuçlarında ve ilgili videolardaki filtreleme çubuğunu gizle veya göster</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Akıştakini gizle</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Akıştaki gizleniyor </string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Akıştaki gösteriliyor </string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Arama sonuçlarındakini gizle</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Arama sonuçlarındaki gizleniyor </string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Arama sonuçlarındaki gösteriliyor </string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Alakalı videolardakini gizle</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Alakalı videolardaki gizleniyor </string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Alakalı videolardaki gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Alttaki mikrofon butonunu gizle</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Alttaki mikrofon butonu gizleniyor </string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Alttaki mikrofon butonu gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Tam ekranda ambiyans modunu devre dışı bırak</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Tam ekranda ambiyans modu devre dışı</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Tam ekranda ambiyans modu etkin</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Bilgi kartlarını gizle</string>
+ <string name="revanced_hide_info_cards_summary_on">Bilgi kartları gizleniyor </string>
+ <string name="revanced_hide_info_cards_summary_off">Bilgi kartları gösteriliyor </string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Kayan sayı animasyonlarını devre dışı bırak</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Kayan sayı animasyonu kapalı</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Kayan sayı animasyonu açık</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Video oynatıcıdaki zaman çubuğunu gizle</string>
+ <string name="revanced_hide_seekbar_summary_on">Video oynatıcıdaki zaman çubuğu gizleniyor</string>
+ <string name="revanced_hide_seekbar_summary_off">Video oynatıcıdaki zaman çubuğu gösteriliyor</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Video kapak fotoğraflarındaki zaman çubuğunu gizle</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Video kapak fotoğraflarındaki zaman çubuğu gizleniyor </string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Video kapak fotoğraflarındaki zaman çubuğu gösteriliyor</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ana Sayfa sekmesinde Shorts videolarını gizle</string>
+ <string name="revanced_hide_shorts_home_summary_on">Ana Sayfa sekmesinde Shorts videoları gizleniyor</string>
+ <string name="revanced_hide_shorts_home_summary_off">Ana Sayfa sekmesinde Shorts videoları gösteriliyor</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Abonelikler sekmesinde Shorts videolarını gizle</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Abonelikler sekmesinde Shorts videoları gizleniyor</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Abonelikler sekmesinde Shorts videoları gösteriliyor</string>
+ <string name="revanced_hide_shorts_search_title">Arama sonuçlarında Shorts videolarını gizle</string>
+ <string name="revanced_hide_shorts_search_summary_on">Arama sonuçlarında Shorts videoları gizleniyor</string>
+ <string name="revanced_hide_shorts_search_summary_off">Arama sonuçlarında Shorts videoları gösteriliyor</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">\"Katıl\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">\"Katıl\" butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">\"Katıl\" butonu gösteriliyor</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">\"Abone ol\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">\"Abone ol\" butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">\"Abone ol\" butonu gösteriliyor</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Duraklama katmanı düğmelerini gizle</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Duraklama katmanı düğmeleri gizli</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Duraklama katmanı düğmeleri görünür</string>
+ <string name="revanced_hide_shorts_shop_button_title">Mağaza düğmesini gizle</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Mağaza düğmesi gizli</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Mağaza düğmesi görünür</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Teşekkürler düğmesini gizle</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Teşekkürler düğmesi gizli</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Teşekkürler düğmesi görünür</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Etiketli ürünleri gizle</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Etiketli ürünler gizli</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Etiketli ürünler görünür</string>
+ <string name="revanced_hide_shorts_location_label_title">Konum etiketini gizle</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Konum etiketi gizli</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Konum etiketi görünür</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Sesi oynatma listesine kaydetme butonunu gizle</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Sesi oynatma listesine kaydetme butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Sesi oynatma listesine kaydetme butonu gösteriliyor </string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Arama önerilerini gizle</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Arama önerileri gizleniyor </string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Arama önerileri gösteriliyor </string>
+ <string name="revanced_hide_shorts_like_button_title">\"Beğen\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">\"Beğen\" butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">\"Beğen\" butonu gösteriliyor</string>
+ <string name="revanced_hide_shorts_dislike_button_title">\"Beğenme\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">\"Beğenme\" butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">\"Beğenme\" butonu gösteriliyor</string>
+ <string name="revanced_hide_shorts_comments_button_title">\"Yorumlar\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">\"Yorumlar\" butonu gizleniyor </string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">\"Yorumlar\" butonu gösteriliyor</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">\"Remix\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">\"Remix\" butonu gizleniyor </string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">\"Remix\" butonu gösteriliyor</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">\"Paylaş\" butonunu gizle</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">\"Paylaş\" butonu gizleniyor</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">\"Paylaş\" butonu gösteriliyor</string>
+ <string name="revanced_hide_shorts_info_panel_title">Bilgi panelini gizle</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Bilgi paneli gizleniyor</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Bilgi paneli gösteriliyor</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Kanal çubuğunu gizle</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Kanal çubuğu gizleniyor</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Kanal çubuğu gösteriliyor</string>
+ <string name="revanced_hide_shorts_video_title_title">Video başlığını gizle</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Video başlığı gizleniyor</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Video başlığı gösteriliyor</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ses bilgisi etiketini gizle</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Bilgi etiketi gizlendi</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Bilgi etiketi gösteriliyor</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Tam video bağlantısı etiketini gizle</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Video bağlantı etiketi gizlendi</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Video bağlantı etiketi gösteriliyor</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ses düğmesini gizle</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Ses düğmesi gizlendi</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Ses düğmesi gösteriliyor</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Gezinme çubuğunu gizle</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Gezinme çubuğu gizleniyor</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Gezinme çubuğu gösteriliyor</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Önerilen video bitiş ekranını gizle</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Önerilen videolar devre dışı bırakılacak</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Önerilen videolar gösterilecek</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Video zaman damgasını gizle</string>
+ <string name="revanced_hide_timestamp_summary_on">Video zaman damgası gizleniyor</string>
+ <string name="revanced_hide_timestamp_summary_off">Video zaman damgası gösteriliyor</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Oynatıcı açılır panellerini gizle</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Oynatıcı açılır panelleri gizleniyor</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Oynatıcı açılır panelleri gösteriliyor</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Oynatıcı opaklığı</string>
+ <string name="revanced_player_overlay_opacity_summary">0-100 arasında opaklık değeri, 0 şeffaftır</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Oynatıcı şeffaflığı 0-100 arasında olmalıdır</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Gizleniyor </string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Beğenmeme sayıları zaman aşımına uğradı</string>
+ <string name="revanced_ryd_failure_connection_status_code">Beğenmeme sayıları kullanılamıyor (durum %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Beğenmeme sayıları kullanılamıyor API sınırına ulaşıldı</string>
+ <string name="revanced_ryd_failure_generic">Beğenmeme sayıları kullanılamıyor (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike\'ı kullanarak oy vermek için videoyu yeniden yükleyin</string>
+ <string name="revanced_ryd_enable_summary_on">Beğenmeme sayıları gösteriliyor</string>
+ <string name="revanced_ryd_enable_summary_off">Beğenmeme sayıları gösterilmiyor</string>
+ <string name="revanced_ryd_shorts_title">Shorts\'ta beğenmeme sayılarını göster</string>
+ <string name="revanced_ryd_shorts_summary_on">Beğenmeme sayıları Shorts\'ta gösteriliyor</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Shorts\'da beğenmeme sayıları görünür\n\nKısıtlama: Gizli modda beğenmeme sayıları görünmeyebilir</string>
+ <string name="revanced_ryd_shorts_summary_off">Beğenmeme sayıları Shorts\'ta gösterilmiyor</string>
+ <string name="revanced_ryd_dislike_percentage_title">Yüzdelik dilim olarak beğenmeme sayıları</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Beğenmeme sayıları yüzdelik dilim olarak gösteriliyor</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Beğenmeme sayıları miktar olarak gösteriliyor</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Kompakt beğen düğmesi</string>
+ <string name="revanced_ryd_compact_layout_summary_on">En az genişlik için tasarlanmış beğen düğmesi</string>
+ <string name="revanced_ryd_compact_layout_summary_off">En iyi görünüm için tasarlanmış beğen düğmesi</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">API kullanılamadığında tost bildirimi göster</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Return YouTube Dislike kullanılamadığında tost bildirimi gösteriliyor</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Return YouTube Dislike kullanılamadığında tost bildirimi gösterilmiyor</string>
+ <string name="revanced_ryd_about">Hakkında</string>
+ <string name="revanced_ryd_attribution_summary">Veri, Return YouTube Dislike APIsinden sağlanır. Daha fazla öğrenmek için dokunun</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Bu cihazın ReturnYouTubeDislike API istatistikleri</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Ortalama API yanıt süresi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">En düşük API yanıt süresi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">En yüksek API yanıt süresi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Son videodaki API yanıt süresi</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Beğenmeme sayıları geçici olarak kullanılamıyor - İstemci API sınırı var</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API\'dan gelen oylar, çağrı sayısı</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Hiç çağrı yapılmadı</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d çağrı yapıldı</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API\'den oyları getirirken yaşanan zaman aşımı sayısı</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Hiçbir çağrı zaman aşımına uğramadı</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d çağrı zaman aşımına uğradı</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API istemci sınırları</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Hiçbir sınırla karşılaşılmadı</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">%d defa istemci sınırıyla karşılaşıldı</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d milisaniye</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Geniş arama çubuğunu etkinleştir</string>
+ <string name="revanced_wide_searchbar_summary_on">Geniş arama çubuğu etkin</string>
+ <string name="revanced_wide_searchbar_summary_off">Geniş arama çubuğu devre dışı</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Eski zaman çubuğu küçük resimlerini geri getir</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Zaman çubuğu küçük resimleri zaman çubuğunun üzerinde görünecek</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Zaman çubuğu küçük resimleri tam ekran olarak gösterilecek</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">SponsorBlock\'u etkinleştir</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock, YouTube videolarındaki sıkıcı bölümleri atlamaya yarayan kitle kaynaklı bir sistemdir</string>
+ <string name="revanced_sb_appearance_category">Görünüm</string>
+ <string name="revanced_sb_enable_voting">Oylama düğmesini göster</string>
+ <string name="revanced_sb_enable_voting_sum_on">Bölüm oylama düğmesi gösteriliyor</string>
+ <string name="revanced_sb_enable_voting_sum_off">Bölüm oylama düğmesi gösterilmiyor</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Ufak atlama düğmesi kullan</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">En az genişlik için tasarlanmış atlama düğmesi</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">En iyi görünüm için tasarlanmış atlama düğmesi</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Atlama düğmesini otomatik olarak gizle</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Atlama düğmesi birkaç saniye sonra gizlenir</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Atlama düğmesi bütün bölüm boyunca görünür</string>
+ <string name="revanced_sb_general_skiptoast">Otomatik olarak atlarken tost bildirimi göster</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Kısım otomatik olarak atlandığında tost bildirimi görünür. Örnek görmek için dokunun</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Tost bildirimi görünmez. Örnek görmek için buraya dokunun</string>
+ <string name="revanced_sb_general_time_without">Bölümler çıkarıldığında kalan video süresini göster</string>
+ <string name="revanced_sb_general_time_without_sum_on">Bölümler olmaksızın video uzunluğu; tüm video uzunluğunun yanında parantez içinde gösterilir</string>
+ <string name="revanced_sb_general_time_without_sum_off">Tüm video uzunluğu gösteriliyor</string>
+ <string name="revanced_sb_create_segment_category">Yeni kısımlar oluştur</string>
+ <string name="revanced_sb_enable_create_segment">Yeni kısım oluşturma düğmesini göster</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Yeni kısım oluşturma butonu gösteriliyor</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Yeni kısım oluşturma butonu gösterilmiyor</string>
+ <string name="revanced_sb_general_adjusting">Yeni kısım oluştururken atlanacak süre</string>
+ <string name="revanced_sb_general_adjusting_sum">Yeni bölüm oluştururkenki atlama düğmelerinin oynatacağı milisaniye miktarı</string>
+ <string name="revanced_sb_general_adjusting_invalid">Değer pozitif bir sayı olmalıdır</string>
+ <string name="revanced_sb_guidelines_preference_title">Kılavuzu görüntüle</string>
+ <string name="revanced_sb_guidelines_preference_sum">Kılavuz, yeni kısımlar oluşturma kurallarını ve ipuçlarını içerir</string>
+ <string name="revanced_sb_guidelines_popup_title">Kılavuzu takip edin</string>
+ <string name="revanced_sb_guidelines_popup_content">Yeni kısımlar oluşturmadan önce SponsorBlock kılavuzunu okuyun</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Zaten okudum</string>
+ <string name="revanced_sb_guidelines_popup_open">Göster</string>
+ <string name="revanced_sb_general">Genel</string>
+ <string name="revanced_sb_toast_on_connection_error_title">API kullanılamadığında bir tost bildirimi göster</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">SponsorBlock kullanılamadığında bir tost bildirimi gösterilir</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">SponsorBlock kullanılamadığında bir tost bildirimi gösterilmez</string>
+ <string name="revanced_sb_general_skipcount">Atlama sayısı izlemeyi etkinleştir</string>
+ <string name="revanced_sb_general_skipcount_sum_on">SponsorBlock liderlik tablosunun ne kadar zaman kazanıldığını bilmesini sağlar. Bir kısım her atlandığında liderlik tablosuna bir mesaj gönderilir</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Atlama sayısı izleme etkin değil</string>
+ <string name="revanced_sb_general_min_duration">En az bölüm süresi</string>
+ <string name="revanced_sb_general_min_duration_sum">Bu değerden (saniye cinsinden) kısa olan bölümler gösterilmeyecek ve atlanmayacaktır</string>
+ <string name="revanced_sb_general_uuid">Özel kullanıcı kimliğiniz</string>
+ <string name="revanced_sb_general_uuid_sum">Bu gizli tutulmalıdır. Bu bir şifreye benzer ve diğerleriyle paylaşılmaması gerekir. Birinin eline geçerse, sizi taklit edebilir</string>
+ <string name="revanced_sb_general_uuid_invalid">Özel kullanıcı kimliğiniz en az 30 karakter olmalıdır</string>
+ <string name="revanced_sb_general_api_url">API URLsini değiştir</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlock\'un sunucuya çağrı yapmak için kullandığı adres</string>
+ <string name="revanced_sb_api_url_reset">API URLsi sıfırlandı</string>
+ <string name="revanced_sb_api_url_invalid">A\'PI URLsi geçersiz</string>
+ <string name="revanced_sb_api_url_changed">API URLsi değiştirildi</string>
+ <string name="revanced_sb_settings_ie">Ayarları içe/dışa aktar</string>
+ <string name="revanced_sb_settings_copy">Kopyala</string>
+ <string name="revanced_sb_settings_ie_sum">ReVanced\'e ve diğer SponsorBlock platformlarına aktarılabilecek SponsorBlock JSON yapılandırmanız</string>
+ <string name="revanced_sb_settings_ie_sum_warning">ReVanced ve diğer SponsorBlock platformlarına aktarılabilen SponsorBlock JSON yapılandırmanız. Bu, özel kullanıcı kimliğinizi içerir. Bunu dikkatli paylaştığınızdan emin olun</string>
+ <string name="revanced_sb_settings_import_successful">Ayarlar başarıyla içe aktarıldı</string>
+ <string name="revanced_sb_settings_import_failed">İçe aktarılamadı: %s</string>
+ <string name="revanced_sb_settings_export_failed">Dışa aktarılamadı: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ayarlarınız özel bir SponsorBlock kullanıcı kimliği içeriyor.\n\nKullanıcı kimliğiniz bir şifre gibidir ve asla paylaşılmamalıdır.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Bir daha gösterme</string>
+ <string name="revanced_sb_diff_segments">Bölüm davranışını değiştir</string>
+ <string name="revanced_sb_segments_sponsor">Sponsor</string>
+ <string name="revanced_sb_segments_sponsor_sum">Ücretli tanıtım, ücretli yönlendirmeler ve doğrudan reklamlar. Kendi reklamı veya beğendiği amaçlara/üreticilere/sitelere/ürünlere atıfta bulunmalar için değil</string>
+ <string name="revanced_sb_segments_selfpromo">Karşılıksız/Kendi reklamı</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Karşılıksız veya kendi reklamı olması dışında \'Sponsor\' gibidir. Kendi ürünleri, bağışlar, veya iş birliği yaptıkları kişiler hakkında bilgiler içeren kısımları içerir</string>
+ <string name="revanced_sb_segments_interaction">Etkileşim Hatırlatıcısı (Abone Ol)</string>
+ <string name="revanced_sb_segments_interaction_sum">İçeriğin ortasında beğenme, abone olma veya takip etme için hatırlatmalar. Eğer uzunsa veya belirli birşey hakkındaysa kendi reklamı kategorisinde olmalıdır</string>
+ <string name="revanced_sb_segments_highlight">Vurgu</string>
+ <string name="revanced_sb_segments_highlight_sum">Videoda çoğu kişinin aradığı bölümü</string>
+ <string name="revanced_sb_segments_intro">Ara/Giriş Animasyonu</string>
+ <string name="revanced_sb_segments_intro_sum">Gerçek içerik barındırmayan aralıklar. Duraklama, sabit kare veya tekrar eden bir animasyon olabilir. Bilgi içeren geçişleri içermez</string>
+ <string name="revanced_sb_segments_outro">Bitiş Ekranı/Jenerik</string>
+ <string name="revanced_sb_segments_outro_sum">Jenerik veya YouTube bitiş kartlarının göründüğü zaman. Bilgi içeren çıkarımlar için değil</string>
+ <string name="revanced_sb_segments_preview">Önİzleme/Özet</string>
+ <string name="revanced_sb_segments_preview_sum">Videoda veya bir dizinin diğer videolarında neler olduğunu gösteren, tüm bilgilerin başka bir yerde tekrarlandığı klip koleksiyonu</string>
+ <string name="revanced_sb_segments_filler">Konuyla Alakasız/Şaka</string>
+ <string name="revanced_sb_segments_filler_sum">Videonun içeriğini anlamak için gerekli olmayan, sadece videoyu doldurmak veya mizah için eklenen alakasız sahneler. İçerik veya arka plan detaylarını içeren kısımları içermez</string>
+ <string name="revanced_sb_segments_nomusic">Müzik: Müzik Olmayan Kısım</string>
+ <string name="revanced_sb_segments_nomusic_sum">Sadece müzik videolarında kullanılır. Müzik videolarının müzik olmayan, başka bir kategorinin kapsamadığı kısımları</string>
+ <string name="revanced_sb_skip_button_compact">Atla</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Vurgu</string>
+ <string name="revanced_sb_skip_button_sponsor">Sponsoru atla</string>
+ <string name="revanced_sb_skip_button_selfpromo">Tanıtımı atla</string>
+ <string name="revanced_sb_skip_button_interaction">Etkileşimi atla</string>
+ <string name="revanced_sb_skip_button_highlight">Vurguya atla</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Girişi atla</string>
+ <string name="revanced_sb_skip_button_intro_middle">Arayı atla</string>
+ <string name="revanced_sb_skip_button_intro_end">Arayı atla</string>
+ <string name="revanced_sb_skip_button_outro">Bitişi atla</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Önizlemeyi atla</string>
+ <string name="revanced_sb_skip_button_preview_middle">Önizlemeyi atla</string>
+ <string name="revanced_sb_skip_button_preview_end">Özeti atla</string>
+ <string name="revanced_sb_skip_button_filler">Doldurma bölümü atla</string>
+ <string name="revanced_sb_skip_button_nomusic">Müziksiz kısmı atla</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Kısmı atla</string>
+ <string name="revanced_sb_skipped_sponsor">Sponsor atlandı</string>
+ <string name="revanced_sb_skipped_selfpromo">Tanıtım atlandı</string>
+ <string name="revanced_sb_skipped_interaction">Sıkıcı hatırlatma atlandı</string>
+ <string name="revanced_sb_skipped_highlight">Vurguya atlandı</string>
+ <string name="revanced_sb_skipped_intro_beginning">Giriş atlandı</string>
+ <string name="revanced_sb_skipped_intro_middle">Ara atlandı</string>
+ <string name="revanced_sb_skipped_intro_end">Ara atlandı</string>
+ <string name="revanced_sb_skipped_outro">Bitiş atlandı</string>
+ <string name="revanced_sb_skipped_preview_beginning">Önizleme atlandı</string>
+ <string name="revanced_sb_skipped_preview_middle">Önizleme atlandı</string>
+ <string name="revanced_sb_skipped_preview_end">Özet atlandı</string>
+ <string name="revanced_sb_skipped_filler">Doldurma bölüm atlandı</string>
+ <string name="revanced_sb_skipped_nomusic">Müziksiz kısım atlandı</string>
+ <string name="revanced_sb_skipped_unsubmitted">Gönderilmemiş kısım atlandı</string>
+ <string name="revanced_sb_skipped_multiple_segments">Birden fazla kısım atlandı</string>
+ <string name="revanced_sb_skip_automatically">Otomatik atla</string>
+ <string name="revanced_sb_skip_automatically_once">Bir defalık otomatik olarak atla</string>
+ <string name="revanced_sb_skip_showbutton">Atla düğmesi göster</string>
+ <string name="revanced_sb_skip_seekbaronly">Zaman çubuğunda göster</string>
+ <string name="revanced_sb_skip_ignore">Devre dışı bırak</string>
+ <string name="revanced_sb_submit_failed_invalid">Bölüm gönderilemedi: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock geçici olarak kullanılamıyor</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Bölüm gönderilemedi (durum: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Bölüm gönderilemedi.\nKısıtlanmış (bir kullanıcıdan veya IP\'den çok fazla istek)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Kısım gönderilemedi: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Kısım gönderilemedi.\nAynısı mevcut</string>
+ <string name="revanced_sb_submit_succeeded">Bölüm başarıyla gönderildi</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock zaman aşımına uğradı</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock geçici olarak kullanılamıyor (durum %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock geçici olarak kullanılamıyor</string>
+ <string name="revanced_sb_vote_failed_timeout">Bölüm oylanamıyor (API zaman aşımına uğradı)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Bölüm oylanamıyor (durum %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Bölüm oylanamıyor: %s</string>
+ <string name="revanced_sb_vote_upvote">Olumlu oy</string>
+ <string name="revanced_sb_vote_downvote">Olumsuz oy</string>
+ <string name="revanced_sb_vote_category">Kategori değiştir</string>
+ <string name="revanced_sb_vote_no_segments">Oylanılacak bir bölüm yok</string>
+ <string name="revanced_sb_new_segment_choose_category">Bölümün kategorisini seçin</string>
+ <string name="revanced_sb_new_segment_disabled_category">Kategori, ayarlarda devre dışı bırakıldı. Göndermek için kategoriyi etkinleştirin.</string>
+ <string name="revanced_sb_new_segment_title">Yeni SponsorBlock bölümü</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">%1$02d:%2$02d:%3$03d yeni bölümün başlangıcı olarak mı, bitişi olarak mı ayarlansın?</string>
+ <string name="revanced_sb_new_segment_mark_start">başlangıç</string>
+ <string name="revanced_sb_new_segment_mark_end">bitiş</string>
+ <string name="revanced_sb_new_segment_now">şimdi</string>
+ <string name="revanced_sb_new_segment_time_start">Bölümün başladığı zaman</string>
+ <string name="revanced_sb_new_segment_time_end">Bölümün bittiği zaman</string>
+ <string name="revanced_sb_new_segment_confirm_title">Süreler doğru mu?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Segment\n\n%1$s\niçin\n%2$s\n\n(%3$s)\n\nGöndermeye hazır mısınız?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Başlangıç bitişten önce olmalıdır</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Öncelikle zaman çubuğunda iki yer işaretleyin</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Bölümü önizleyin ve sorunsuz bir şekilde atladığından emin olun</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Bölümün zamanlamasını el ile ayarlayın</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Bölümün başlangıcını mı, bitişini mi düzenlemek istiyorsunuz?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Geçersiz süre girildi</string>
+ <string name="revanced_sb_stats">İstatistikler</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">İstatistikler geçici olarak kullanılamıyor (API kapalı)</string>
+ <string name="revanced_sb_stats_loading">Yükleniyor...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock devre dışı</string>
+ <string name="revanced_sb_stats_username">Kullanıcı adınız: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Kullanıcı adınızı değiştirmek için buraya dokunun</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Kullanıcı adı değiştirilemiyor: Durum: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Kullanıcı adı başarıyla değiştirildi</string>
+ <string name="revanced_sb_stats_reputation">İtibarınız <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions"><b>%s</b> kısım oluşturdunuz</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock liderlik tablosu</string>
+ <string name="revanced_sb_stats_saved">İnsanları <b>%s</b> kısımdan kurtardınız</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Küresel istatistikleri ve en çok katkıda bulunanları görmek için buraya dokunun</string>
+ <string name="revanced_sb_stats_saved_sum">Bu, hayatlarının <b>%s</b> kadarı.<br>Liderlik tablosunu görmek için dokunun</string>
+ <string name="revanced_sb_stats_self_saved"><b>%s</b> kısım atladınız</string>
+ <string name="revanced_sb_stats_self_saved_sum">Bu da <b>%s</b> demek</string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Atlanan kısım sayacı sıfırlansın mı?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s saat %2$s dakika</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s dakika %2$s saniye</string>
+ <string name="revanced_sb_stats_saved_second_format">%s saniye</string>
+ <string name="revanced_sb_color_dot_label">Renk:</string>
+ <string name="revanced_sb_color_changed">Renk değiştirildi</string>
+ <string name="revanced_sb_color_reset">Renk sıfırlandı</string>
+ <string name="revanced_sb_color_invalid">Geçersiz renk kodu</string>
+ <string name="revanced_sb_reset_color">Rengi sıfırla</string>
+ <string name="revanced_sb_reset">Sıfırla</string>
+ <string name="revanced_sb_about">Hakkında</string>
+ <string name="revanced_sb_about_api_sum">Veri, SponsorBlock APIsi tarafından sağlanıyor. Daha fazla öğrenmek için ve diğer platformlar için indirmeleri görmek için dokunun</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Uygulama sürümünü taklit et</string>
+ <string name="revanced_spoof_app_version_summary_on">Sürüm taklit ediliyor</string>
+ <string name="revanced_spoof_app_version_summary_off">Sürüm taklit edilmiyor</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Uygulama sürümü, YouTube\'nin daha eski bir sürümü olarak taklit edilecektir.\n\nBu, uygulamanın görünümünü ve özelliklerini değiştirecektir, fakat bilinmeyen yan etkiler oluşabilir.\n\nEğer sonradan kapatılırsa, arayüz hatalarını önlemek için uygulama verilerinin temizlenmesi tavsiye edilir.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Taklit edilecek uygulama sürümü</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Gizli modda Shorts için RYD\'yi onar</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Geniş video hızı & kalite menüsünü geri getir</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.08.39 - Kitaplık sekmesini geri getir</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Eski oynatma listesi rafını geri getir</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Eski arayüzü geri getir</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Başlangıç sayfasını seç</string>
+ <string name="revanced_start_page_entry_0">Varsayılan</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Ana Sayfa</string>
+ <string name="revanced_start_page_entry_2">Arama</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Abonelikler</string>
+ <string name="revanced_start_page_entry_4">Keşfet</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Siz sekmesi</string>
+ <string name="revanced_start_page_entry_7">Beğenilen videolar</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Geçmiş</string>
+ <string name="revanced_start_page_entry_9">Trendler</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Shorts oynatıcıya devam edilmesini devre dışı bırak</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shorts oynatıcı açılışta devam etmeyecek</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts oynatıcı açılışta devam edecek</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Tablet düzenini etkinleştir</string>
+ <string name="revanced_tablet_layout_summary_on">Tablet düzeni etkin</string>
+ <string name="revanced_tablet_layout_summary_off">Tablet düzeni devre dışı</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Topluluk gönderileri tablet düzeninde görünmez</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Mini oynatıcı</string>
+ <string name="revanced_miniplayer_screen_summary">Uygulama içi küçültülmüş oynatıcının tarzını değiştir</string>
+ <string name="revanced_miniplayer_type_title">Mini oynatıcı tipi</string>
+ <string name="revanced_miniplayer_type_entry_1">Orijinal</string>
+ <string name="revanced_miniplayer_type_entry_2">Telefon</string>
+ <string name="revanced_miniplayer_type_entry_3">Tablet</string>
+ <string name="revanced_miniplayer_type_entry_4">Modern 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Modern 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Modern 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Büyüt ve kapat düğmelerini gizle</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Düğmeler gizli\n(büyütmek veya kapatmak için mini oynatıcıyı sürükleyin)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Büyüt ve kapat düğmeleri görünür</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Alt metinleri gizle</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Alt metinler gizli</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Alt metinler görünür</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">İleri/geri atlama düğmelerini gizle</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">İleri/geri atlama düğmeleri gizli</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">İleri/geri atlama düğmeleri görünür</string>
+ <string name="revanced_miniplayer_opacity_title">Katman şeffaflığı</string>
+ <string name="revanced_miniplayer_opacity_summary">0-100 arasında opaklık değeri, 0 şeffaftır</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Katman şeffaflığı 0-100 arasında olmalıdır</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Gradyan yükleme ekranını etkinleştir</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Yükleme ekranı gradyan bir arka plana sahip olacak</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Yükleme ekranı düz bir arka plana sahip olacak</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Özel zaman çubuğu rengini etkinleştir</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Özel zaman çubuğu rengi gösteriliyor</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Orijinal zaman çubuğu rengi gösteriliyor</string>
+ <string name="revanced_seekbar_custom_color_value_title">Özel zaman çubuğu rengi</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Zaman çubuğunun rengi</string>
+ <string name="revanced_seekbar_custom_color_invalid">Geçersiz renk değeri. Varsayılana sıfırlanıyor.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">\"Ana Sayfa\" sekmesinde</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">\"Abonelikler\" sekmesinde</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">\"Siz\" sekmesi</string>
+ <string name="revanced_alt_thumbnail_player_title">Oynatıcı çalma listeleri, öneriler</string>
+ <string name="revanced_alt_thumbnail_search_title">Arama sonuçlarında</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Orijinal küçük resimler</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow ve Orijinal küçük resimleri</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow ve Hareketsiz Yakalamalar</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Hareketsiz yakalamalar</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow, YouTube videoları için topluluk kaynaklı kapak resimleri sağlar. Bu kapak resimleri, genellikle YouTube\'nin sağladığından daha alakalıdır\n\nEtkinleştirildiğinde, video URLleri API sunucusuna gönderilecektir ve başka hiçbir veri gönderilmeyecektir. Eğer bir videonun DeArrow kapak resimleri yoksa, orijinal veya video içinden kareler gösterilir.\n\nDeArrow hakkında daha fazla öğrenmek için dokunun</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">API kullanılamadığında bir tost bildirimi göster</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">DeArrow kullanılamadığında tost bildirimi gösterilir</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">DeArrow kullanılamadığında tost bildirimi gösterilmez</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API uç noktası</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrow küçük resim önbelleğinin URL\'si</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Hareketsiz video kareleri</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Video içinden kareler, her videonun başından/ortasından/sonundan alınır. Bu resimler YouTube\'da yerleşiktir ve harici bir API kullanılmaz</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Hızlı video içi kareleri kullan</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Orta kalite video içinden kareler kullanılıyor. Kapak resimleri daha hızlı yüklenecektir, fakat canlı yayınlar, yayınlanmayan veya çok eski videolar boş kapak resimleri gösterebilir</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Yüksek kalite video içi kareler kullanılıyor</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Karenin alınacağı video zamanı</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Video başlangıcı</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Video ortası</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Video sonu</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow geçici olarak kullanılamıyor (durum kodu: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow geçici olarak kullanılamıyor</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">ReVanced duyurularını göster</string>
+ <string name="revanced_announcements_summary_on">Başlangıçta duyurular gösteriliyor</string>
+ <string name="revanced_announcements_summary_off">Başlangıçta duyurular gösterilmiyor</string>
+ <string name="revanced_announcements_enabled_summary">Başlangıçta duyuruları göster</string>
+ <string name="revanced_announcements_connection_failed">Duyuru sağlayıcısına bağlanılamadı</string>
+ <string name="revanced_announcements_dialog_dismiss">Yoksay</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Otomatik tekrarı etkinleştir</string>
+ <string name="revanced_auto_repeat_summary_on">Otomatik tekrar etkin</string>
+ <string name="revanced_auto_repeat_summary_off">Otomatik tekrar devre dışı</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Cihaz boyutlarını taklit et</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Cihaz boyutları taklit ediliyor\n\nDaha yüksek video kaliteleri açılabilir ancak video oynatma takılmaları, daha kötü pil ömrü, ve bilinmeyen yan etkiler yaşayabilirsiniz</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Cihaz boyutları taklit edilmiyor\n\nBunu etkinleştirmek daha yüksek video kalitelerini açabilir</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Bunu etkinleştirmek video oynatma takılmaları, daha kötü pil ömrü, ve bilinmeyen yan etkiler yaşamanıza sebep olabilir.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore ayarları</string>
+ <string name="microg_settings_summary">GmsCore için ayarlar</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">URL yönlendirmelerini atla</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL yönlendirmeleri atlanıyor</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL yönlendirmeleri atlanmıyor</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Bağlantıları tarayıcıda aç</string>
+ <string name="revanced_external_browser_summary_on">Bağlantılar harici olarak açılıyor</string>
+ <string name="revanced_external_browser_summary_off">Bağlantılar uygulamada açılıyor</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Arka planda oynatma</string>
+ <string name="revanced_background_playback_summary">Bu ayar, Ayarlar -> Arka Plan kısmında bulunur</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">İzleyici sorgu parametresini kaldır</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Bağlantılardan izleyici sorgu parametresi kaldırılıyor</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Bağlantılardan izleyici sorgu parametresi kaldırılmıyor</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Yakınlaştırırken titreşimi devre dışı bırak</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Titreşim devre dışı</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Titreşim etkin</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Otomatik kalite</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Video kalitesi değişikliklerini hatırla</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Kalite değişiklikleri tüm videolara uygulanacak</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Kalite değişiklikleri yalnızca mevcut videoya uygulanacak</string>
+ <string name="revanced_video_quality_default_wifi_title">Wi-Fi ağındaki varsayılan video kalitesi</string>
+ <string name="revanced_video_quality_default_mobile_title">Mobil ağdaki varsayılan video kalitesi</string>
+ <string name="revanced_remember_video_quality_mobile">mobil ağ</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Varsayılan %1$s kalitesi, %2$s olarak değiştirildi</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Hız diyaloğu düğmesini göster</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Düğme gösteriliyor</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Buton gösterilmiyor</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Özel oynatma hızları</string>
+ <string name="revanced_custom_playback_speeds_summary">Yeni oynatma hızları ekle veya mevcut olanları değiştir</string>
+ <string name="revanced_custom_playback_speeds_invalid">Özel hızlar %s\'dan az olmalıdır. Varsayılanlar kullanılıyor.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Geçersiz özel oynatma hızları. Varsayılanlar seçildi.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Oynatma hızı değişikliklerini hatırla</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Oynatma hızı değişiklikleri tüm videolara uygulanacak</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Oynatma hızı değişiklikleri yalnızca geçerli videoya uygulanacak</string>
+ <string name="revanced_playback_speed_default_title">Varsayılan oynatma hızı</string>
+ <string name="revanced_remember_playback_speed_toast">Varsayılan hız %s olarak değiştirildi</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Eski video kalite menüsünü geri getir</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Eski video kalite menüsü gösteriliyor</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Eski video kalite menüsü gösterilmiyor</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Kaydırarak sardırmayı etkinleştir</string>
+ <string name="revanced_slide_to_seek_summary_on">Kaydırarak sardırma etkin</string>
+ <string name="revanced_slide_to_seek_summary_off">Kaydırarak saydırma etkin değil</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">İstemciyi taklit et</string>
+ <string name="revanced_spoof_client_screen_summary">Oynatma sorunlarını önlemek için istemciyi taklit et</string>
+ <string name="revanced_spoof_client_title">İstemciyi taklit et</string>
+ <string name="revanced_spoof_client_summary_on">İstemci taklit ediliyor</string>
+ <string name="revanced_spoof_client_summary_off">İstemci taklit edilmiyor\n\nVideo oynatma çalışmayabilir</string>
+ <string name="revanced_spoof_client_user_dialog_message">Bu ayarı devre dışı bırakmak video oynatma sorunlarına yol açabilir.</string>
+ <string name="revanced_spoof_client_use_ios_title">İstemciyi iOS olarak taklit et</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">İstemci şu anda iOS olarak taklit ediliyor\n\nYan etkiler şunları içerir:\n• HDR videolar yok\n• İzleme geçmişi çalışmayabilir\n• Yüksek video kaliteleri eksik olabilir\n• Canlı yayınlar sadece ses olarak oynatılamaz\n• Canlı yayınlar Android 8.0\'da izlenemez</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">İstemci şu anda Android VR olarak taklit ediliyor\n\nYan etkiler şunları içerir:\n• HDR videolar yok\n• Çocuklara özel videolar oynatılamaz\n• Duraklatılmış videolar rastgele bir şekilde devam edebilir\n• Shorts zaman çubuğu küçük resimleri düşük kalitede\n• \'İndir\' eylem düğmesi her zaman gizli\n• Bitiş ekranı kartları her zaman gizli</string>
+ <string name="revanced_spoof_client_storyboard_timeout">İstemci küçük resimlerini taklit etme kullanılamıyor (API zaman aşımına uğradı)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">İstemci küçük resimlerini taklit etme geçici olarak kullanılamıyor: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Ses reklamlarını engelle</string>
+ <string name="revanced_block_audio_ads_summary_on">Ses reklamları engelleniyor</string>
+ <string name="revanced_block_audio_ads_summary_off">Ses reklamları engellenmiyor</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s kullanılamıyor. Reklamlar görünebilir. Ayarlardan başka bir reklam engelleme hizmetine geçmeyi deneyin.</string>
+ <string name="revanced_embedded_ads_service_failed">%s sunucusu hata verdi. Reklamlar görünebilir. Ayarlardan başka bir reklam engelleme hizmetine geçmeyi deneyin.</string>
+ <string name="revanced_block_embedded_ads_title">Gömülü video reklamlarını engelle</string>
+ <string name="revanced_block_embedded_ads_entry_1">Devre dışı</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Video reklamlarını engelle</string>
+ <string name="revanced_block_video_ads_summary_on">Video reklamları engelleniyor</string>
+ <string name="revanced_block_video_ads_summary_off">Video reklamları engellenmiyor</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">mesaj silindi</string>
+ <string name="revanced_show_deleted_messages_title">Silinen mesajları göster</string>
+ <string name="revanced_show_deleted_messages_entry_1">Silinen mesajları gösterme</string>
+ <string name="revanced_show_deleted_messages_entry_2">Silinen mesajları spoiler ile gizle</string>
+ <string name="revanced_show_deleted_messages_entry_3">Silinen mesajları üstü çizilmiş olarak göster</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Kanal Puanlarını otomatik olarak topla</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Kanal Puanları otomatik olarak toplanıyor</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Kanal Puanları otomatik olarak toplanmıyor</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Twitch debug modunu etkinleştir</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch debug modu etkin (önerilmez)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch debug modu devre dışı</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced Ayarları</string>
+ <string name="revanced_ads_screen_title">Reklamlar</string>
+ <string name="revanced_ads_screen_summary">Reklam engelleme ayarları</string>
+ <string name="revanced_chat_screen_title">Sohbet</string>
+ <string name="revanced_chat_screen_summary">Sohbet ayarları</string>
+ <string name="revanced_misc_screen_title">Çeşitli</string>
+ <string name="revanced_misc_screen_summary">Çeşitli ayarlar</string>
+ <string name="revanced_general_category_title">Genel ayarlar</string>
+ <string name="revanced_other_category_title">Diğer ayarlar</string>
+ <string name="revanced_client_ads_category_title">İstemci taraflı reklamlar</string>
+ <string name="revanced_surestream_ads_category_title">Sunucu taraflı kesin akışlı reklamlar</string>
+ <string name="revanced_twitch_debug_title">Debug logları</string>
+ <string name="revanced_twitch_debug_summary_on">Debug logları etkin</string>
+ <string name="revanced_twitch_debug_summary_off">Debug logları devre dışı</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-uk-rUA/strings.xml b/src/main/resources/addresources/values-uk-rUA/strings.xml
new file mode 100644
index 0000000000..b8b2f47eb9
--- /dev/null
+++ b/src/main/resources/addresources/values-uk-rUA/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Бажаєте продовжити?</string>
+ <string name="revanced_settings_reset">Скинути</string>
+ <string name="revanced_settings_restart_title">Оновити та перезавантажити?</string>
+ <string name="revanced_settings_restart">Перезавантажити</string>
+ <string name="revanced_settings_import">Імпортувати</string>
+ <string name="revanced_settings_import_copy">Копіювати</string>
+ <string name="revanced_settings_import_reset">Налаштування ReVanced скинуто до стандартних</string>
+ <string name="revanced_settings_import_success">Імпортовано %d налаштувань</string>
+ <string name="revanced_settings_import_failure_parse">Не вдалося імпортувати: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore не встановлено. Встановіть його.</string>
+ <string name="gms_core_dialog_title">Потрібна дія</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore не має дозволу працювати у фоновому режимі.\n\nДотримуйтеся посібника \"Don\'t kill my app\" для вашого телефону і слідкуйте інструкціям для вашої установки MicroG.\n\nЦе необхідно для роботи програми.</string>
+ <string name="gms_core_dialog_open_website_text">Відкрити вебсайт</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Для MicroG GmsCore не встановлено режим \"Без обмежень\" в оптимізації живлення.\n\nНатисніть кнопку \"Продовжити\" та вимкніть оптимізацію живлення.</string>
+ <string name="gms_core_dialog_continue_text">Продовжити</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">Ви використовуєте ReVanced Patches версії <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Примітка</string>
+ <string name="revanced_settings_about_links_dev_body">Ця версія є перед релізною, тому у Вас можуть виникати несподівані проблеми</string>
+ <string name="revanced_settings_about_links_header">Офіційні посилання</string>
+ <string name="revanced_pref_import_export_title">Імпорт / Експорт налаштувань</string>
+ <string name="revanced_pref_import_export_summary">Імпорт / Експорт налаштувань ReVanced\n\nДля збереження налаштувань скопіюйте текст у вікні кнопкою \"Копіювати\" та збережіть його в текстовому файлі.\nДля відновлення налаштувань вставте у вікно збережений раніше текст та натисніть кнопку \"Імпортувати\"</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Інформація</string>
+ <string name="revanced_settings_screen_01_ads_title">Реклама</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Альтернативні прев\'ю</string>
+ <string name="revanced_settings_screen_03_feed_title">Стрічка</string>
+ <string name="revanced_settings_screen_04_player_title">Плеєр</string>
+ <string name="revanced_settings_screen_05_general_title">Загальні налаштування</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Панель прогресу</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Керування жестами</string>
+ <string name="revanced_settings_screen_11_misc_title">Різне</string>
+ <string name="revanced_settings_screen_12_video_title">Відео</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Налагодження</string>
+ <string name="revanced_debug_screen_summary">Увімкнення або вимкнення параметрів налагодження</string>
+ <string name="revanced_debug_title">Журнал налагодження</string>
+ <string name="revanced_debug_summary_on">Журнали налагодження ввімкнено</string>
+ <string name="revanced_debug_summary_off">Журнали налагодження вимкнуто</string>
+ <string name="revanced_debug_protobuffer_title">Реєструвати буфер протоколу</string>
+ <string name="revanced_debug_protobuffer_summary_on">Журнали налагодження містять протобуфер</string>
+ <string name="revanced_debug_protobuffer_summary_off">Журнали налагодження не містять протобуфер</string>
+ <string name="revanced_debug_stacktrace_title">Реєструвати трасування стека</string>
+ <string name="revanced_debug_stacktrace_summary_on">Журнали налагодження містять трасування стека</string>
+ <string name="revanced_debug_stacktrace_summary_off">Журнали налагодження не містять трасування стека</string>
+ <string name="revanced_debug_toast_on_error_title">Показувати тост при помилці ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Тост показується, якщо сталася помилка</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Тост не показується, якщо сталася помилка</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Вимкнення сповіщень про помилки приховує всі сповіщення про помилки ReVanced.\n\nВи не отримуватимете сповіщення про будь-які несподівані події.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Вимкнути відблиск кнопок \"Подобається\" / \"Підписатися\"</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Кнопки \"Подобається\" та \"Підписатися\" не відблискуватимуть при згадуванні</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Кнопки \"Подобається\" та \"Підписатися\" відблискуватимуть при згадуванні</string>
+ <string name="revanced_hide_gray_separator_title">Приховати сірі роздільники</string>
+ <string name="revanced_hide_gray_separator_summary_on">Сірі роздільники між елементами інтерфейсу приховано</string>
+ <string name="revanced_hide_gray_separator_summary_off">Сірі роздільники між елементами інтерфейсу показуються</string>
+ <string name="revanced_hide_channel_watermark_title">Приховати водяний знак каналу</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Водяний знак у нижній частині відеоплеєра приховано</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Водяний знак у нижній частині відеоплеєра показується</string>
+ <string name="revanced_hide_horizontal_shelves_title">Приховати горизонтальні полиці</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Полиці приховано, такі як:\n• Важливі новини\n• Продовжити перегляд\n• Переглянути більше каналів\n• Покупки\n• Переглянути ще раз</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Горизонтальні полиці показуються</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Приховати кнопку \"Спонсорувати\"</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Кнопку \"Спонсорувати\" приховано</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Кнопка \"Спонсорувати\" показується</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Приховати полицю \"Для вас\"</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Полицю \"Для вас\" на сторінці каналу приховано</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Полиця \"Для вас\" на сторінці каналу показується</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Приховати кнопку \"Сповістити\"</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Кнопку \"Сповістити\" приховано</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Кнопка \"Сповістити\" показується</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Приховати \"Люди також дивилися\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Рекомендації \"Люди також дивилися\" приховано</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Рекомендації \"Люди також дивилися\" показуються</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Приховати кнопку \"Показати більше\"</string>
+ <string name="revanced_hide_show_more_button_summary_on">Кнопку \"Показати більше\" приховано</string>
+ <string name="revanced_hide_show_more_button_summary_off">Кнопка \"Показати більше\" показується</string>
+ <string name="revanced_hide_timed_reactions_title">Приховати тимчасові реакції</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Тимчасові реакції приховано</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Тимчасові реакції показуються</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Приховати заголовок полиці в пошуку</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Заголовок полиці в результаті пошуку приховано</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Заголовок полиці в результаті пошуку показується</string>
+ <string name="revanced_hide_channel_guidelines_title">Приховати правила каналу</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Правила каналу приховано</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Правила каналу показуються</string>
+ <string name="revanced_hide_expandable_chip_title">Приховати розширювану фішку</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Розширювані фішки під відео приховано</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Розширювані фішки під відео показуються</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Приховати колонтитул меню якості відео</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Нижній колонтитул меню якості відео приховано</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Нижній колонтитул меню якості відео показується</string>
+ <string name="revanced_hide_community_posts_title">Приховати публікації спільноти</string>
+ <string name="revanced_hide_community_posts_summary_on">Публікації спільноти приховано</string>
+ <string name="revanced_hide_community_posts_summary_off">Публікації спільноти показуються</string>
+ <string name="revanced_hide_compact_banner_title">Приховати компактні банери</string>
+ <string name="revanced_hide_compact_banner_summary_on">Компактні банери приховано</string>
+ <string name="revanced_hide_compact_banner_summary_off">Компактні банери показуються</string>
+ <string name="revanced_hide_movies_section_title">Приховати секцію фільмів</string>
+ <string name="revanced_hide_movies_section_summary_on">Секцію фільмів приховано</string>
+ <string name="revanced_hide_movies_section_summary_off">Секція фільмів показується</string>
+ <string name="revanced_hide_feed_survey_title">Приховати опитування</string>
+ <string name="revanced_hide_feed_survey_summary_on">Опитування в стрічці приховано</string>
+ <string name="revanced_hide_feed_survey_summary_off">Опитування в стрічці показуються</string>
+ <string name="revanced_hide_community_guidelines_title">Приховати правила спільноти</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Правила спільноти у верхній частині секції коментарів приховано</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Правила спільноти у верхній частині секції коментарів показуються</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Приховати правила спільноти підписок</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Правила спільноти підписок приховано</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Правила спільноти підписок показуються</string>
+ <string name="revanced_hide_channel_member_shelf_title">Приховати полицю учасників каналу</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Полицю учасників каналу приховано</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Полиця учасників каналу показується</string>
+ <string name="revanced_hide_emergency_box_title">Приховати аварійні скриньки</string>
+ <string name="revanced_hide_emergency_box_summary_on">Аварійні скриньки приховано</string>
+ <string name="revanced_hide_emergency_box_summary_off">Аварійні скриньки показуються</string>
+ <string name="revanced_hide_info_panels_title">Приховати інформаційні панелі</string>
+ <string name="revanced_hide_info_panels_summary_on">Інформаційні панелі приховано</string>
+ <string name="revanced_hide_info_panels_summary_off">Інформаційні панелі показуються</string>
+ <string name="revanced_hide_medical_panels_title">Приховати медичні панелі</string>
+ <string name="revanced_hide_medical_panels_summary_on">Панелі про медицину приховано</string>
+ <string name="revanced_hide_medical_panels_summary_off">Панелі про медицину показуються</string>
+ <string name="revanced_hide_channel_bar_title">Приховати панель каналу</string>
+ <string name="revanced_hide_channel_bar_summary_on">Панель каналу під відеоплеєром приховано</string>
+ <string name="revanced_hide_channel_bar_summary_off">Панель каналу під відеоплеєром показується</string>
+ <string name="revanced_hide_playables_title">Приховати \"Ігрову кімнату\"</string>
+ <string name="revanced_hide_playables_summary_on">Розділ \"Ігрова кімната\" приховано</string>
+ <string name="revanced_hide_playables_summary_off">Розділ \"Ігрова кімната\" показується</string>
+ <string name="revanced_hide_quick_actions_title">Приховати швидкі дії</string>
+ <string name="revanced_hide_quick_actions_summary_on">Швидкі дії в повноекранному режимі приховано</string>
+ <string name="revanced_hide_quick_actions_summary_off">Швидкі дії в повноекранному режимі показуються</string>
+ <string name="revanced_hide_related_videos_title">Приховати пов\'язані відео у швидких діях</string>
+ <string name="revanced_hide_related_videos_summary_on">Пов\'язані відео у швидких діях приховано</string>
+ <string name="revanced_hide_related_videos_summary_off">Пов\'язані відео у швидких діях показуються</string>
+ <string name="revanced_hide_image_shelf_title">Приховати зображення в пошуку</string>
+ <string name="revanced_hide_image_shelf_summary_on">Зображення біля результатів пошуку приховано</string>
+ <string name="revanced_hide_image_shelf_summary_off">Зображення біля результатів пошуку показуються</string>
+ <string name="revanced_hide_latest_posts_ads_title">Приховати останні публікації</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Останні публікації приховано</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Останні публікації показуються</string>
+ <string name="revanced_hide_mix_playlists_title">Приховати \"Мікс плейлисти\"</string>
+ <string name="revanced_hide_mix_playlists_summary_on">\"Мікс плейлисти\" приховано</string>
+ <string name="revanced_hide_mix_playlists_summary_off">\"Мікс плейлисти\" показуються</string>
+ <string name="revanced_hide_artist_cards_title">Приховати картки виконавця</string>
+ <string name="revanced_hide_artist_cards_summary_on">Картки виконавця приховано</string>
+ <string name="revanced_hide_artist_cards_summary_off">Картки виконавця показуються</string>
+ <string name="revanced_hide_chips_shelf_title">Приховати полицю фішок</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Полицю фішок приховано</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Полиця фішок показується</string>
+ <string name="revanced_hide_attributes_section_title">Приховати секції атрибутів</string>
+ <string name="revanced_hide_attributes_section_summary_on">Секції \"Місця на відео\", \"Ігри\" та \"Музика\" приховано</string>
+ <string name="revanced_hide_attributes_section_summary_off">Секції \"Місця на відео\", \"Ігри\" та \"Музика\" показуються</string>
+ <string name="revanced_hide_chapters_section_title">Приховати секцію \"Розділи\"</string>
+ <string name="revanced_hide_chapters_section_summary_on">Секцію \"Розділи\" приховано</string>
+ <string name="revanced_hide_chapters_section_summary_off">Секція \"Розділи\" показується</string>
+ <string name="revanced_hide_podcast_section_title">Приховати секцію \"Послухайте подкаст\"</string>
+ <string name="revanced_hide_podcast_section_summary_on">Секцію \"Послухайте подкаст\" приховано</string>
+ <string name="revanced_hide_podcast_section_summary_off">Секція \"Послухайте подкаст\" показується</string>
+ <string name="revanced_hide_info_cards_section_title">Приховати секцію інформаційних карток</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Секцію інформаційних карток приховано</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Секція інформаційних карток показується</string>
+ <string name="revanced_hide_transcript_section_title">Приховати секцію \"Текст відео\"</string>
+ <string name="revanced_hide_transcript_section_summary_on">Секцію \"Текст відео\" приховано</string>
+ <string name="revanced_hide_transcript_section_summary_off">Секція \"Текст відео\" показується</string>
+ <string name="revanced_hide_description_components_screen_title">Опис відео</string>
+ <string name="revanced_hide_description_components_screen_summary">Приховати або показувати компоненти опису відео</string>
+ <string name="revanced_custom_filter_screen_title">Користувацький фільтр</string>
+ <string name="revanced_custom_filter_screen_summary">Приховати компоненти за допомогою користувацьких фільтрів</string>
+ <string name="revanced_custom_filter_title">Увімкнути користувацький фільтр</string>
+ <string name="revanced_custom_filter_summary_on">Користувацький фільтр увімкнуто</string>
+ <string name="revanced_custom_filter_summary_off">Користувацький фільтр вимкнуто</string>
+ <string name="revanced_custom_filter_strings_title">Користувацький фільтр</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Список рядків конструктора шляхів компонентів для фільтрування, розділених новим рядком</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Недійсний фільтр: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Приховати контент за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Приховати відео із результатів пошуку та стрічки за допомогою фільтрів ключових слів</string>
+ <string name="revanced_hide_keyword_content_home_title">Приховати відео на головній</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Відео на вкладці \"Головна\" фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Відео на вкладці \"Головна\" не фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Приховати відео в підписках</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Відео на вкладці \"Підписки\" фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Відео на вкладці \"Підписки\" не фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_search_title">Приховати відео в пошуку</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Результати пошуку фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Результати пошуку не фільтруються за ключовими словами</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Ключові слова, які потрібно приховати</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Ключові слова та фрази, які потрібно приховати, розділені новими рядками.\n\n• Довжина ключового слова повинна бути не менше 3-х символів\n• Слова з великими літерами посередині мають містити регістр (наприклад: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Про фільтр ключових слів</string>
+ <string name="revanced_hide_keyword_content_about_summary">Головна/Підписки/Результати пошуку фільтруються, щоб приховати відео за ключовими словами.\n\nОбмеження:\n• Деякі Shorts можуть не приховуватися\n• Деякі елементи інтерфейсу можуть не приховуватися\n• Пошук за ключовим словом може не показувати результатів</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Ключове слово \'%s\' не можна використовувати</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Ключове слово \'%1$s\' менше %2$d-х символів</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Ключове слово \'$s\' приховає всі відео</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Приховати загальну рекламу</string>
+ <string name="revanced_hide_general_ads_summary_on">Загальну рекламу приховано</string>
+ <string name="revanced_hide_general_ads_summary_off">Загальна реклама показується</string>
+ <string name="revanced_hide_fullscreen_ads_title">Приховати повноекранну рекламу</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Повноекранну рекламу приховано\n\nЦя функція доступна тільки для старих пристроїв</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Повноекранна реклама показується</string>
+ <string name="revanced_hide_buttoned_ads_title">Приховати рекламу з кнопкою</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Рекламу з кнопкою приховано</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Реклама з кнопкою показується</string>
+ <string name="revanced_hide_paid_promotion_label_title">Приховати \"Містить пряму рекламу\"</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Мітку \"Містить пряму рекламу\" приховано</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Мітка \"Містить пряму рекламу\" показується</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Приховати картки само спонсорства</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Картки само спонсорства приховано</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Картки само спонсорства показуються</string>
+ <string name="revanced_hide_products_banner_title">Приховати банер для перегляду товарів</string>
+ <string name="revanced_hide_products_banner_summary_on">Банер для перегляду товарів приховано</string>
+ <string name="revanced_hide_products_banner_summary_off">Банер для перегляду товарів показується</string>
+ <string name="revanced_hide_shopping_links_title">Приховати посилання на покупки</string>
+ <string name="revanced_hide_shopping_links_summary_on">Посилання на покупки в описі відео приховано</string>
+ <string name="revanced_hide_shopping_links_summary_off">Посилання на покупки в описі відео показуються</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Приховати кнопку \"Відвідати магазин\"</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Кнопку \"Відвідати магазин\" на сторінках каналів приховано</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Кнопка \"Відвідати магазин\" на сторінках каналів показується</string>
+ <string name="revanced_hide_web_search_results_title">Приховати результати вебпошуку</string>
+ <string name="revanced_hide_web_search_results_summary_on">Результати вебпошуку приховано</string>
+ <string name="revanced_hide_web_search_results_summary_off">Результати вебпошуку показуються</string>
+ <string name="revanced_hide_merchandise_banners_title">Приховати товарні банери</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Товарні банери приховано</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Товарні банери показуються</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Приховувати повноекранну рекламу працює тільки зі старими пристроями</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Приховати рекламу YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Рекламу YouTube Premium під відеоплеєром приховано</string>
+ <string name="revanced_hide_get_premium_summary_off">Реклама YouTube Premium під відеоплеєром показується</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Приховати відеорекламу</string>
+ <string name="revanced_hide_video_ads_summary_on">Відеорекламу приховано</string>
+ <string name="revanced_hide_video_ads_summary_off">Відеореклама показується</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL-адресу скопійовано до буфера</string>
+ <string name="revanced_share_copy_url_timestamp_success">URL-адресу з міткою часу скопійовано до буфера</string>
+ <string name="revanced_copy_video_url_title">Кнопка копіювання URL відео</string>
+ <string name="revanced_copy_video_url_summary_on">Кнопка показується. Натисніть, щоб скопіювати URL-адресу відео. Натисніть і утримуйте, щоб скопіювати URL-адресу відео з міткою часу</string>
+ <string name="revanced_copy_video_url_summary_off">Кнопка копіювання URL-адреси відео не показується</string>
+ <string name="revanced_copy_video_url_timestamp_title">Кнопка копіювання URL із міткою часу</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Кнопка показується. Натисніть, щоб скопіювати URL-адресу відео з міткою часу. Натисніть і утримуйте, щоб скопіювати URL-адресу без мітки часу відео</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Кнопка копіювання URL-адреси відео із міткою часу не показується</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Вилучити діалог про неприйнятний контент</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Діалогове вікно про неприйнятний контент буде видалено</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Діалогове вікно про неприйнятний контент буде показуватися</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Це не обходить вікові обмеження, а просто приймає їх автоматично.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Зовнішній завантажувач</string>
+ <string name="revanced_external_downloader_screen_summary">Налаштування для використання зовнішнього завантажувача відео</string>
+ <string name="revanced_external_downloader_title">Кнопка завантажувача в плеєрі</string>
+ <string name="revanced_external_downloader_summary_on">Кнопка зовнішнього завантажувача показується в плеєрі</string>
+ <string name="revanced_external_downloader_summary_off">Кнопка зовнішнього завантажувача не показується в плеєрі</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Підмінити кнопку \"Завантажити\"</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Кнопка \"Завантажити\" запускає зовнішній завантажувач</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Кнопка \"Завантажити\" запускає власний завантажувач</string>
+ <string name="revanced_external_downloader_name_title">Ім\'я пакета завантажувача</string>
+ <string name="revanced_external_downloader_name_summary">Ім\'я пакета встановленого Вами додатку зовнішнього завантажувача, такого як NewPipe чи YTDLnis</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s не встановлено. Встановіть його.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Вимкнути жест покадрового перемотування</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Жест для покадрового перемотування вимкнуто</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Жест для покадрового перемотування ввімкнуто</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Перемотування натисканням на панель</string>
+ <string name="revanced_seekbar_tapping_summary_on">Перемотування натисканням на панель прогресу ввімкнуто</string>
+ <string name="revanced_seekbar_tapping_summary_off">Перемотування натисканням на панель прогресу вимкнуто</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Зміна яскравості жестом</string>
+ <string name="revanced_swipe_brightness_summary_on">Зміну яскравості жестом по лівій частині відеоплеєра ввімкнуто</string>
+ <string name="revanced_swipe_brightness_summary_off">Зміну яскравості жестом по лівій частині відеоплеєра вимкнуто</string>
+ <string name="revanced_swipe_volume_title">Зміна гучності жестом</string>
+ <string name="revanced_swipe_volume_summary_on">Зміну гучності жестом по правій частині відеоплеєра ввімкнуто</string>
+ <string name="revanced_swipe_volume_summary_off">Зміну гучності жестом по правій частині відеоплеєра вимкнуто</string>
+ <string name="revanced_swipe_press_to_engage_title">Натискання для жесту</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Натискання та утримання для жесту ввімкнуто</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Натискання та утримання для жесту вимкнуто</string>
+ <string name="revanced_swipe_haptic_feedback_title">Вібрація при жестах</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Вібрацію при жестах увімкнуто</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Вібрацію при жестах вимкнуто</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Зберігати та відновлювати яскравість</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Значення яскравості при переході до повноекранного режиму зберігається та відновлюється</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Значення яскравості при переході до повноекранного режиму не зберігається та не відновлюється</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Жест автояскравості</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Проведення вниз до найнижчого значення яскравості вмикає автоматичну яскравість</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Проведення вниз до найнижчого значення не вмикає автоматичну яскравість</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Авто</string>
+ <string name="revanced_swipe_overlay_timeout_title">Час показу панелі жесту</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Скільки мілісекунд спливаюча панель при жесті буде показуватися</string>
+ <string name="revanced_swipe_text_overlay_size_title">Розмір шрифту панелі жесту</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Розмір шрифту спливаючої панелі при жесті</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Видимість фону панелі жесту</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Видимість фону спливаючої панелі при жесті</string>
+ <string name="revanced_swipe_threshold_title">Поріг величини жесту</string>
+ <string name="revanced_swipe_threshold_summary">Мінімальна амплітуда руху, що розпізнається як жест</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Вимкнути автоматичні субтитри</string>
+ <string name="revanced_auto_captions_summary_on">Автоматичні субтитри вимкнуто</string>
+ <string name="revanced_auto_captions_summary_off">Автоматичні субтитри ввімкнуто</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Кнопки дій</string>
+ <string name="revanced_hide_buttons_screen_summary">Приховати або показувати кнопки дій під відео</string>
+ <string name="revanced_hide_like_dislike_button_title">Приховати \"Подобається\" і \"Не подобається\"</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Кнопки \"Подобається\" та \"Не подобається\" приховано</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Кнопки \"Подобається\" та \"Не подобається\" показуються</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Приховати \"Поділитися\"</string>
+ <string name="revanced_hide_share_button_summary_on">Кнопку \"Поділитися\" приховано</string>
+ <string name="revanced_hide_share_button_summary_off">Кнопка \"Поділитися\" показується</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Приховати \"Поскаржитися\"</string>
+ <string name="revanced_hide_report_button_summary_on">Кнопку \"Поскаржитися\" приховано</string>
+ <string name="revanced_hide_report_button_summary_off">Кнопка \"Поскаржитися\" показується</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Приховати \"Реміксувати\"</string>
+ <string name="revanced_hide_remix_button_summary_on">Кнопку \"Реміксувати\" приховано</string>
+ <string name="revanced_hide_remix_button_summary_off">Кнопка \"Реміксувати\" показується</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Приховати \"Завантажити\"</string>
+ <string name="revanced_hide_download_button_summary_on">Кнопку \"Завантажити\" приховано</string>
+ <string name="revanced_hide_download_button_summary_off">Кнопка \"Завантажити\" показується</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Приховати \"Дякую\"</string>
+ <string name="revanced_hide_thanks_button_summary_on">Кнопку \"Дякую\" приховано</string>
+ <string name="revanced_hide_thanks_button_summary_off">Кнопка \"Дякую\" показується</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Приховати \"Створити кліп\"</string>
+ <string name="revanced_hide_clip_button_summary_on">Кнопку \"Створити кліп\" приховано</string>
+ <string name="revanced_hide_clip_button_summary_off">Кнопка \"Створити кліп\" показується</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Приховати \"Зберегти\"</string>
+ <string name="revanced_hide_playlist_button_summary_on">Кнопку \"Зберегти\" приховано</string>
+ <string name="revanced_hide_playlist_button_summary_off">Кнопка \"Зберегти\" показується</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Приховати кнопку \"Автовідтворення\"</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Кнопку \"Автовідтворення\" у відеоплеєрі приховано</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Кнопка \"Автовідтворення\" у відеоплеєрі показується</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Приховати кнопку \"Субтитри\"</string>
+ <string name="revanced_hide_captions_button_summary_on">Кнопку \"Субтитри\" у відеоплеєрі приховано</string>
+ <string name="revanced_hide_captions_button_summary_off">Кнопка \"Субтитри\" у відеоплеєрі показується</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Приховати кнопку \"Трансляція\"</string>
+ <string name="revanced_hide_cast_button_summary_on">Кнопку \"Трансляція\" у відеоплеєрі приховано</string>
+ <string name="revanced_hide_cast_button_summary_off">Кнопка \"Трансляція\" у відеоплеєрі показується</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Кнопки панелі навігації</string>
+ <string name="revanced_navigation_buttons_screen_summary">Приховати або змінити кнопки на панелі навігації</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Приховати \"Головна\"</string>
+ <string name="revanced_hide_home_button_summary_on">Кнопку \"Головна\" приховано на панелі навігації</string>
+ <string name="revanced_hide_home_button_summary_off">Кнопка \"Головна\" показується на панелі навігації</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Приховати \"Shorts\"</string>
+ <string name="revanced_hide_shorts_button_summary_on">Кнопку \"Shorts\" приховано на панелі навігації</string>
+ <string name="revanced_hide_shorts_button_summary_off">Кнопка \"Shorts\" показується на панелі навігації</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Приховати \"Створити\"</string>
+ <string name="revanced_hide_create_button_summary_on">Кнопку \"Створити\" приховано на панелі навігації</string>
+ <string name="revanced_hide_create_button_summary_off">Кнопка \"Створити\" показується на панелі навігації</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Приховати \"Підписки\"</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Кнопку \"Підписки\" приховано на панелі навігації</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Кнопка \"Підписки\" показується на панелі навігації</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Замінити \"Створити\" на \"Сповіщення\"</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Кнопку \"Створити\" замінено кнопкою \"Сповіщення\"\n\nПримітка: увімкнення цього параметру також примусово приховує відеорекламу</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Кнопку \"Створити\" не замінено кнопкою \"Сповіщення\"</string>
+ <string name="revanced_hide_navigation_button_labels_title">Приховати підписи кнопок навігації</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Підписи кнопок навігації приховано</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Підписи кнопок навігації показуються</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Висувне меню</string>
+ <string name="revanced_hide_player_flyout_summary">Приховати або показувати пункти висувного меню плеєра</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Приховати \"Субтитри\"</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Пункт меню \"Субтитри\" приховано</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Пункт меню \"Субтитри\" показується</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Приховати \"Додаткові налаштування\"</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Пункт меню \"Додаткові налаштування\" приховано</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Пункт меню \"Додаткові налаштування\" показується</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Приховати \"Повторювати відео\"</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Пункт меню \"Повторювати відео\" приховано</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Пункт меню \"Повторювати відео\" показується</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Приховати \"Кінематографічне освітлення\"</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Пункт меню \"Кінематографічне освітлення\" приховано</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Пункт меню \"Кінематографічне освітлення\" показується</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Приховати \"Довідка й відгуки\"</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Пункт меню \"Довідка й відгуки\" приховано</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Пункт меню \"Довідка й відгуки\" показується</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Приховати \"Швидкість відтворення\"</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Пункт меню \"Швидкість відтворення\" приховано</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Пункт меню \"Швидкість відтворення\" показується</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Приховати \"Додаткова інформація\"</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Пункт меню \"Додаткова інформація\" приховано</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Пункт меню \"Додаткова інформація\" показується</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Приховати \"Заблокувати екран\"</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Пункт меню \"Заблокувати екран\" приховано</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Пункт меню \"Заблокувати екран\" приховано</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Приховати \"Звукова доріжка\"</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Пункт меню \"Звукова доріжка\" приховано</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Пункт меню \"Звукова доріжка\" показується</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Приховати \"Дивитись у VR\"</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Пункт меню \"Дивитись у VR\" приховано</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Пункт меню \"Дивитись у VR\" показується</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Приховати кнопки попереднє та наступне</string>
+ <string name="revanced_hide_player_buttons_summary_on">Кнопки попереднього та наступного відео приховано</string>
+ <string name="revanced_hide_player_buttons_summary_off">Кнопки попереднього та наступного відео показуються</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Приховати картки альбому</string>
+ <string name="revanced_hide_album_cards_summary_on">Картки альбому приховано</string>
+ <string name="revanced_hide_album_cards_summary_off">Картки альбому показуються</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Коментарі</string>
+ <string name="revanced_comments_screen_summary">Приховати або показувати компоненти секції коментарів</string>
+ <string name="revanced_hide_comments_by_members_header_title">Приховати \"Коментарі від спонсорів\"</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Заголовок \"Коментарі від спонсорів\" приховано</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Заголовок \"Коментарі від спонсорів\" показується</string>
+ <string name="revanced_hide_comments_section_title">Приховати секцію коментарів</string>
+ <string name="revanced_hide_comments_section_summary_on">Секцію коментарів приховано</string>
+ <string name="revanced_hide_comments_section_summary_off">Секція коментарів показується</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Приховати \"Створити Short\"</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Кнопку \"Створити Short\" приховано</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Кнопка \"Створити Short\" показується</string>
+ <string name="revanced_hide_comments_preview_comment_title">Приховати прев\'ю коментар</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Прев\'ю коментар в секції коментарів приховано</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Прев\'ю коментар в секції коментарів показується</string>
+ <string name="revanced_hide_comments_thanks_button_title">Приховати кнопку \"Дякую\"</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Кнопку \"Дякую\" приховано</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Кнопка \"Дякую\" показується</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Приховати мітку часу та емодзі</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Кнопки мітки часу та емодзі приховано</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Кнопки мітки часу та емодзі показуються</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Приховати скриню фінансування</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Скриньку фінансування приховано</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Скринька фінансування показується</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Приховати картки кінцевого екрана</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Картки кінцевого екрана приховано</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Картки кінцевого екрана показуються</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Панель фільтрів</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Приховати або показувати панель фільтрів у стрічці, пошуку та пов\'язаних відео</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Приховати панель у стрічці</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Панель фільтрів у стрічці приховано</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Панель фільтрів у стрічці показується</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Приховати панель у пошуку</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Панель фільтрів у пошуку приховано</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Панель фільтрів у пошуку показується</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Приховати панель у пов\'язаних відео</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Панель фільтрів у пов\'язаних відео приховано</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Панель фільтрів у пов\'язаних відео показується</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Приховати кнопку мікрофона</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Плаваючу кнопку мікрофона приховано</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Плаваюча кнопка мікрофона показується</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Вимкнути кінематографічне освітлення</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Кінематографічне освітлення в повноекранному режимі вимкнуто</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Кінематографічне освітлення в повноекранному режимі ввімкнуто</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Приховати підказки</string>
+ <string name="revanced_hide_info_cards_summary_on">Підказки справа вгорі відеоплеєра приховано</string>
+ <string name="revanced_hide_info_cards_summary_off">Підказки справа вгорі відеоплеєра показуються</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Вимкнути анімовані лічильники</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Лічильники статичні</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Лічильники анімовані</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Приховати панель прогресу</string>
+ <string name="revanced_hide_seekbar_summary_on">Панель прогресу у відеоплеєрі приховано</string>
+ <string name="revanced_hide_seekbar_summary_off">Панель прогресу у відеоплеєрі показується</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Приховати панель прогресу у прев\'ю</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Панель прогресу у прев\'ю переглянутих відео приховано</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Панель прогресу у прев\'ю переглянутих відео показується</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Приховати Shorts у стрічці</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts у домашній стрічці приховано</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts у домашній стрічці показуються</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Приховати Shorts у підписках</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts у підписках приховано</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts у підписках показуються</string>
+ <string name="revanced_hide_shorts_search_title">Приховати Shorts у пошуку</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts у результатах пошуку приховано</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts у результатах пошуку показуються</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Приховати кнопку \"Спонсорувати\"</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Кнопку \"Спонсорувати\" приховано</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Кнопка \"Спонсорувати\" показується</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Приховати кнопку \"Підписатися\"</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Кнопку \"Підписатися\" приховано</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Кнопка \"Підписатися\" показується</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Приховати кнопки на паузі</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Кнопки \"Підписки\" та \"Наживо\" на паузі приховано</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Кнопки \"Підписки\" та \"Наживо\" на паузі показуються</string>
+ <string name="revanced_hide_shorts_shop_button_title">Приховати кнопку магазину</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Кнопку магазину приховано</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Кнопка магазину показується</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Приховати кнопку супер подяки</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Кнопку супер подяки приховано</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Кнопка супер подяки показується</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Приховати відмічені товари</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Відмічені товари приховані</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Відмічені товари показуються</string>
+ <string name="revanced_hide_shorts_location_label_title">Приховати мітку місцезнаходження</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Мітку місцезнаходження приховано</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Мітка місцезнаходження показується</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Приховати зберегти у список відтворення</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Кнопку зберегти звук у список відтворення приховано</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Кнопка зберегти звук у список відтворення показується</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Приховати пропозиції пошуку</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Пропозиції пошуку приховано</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Пропозиції пошуку показуються</string>
+ <string name="revanced_hide_shorts_like_button_title">Приховати \"Подобається\"</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Кнопку \"Подобається\" приховано</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Кнопка \"Подобається\" показується</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Приховати \"Не подобається\"</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Кнопку \"Не подобається\" приховано</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Кнопка \"Не подобається\" показується</string>
+ <string name="revanced_hide_shorts_comments_button_title">Приховати \"Коментарі\"</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Кнопку \"Коментарі\" приховано</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Кнопка \"Коментарі\" показується</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Приховати \"Реміксувати\"</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Кнопку \"Реміксувати\" приховано</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Кнопка \"Реміксувати\" показується</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Приховати \"Поділитися\"</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Кнопку \"Поділитися\" приховано</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Кнопка \"Поділитися\" показується</string>
+ <string name="revanced_hide_shorts_info_panel_title">Приховати панель інформації</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Панель інформації приховано</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Панель інформації показується</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Приховати панель каналу</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Панель каналу приховано</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Панель каналу показується</string>
+ <string name="revanced_hide_shorts_video_title_title">Приховати заголовок відео</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Заголовок відео Shorts приховано</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Заголовок відео Shorts показується</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Приховати мітку метаданих звуку</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Мітку метаданих звуку приховано</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Мітка метаданих звуку показується</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Приховати посилання на повне відео</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Мітка посилання на повне відео приховано</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Мітка посилання на повне відео показується</string>
+ <string name="revanced_hide_shorts_sound_button_title">Приховати кнопку \"Зі звуком\"</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Кнопку \"Зі звуком\" приховано</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Кнопка \"Зі звуком\" показується</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Приховати панель навігації</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Панель навігації приховано</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Панель навігації показується</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Вимкнути пропоновані відео кінцевого екрана</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Пропоновані відео кінцевого екрана буде вимкнуто.\n\nВідома проблема: автовідтворення наступного відео не працює</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Пропоновані відео кінцевого екрана показуватимуться</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Приховати мітку часу відео</string>
+ <string name="revanced_hide_timestamp_summary_on">Мітку часу відео над панеллю прогресу приховано</string>
+ <string name="revanced_hide_timestamp_summary_off">Мітка часу відео над панеллю прогресу показується</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Приховати спливаючі панелі плеєра</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Спливаючі панелі плеєра приховано</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Спливаючі панелі плеєра показуються</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Затемнення плеєра при натисканні</string>
+ <string name="revanced_player_overlay_opacity_summary">Значення непрозорості затемнення при натисканні на плеєр в межах 0-100, де 0 це прозоро</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Значення затемнення плеєра має бути в межах 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Приховано</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Дизлайки тимчасово недоступні (тайм-аут API)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Дизлайки недоступні (статус %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Дизлайки недоступні (ліміт клієнтів сервера API)</string>
+ <string name="revanced_ryd_failure_generic">Дизлайки недоступні (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Оновіть відео, щоб проголосувати за допомогою ReturnYouTubeDislike</string>
+ <string name="revanced_ryd_enable_summary_on">Відмітки \"Не подобається\" показуються</string>
+ <string name="revanced_ryd_enable_summary_off">Відмітки \"Не подобається\" приховані</string>
+ <string name="revanced_ryd_shorts_title">Показувати \"Не подобається\" в Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Відмітки \"Не подобається\" у Shorts показуються %s</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Відмітки \"Не подобається\" у Shorts показуються.\n\nОбмеження: відмітки \"Не подобається\" не можуть показуватися в режимі інкогніто</string>
+ <string name="revanced_ryd_shorts_summary_off">Відмітки \"Не подобається\" в Shorts приховано</string>
+ <string name="revanced_ryd_dislike_percentage_title">Відмітки \"Не подобається\" у відсотках</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Відмітки \"Не подобається\" показуються як відсоток</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Відмітки \"Не подобається\" показуються як число</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Компактна кнопка \"Подобається\"</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Кнопку \"Подобається\" стилізовано під мінімальну ширину</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Кнопку \"Подобається\" стилізовано для кращого вигляду</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Показувати тост, якщо API не доступний</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Тост показується, якщо Return YouTube Dislike не доступний</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Тост не показується, якщо Return YouTube Dislike не доступний</string>
+ <string name="revanced_ryd_about">Про інтеграцію</string>
+ <string name="revanced_ryd_attribution_summary">Дані надаються Return YouTube Dislike API. Натисніть тут, щоб дізнатися більше</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Статистика API ReturnYouTubeDislike цього пристрою</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Час відповіді API, середній</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Час відповіді API, мінімальний</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Час відповіді API, максимальний</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Час відповіді API, останнє відео</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Дизлайки тимчасово недоступні - діє обмеження швидкості клієнтського API</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API отримує голоси, кількість запитів</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Мережевих запитів не зроблено</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">Виконано %d мережевих запитів</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API отримання голосів, кількість тайм-аутів</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Час очікування мережевих запитів закінчився</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">Закінчився час %d мережевих запитів</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Обмеження швидкості клієнта API</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Обмеження швидкості клієнта не виявлені</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Обмеження кількості клієнтів виявлено %d разів</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d мілісекунд</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Широка панель пошуку</string>
+ <string name="revanced_wide_searchbar_summary_on">Широку панель пошуку ввімкнуто\n\nЦе також приховує значок YouTube та кнопку пошуку</string>
+ <string name="revanced_wide_searchbar_summary_off">Широку панель пошуку вимкнуто</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Відновити старі мініатюри</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Мініатюри під час перемотування показуються у мінівікні над панеллю прогресу</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Мініатюри під час перемотування показуються в повноекранному режимі</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Увімкнути SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock - це краудсорсингова система для пропускання дратівливих частин відео на YouTube</string>
+ <string name="revanced_sb_appearance_category">Налаштувати зовнішній вигляд</string>
+ <string name="revanced_sb_enable_voting">Кнопка голосування</string>
+ <string name="revanced_sb_enable_voting_sum_on">Кнопка голосування за сегмент показується в відеоплеєрі</string>
+ <string name="revanced_sb_enable_voting_sum_off">Кнопка голосування за сегмент не показується в відеоплеєрі</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Компактна кнопка пропуску</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Кнопку пропуску стилізовано під мінімальну ширину</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Кнопку пропуску стилізовано для кращого вигляду</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Приховувати кнопку пропуску</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Кнопка пропуску автоматично приховується після декількох секунд</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Кнопка пропуску показується для всього сегменту</string>
+ <string name="revanced_sb_general_skiptoast">Показувати тост під час пропуску</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Тост показується, коли сегмент автоматично пропускається. Натисніть тут, щоб побачити приклад</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Тост не показується. Натисніть тут, щоб побачити приклад</string>
+ <string name="revanced_sb_general_time_without">Тривалість відео без сегментів</string>
+ <string name="revanced_sb_general_time_without_sum_on">Показується тривалість відео мінус всі сегменти, вказано в дужках поруч з повною тривалістю відео</string>
+ <string name="revanced_sb_general_time_without_sum_off">Показується тривалість повного відео</string>
+ <string name="revanced_sb_create_segment_category">Створення нових сегментів</string>
+ <string name="revanced_sb_enable_create_segment">Кнопка створення нового сегмента</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Кнопка створення нового сегменту показується в відеоплеєрі</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Кнопка створення нового сегменту не показується в відеоплеєрі</string>
+ <string name="revanced_sb_general_adjusting">Відрегулювати крок нового сегмента</string>
+ <string name="revanced_sb_general_adjusting_sum">Кількість мілісекунд, на яку переміщують кнопки регулювання часу при створенні нових сегментів</string>
+ <string name="revanced_sb_general_adjusting_invalid">Значення має бути додатним числом</string>
+ <string name="revanced_sb_guidelines_preference_title">Переглянути інструкцію</string>
+ <string name="revanced_sb_guidelines_preference_sum">Інструкція містить правила та поради щодо створення нових сегментів</string>
+ <string name="revanced_sb_guidelines_popup_title">Дотримуйтесь інструкцій</string>
+ <string name="revanced_sb_guidelines_popup_content">Перед створенням нових сегментів прочитайте інструкції SponsorBlock</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Вже прочитано</string>
+ <string name="revanced_sb_guidelines_popup_open">Показати</string>
+ <string name="revanced_sb_general">Загальні налаштування</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Показувати тост, якщо API не доступний</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Тост показується, якщо SponsorBlock не доступний</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Тост не показується, якщо SponsorBlock не доступний</string>
+ <string name="revanced_sb_general_skipcount">Відстеження кількості пропусків</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Дозволяє таблиці лідерів SponsorBlock дізнатися, скільки часу заощаджено. Повідомлення надсилається в таблицю лідерів щоразу, коли сегмент пропущено</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Відстеження кількості пропусків вимкнуто</string>
+ <string name="revanced_sb_general_min_duration">Мінімальна тривалість сегменту</string>
+ <string name="revanced_sb_general_min_duration_sum">Сегменти, коротші за це значення (в секундах), не будуть показані або пропущені </string>
+ <string name="revanced_sb_general_uuid">Ваш особистий id користувача</string>
+ <string name="revanced_sb_general_uuid_sum">Це повинно залишатися конфіденційним. Це як пароль, і його не можна нікому передавати. Якщо хтось отримає його, він зможе видавати себе за вас</string>
+ <string name="revanced_sb_general_uuid_invalid">Особистий id користувача повинен мати довжину не менше 30 символів</string>
+ <string name="revanced_sb_general_api_url">Змінити адресу API</string>
+ <string name="revanced_sb_general_api_url_sum">URL-адреса, яку SponsorBlock використовує для звернень до сервера</string>
+ <string name="revanced_sb_api_url_reset">Адресу API скинуто</string>
+ <string name="revanced_sb_api_url_invalid">Адреса API недійсна</string>
+ <string name="revanced_sb_api_url_changed">Адресу API змінено</string>
+ <string name="revanced_sb_settings_ie">Імпорт / Експорт налаштувань</string>
+ <string name="revanced_sb_settings_copy">Копіювати</string>
+ <string name="revanced_sb_settings_ie_sum">Ваші налаштування SponsorBlock, які можуть бути імпортовані чи експортовані у ReVanced та до інших платформ SponsorBlock</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Ваші налаштування SponsorBlock, які можуть бути імпортовані чи експортовані у ReVanced та до інших платформ SponsorBlock. Вони також містять Ваш особистий ідентифікатор користувача. Діліться ним розумно</string>
+ <string name="revanced_sb_settings_import_successful">Налаштування успішно імпортовано</string>
+ <string name="revanced_sb_settings_import_failed">Не вдалося імпортувати: %s</string>
+ <string name="revanced_sb_settings_export_failed">Не вдалося експортувати: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Ваші налаштування містять особистий ID користувача SponsorBlock.\n\nВаш ID користувача це як пароль і його не можна поширювати.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Більше не показувати</string>
+ <string name="revanced_sb_diff_segments">Змінити поведінку сегмента</string>
+ <string name="revanced_sb_segments_sponsor">Спонсор</string>
+ <string name="revanced_sb_segments_sponsor_sum">Рекламні інтеграції, реферальні посилання і пряма реклама. Не для самореклами або рекомендацій різних подій/творців/сайтів/продуктів, які подобаються автору відео</string>
+ <string name="revanced_sb_segments_selfpromo">Неоплачувана/Самореклама</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Подібно до \"Спонсор\", за винятком неоплачуваної або самореклами. Включає секції про товари, пожертви або інформацію про те, з ким вони співпрацювали</string>
+ <string name="revanced_sb_segments_interaction">Нагадування про взаємодію (Підписка)</string>
+ <string name="revanced_sb_segments_interaction_sum">Коротке нагадування про вподобання, підписку або підписку посеред контенту. Якщо воно довге або про щось конкретне, його слід розмістити в розділі самореклами</string>
+ <string name="revanced_sb_segments_highlight">Основний момент</string>
+ <string name="revanced_sb_segments_highlight_sum">Частина відео, яку шукає більшість людей</string>
+ <string name="revanced_sb_segments_intro">Перерва/Вступна Анімація</string>
+ <string name="revanced_sb_segments_intro_sum">Інтервал без фактичного контенту. Може бути паузою, статичним кадром або повторюваною анімацією. Не включає переходи, що містять інформацію</string>
+ <string name="revanced_sb_segments_outro">Кінцеві картки/Титри</string>
+ <string name="revanced_sb_segments_outro_sum">Титри або коли з\'являються кінцеві картки YouTube. Не для підсумків з інформацією</string>
+ <string name="revanced_sb_segments_preview">Попередній перегляд/Підсумок/Зачіпка</string>
+ <string name="revanced_sb_segments_preview_sum">Колекція кліпів, які показують, що відбувається або що сталося у відео чи в інших відео серій, де вся інформація повторюється в іншому місці</string>
+ <string name="revanced_sb_segments_filler">Дотичне наповнення/Жарти</string>
+ <string name="revanced_sb_segments_filler_sum">Дотичні сцени, додані лише для наповнення або гумору, які не є необхідними для розуміння основного змісту відео. Не включає сегменти, що надають контекст або фонові деталі</string>
+ <string name="revanced_sb_segments_nomusic">Музика: Немузична секція</string>
+ <string name="revanced_sb_segments_nomusic_sum">Тільки для використання в музичних відео. Секції музичних відео без музики, які не підпадають під іншу категорію</string>
+ <string name="revanced_sb_skip_button_compact">Пропустити</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Основний момент</string>
+ <string name="revanced_sb_skip_button_sponsor">Пропустити спонсорську вставку</string>
+ <string name="revanced_sb_skip_button_selfpromo">Пропустити промо-ролик</string>
+ <string name="revanced_sb_skip_button_interaction">Пропустити взаємодію</string>
+ <string name="revanced_sb_skip_button_highlight">Перейти до основного</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Пропустити вступ</string>
+ <string name="revanced_sb_skip_button_intro_middle">Пропустити паузу</string>
+ <string name="revanced_sb_skip_button_intro_end">Пропустити паузу</string>
+ <string name="revanced_sb_skip_button_outro">Пропустити закінчення</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Пропустити попередній перегляд</string>
+ <string name="revanced_sb_skip_button_preview_middle">Пропустити попередній перегляд</string>
+ <string name="revanced_sb_skip_button_preview_end">Пропустити підсумок</string>
+ <string name="revanced_sb_skip_button_filler">Пропустити вставку</string>
+ <string name="revanced_sb_skip_button_nomusic">Пропустити без музики</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Пропустити сегмент</string>
+ <string name="revanced_sb_skipped_sponsor">Пропущено спонсорську вставку</string>
+ <string name="revanced_sb_skipped_selfpromo">Пропущено саморекламу</string>
+ <string name="revanced_sb_skipped_interaction">Пропущено дратівливе нагадування</string>
+ <string name="revanced_sb_skipped_highlight">Пропущено до основного моменту</string>
+ <string name="revanced_sb_skipped_intro_beginning">Пропущено вступ</string>
+ <string name="revanced_sb_skipped_intro_middle">Пропущено паузу</string>
+ <string name="revanced_sb_skipped_intro_end">Пропущено паузу</string>
+ <string name="revanced_sb_skipped_outro">Пропущено закінчення</string>
+ <string name="revanced_sb_skipped_preview_beginning">Пропущено попередній перегляд</string>
+ <string name="revanced_sb_skipped_preview_middle">Пропущено попередній перегляд</string>
+ <string name="revanced_sb_skipped_preview_end">Пропущено підсумок</string>
+ <string name="revanced_sb_skipped_filler">Пропущено вставку</string>
+ <string name="revanced_sb_skipped_nomusic">Пропущено секцію без музики</string>
+ <string name="revanced_sb_skipped_unsubmitted">Пропущено не надісланий сегмент</string>
+ <string name="revanced_sb_skipped_multiple_segments">Пропущено декілька сегментів</string>
+ <string name="revanced_sb_skip_automatically">Пропустити автоматично</string>
+ <string name="revanced_sb_skip_automatically_once">Пропустити один раз</string>
+ <string name="revanced_sb_skip_showbutton">Показувати кнопку пропуску</string>
+ <string name="revanced_sb_skip_seekbaronly">Показувати в панелі прогресу</string>
+ <string name="revanced_sb_skip_ignore">Вимкнути</string>
+ <string name="revanced_sb_submit_failed_invalid">Неможливо відправити сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock тимчасово не працює</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Не вдалося надіслати сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Неможливо відправити сегмент.\nЧастота обмежена (занадто багато від одного користувача або IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Неможливо відправити сегмент: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Неможливо надіслати сегмент.\nВже існує</string>
+ <string name="revanced_sb_submit_succeeded">Сегмент успішно надіслано</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock тимчасово недоступний (закінчився час API)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock тимчасово недоступний (статус %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock тимчасово не доступний</string>
+ <string name="revanced_sb_vote_failed_timeout">Не вдалося проголосувати за сегмент (Час очікування API минув)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Не вдалося проголосувати за сегмент (статус: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Не вдалося проголосувати за сегмент: %s</string>
+ <string name="revanced_sb_vote_upvote">Проголосувати \"за\"</string>
+ <string name="revanced_sb_vote_downvote">Проголосувати \"проти\"</string>
+ <string name="revanced_sb_vote_category">Змінити категорію</string>
+ <string name="revanced_sb_vote_no_segments">Немає сегментів для голосування</string>
+ <string name="revanced_sb_new_segment_choose_category">Вибрати категорію сегмента</string>
+ <string name="revanced_sb_new_segment_disabled_category">Категорія вимкнена у налаштуваннях. Увімкніть категорію, щоб надіслати.</string>
+ <string name="revanced_sb_new_segment_title">Новий сегмент SponsorBlock</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Встановити %1$02d:%2$02d:%3$03d як початок або кінець нового сегмента?</string>
+ <string name="revanced_sb_new_segment_mark_start">початок</string>
+ <string name="revanced_sb_new_segment_mark_end">кінець</string>
+ <string name="revanced_sb_new_segment_now">зараз</string>
+ <string name="revanced_sb_new_segment_time_start">Час сегменту починається з</string>
+ <string name="revanced_sb_new_segment_time_end">Час сегменту закінчується на</string>
+ <string name="revanced_sb_new_segment_confirm_title">Час початку і кінця сегмента правильні?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Час сегменту з\n\n%1$s\nдо\n%2$s\n\n(%3$s)\n\nГотові відправити?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Початок має бути перед кінцем</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Спочатку позначте дві позиції на панелі часу</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Попередній перегляд сегменту для забезпечення плавного пропуску</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Редагувати час сегмента вручну</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Ви хочете змінити час початку чи кінця сегмента?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Вказано неправильний час</string>
+ <string name="revanced_sb_stats">Статистика</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Статистика тимчасово недоступна (API не працює)</string>
+ <string name="revanced_sb_stats_loading">Завантаження...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock вимкнено</string>
+ <string name="revanced_sb_stats_username">Ваше ім\'я користувача: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Натисніть тут, щоб змінити ім\'я користувача</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Не вдалося змінити ім\'я користувача: Статус: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Ім\'я користувача успішно змінено</string>
+ <string name="revanced_sb_stats_reputation">Ваша репутація - <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Ви створили <b>%s</b> сегменти(ів)</string>
+ <string name="revanced_sb_stats_saved_zero">Таблиця лідерів SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Ви врятували людей від <b>%s</b> сегментів</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Натисніть тут, щоб побачити глобальну статистику та найкращих учасників</string>
+ <string name="revanced_sb_stats_saved_sum">Це <b>%s</b> за весь час. <br> Натисніть тут, щоб побачити лідерську таблицю.</string>
+ <string name="revanced_sb_stats_self_saved">Ви пропустили <b>%s</b> сегменти(ів)</string>
+ <string name="revanced_sb_stats_self_saved_sum">Це <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Скинути лічильник пропущених сегментів?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s годин(и) %2$s хвилин(и)</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s хвилин(и) %2$s секунд(и)</string>
+ <string name="revanced_sb_stats_saved_second_format">%s секунд(и)</string>
+ <string name="revanced_sb_color_dot_label">Колір:</string>
+ <string name="revanced_sb_color_changed">Колір змінено</string>
+ <string name="revanced_sb_color_reset">Колір скинуто</string>
+ <string name="revanced_sb_color_invalid">Невірний код кольору</string>
+ <string name="revanced_sb_reset_color">Скинути колір</string>
+ <string name="revanced_sb_reset">Скинути</string>
+ <string name="revanced_sb_about">Про інтеграцію</string>
+ <string name="revanced_sb_about_api_sum">Дані надаються SponsorBlock API. Натисніть тут, щоб дізнатися більше та побачити завантаження для інших платформ</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Підробити версію програми</string>
+ <string name="revanced_spoof_app_version_summary_on">Версію підроблено</string>
+ <string name="revanced_spoof_app_version_summary_off">Версію не підроблено</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Версія додатку підробиться на старішу версію YouTube.\n\nЦе змінить вигляд і функції додатку, можуть трапитися невідомі побічні ефекти.\n\nЯкщо пізніше вимкнути, рекомендується очистити дані додатку, щоб запобігти помилкам інтерфейсу.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Підробити версію програми на</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Відновлення RYD в анонімному режимі Shorts</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Відновлення розширеного меню швидкості та якості відео</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Відновлення вкладки Бібліотека</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Відновлення старого інтерфейсу плейлиста</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Відновлення старого інтерфейсу</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Встановити початкову сторінку</string>
+ <string name="revanced_start_page_entry_0">За замовчуванням</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Головна</string>
+ <string name="revanced_start_page_entry_2">Пошук</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Підписки</string>
+ <string name="revanced_start_page_entry_4">Що нового</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Вкладка \"Ви\"</string>
+ <string name="revanced_start_page_entry_7">Відео, які сподобалися</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Історія</string>
+ <string name="revanced_start_page_entry_9">Популярне</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Вимкнути плеєр Shorts при запуску</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Плеєр Shorts вимкнуто при запуску додатку</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Плеєр Shorts увімкнуто при запуску додатку</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Увімкнути планшетний інтерфейс</string>
+ <string name="revanced_tablet_layout_summary_on">Планшетний інтерфейс увімкнуто</string>
+ <string name="revanced_tablet_layout_summary_off">Планшетний інтерфейс вимкнуто</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Публікації спільноти не показуються в планшетному інтерфейсі</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Мініплеєр</string>
+ <string name="revanced_miniplayer_screen_summary">Змінити стиль згорнутого мініплеєра</string>
+ <string name="revanced_miniplayer_type_title">Тип мініплеєра</string>
+ <string name="revanced_miniplayer_type_entry_1">Оригінальний</string>
+ <string name="revanced_miniplayer_type_entry_2">Телефонний</string>
+ <string name="revanced_miniplayer_type_entry_3">Планшетний</string>
+ <string name="revanced_miniplayer_type_entry_4">Новітній 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Новітній 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Новітній 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Приховати кнопки розгортання та закриття</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Кнопки розгортання та закриття в мініплеєрі приховано\n(проведіть по мініплеєру, щоб розгорнути чи закрити)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Кнопки розгортання та закриття в мініплеєрі показуються</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Приховати підтексти</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Підтексти в мініплеєрі приховано</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Підтексти в мініплеєрі показуються</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Приховати кнопки перемотування</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Кнопки перемотування вперед та назад в мініплеєрі приховано</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Кнопки перемотування вперед та назад в мініплеєрі показуються</string>
+ <string name="revanced_miniplayer_opacity_title">Затемнення мініплеєра</string>
+ <string name="revanced_miniplayer_opacity_summary">Значення затемнення при натисканні на мініплеєр в межах 0-100, де 0 це прозоро</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Значення затемнення мініплеєра має бути в межах 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Увімкнути градієнт завантаження</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Екран завантаження макета матиме градієнтне тло</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Екран завантаження макета матиме суцільне тло</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Колір панелі прогресу</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Показується користувацький колір панелі прогресу відтворення</string>
+ <string name="revanced_seekbar_custom_color_summary_off">Показується оригінальний колір панелі прогресу відтворення</string>
+ <string name="revanced_seekbar_custom_color_value_title">Користувацький колір панелі прогресу</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Редагувати колір панелі прогресу відтворення</string>
+ <string name="revanced_seekbar_custom_color_invalid">Недійсне значення кольору панелі прогресу відтворення. Скинуто до значення за умовчанням.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Вкладка \"Головна\"</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Вкладка \"Підписки\"</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Вкладка \"Ви\"</string>
+ <string name="revanced_alt_thumbnail_player_title">Плейлисти, рекомендації</string>
+ <string name="revanced_alt_thumbnail_search_title">Результати пошуку</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Оригінальні прев\'ю</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Оригінальні прев\'ю</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Стоп-кадри</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Стоп-кадри</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow надає краудсорсингові мініатюри для відео з YouTube. Ці прев\'ю часто більш релевантні, ніж ті, що надаються YouTube\nЯкщо ввімкнено, серверу API надсилатимуться лише посилання на відео, і більше жодних інших даних. Якщо відео не має прев\'ю DeArrow, то відображаються оригінальні або стоп-кадри\n\nНатисніть тут, щоб дізнатися більше про DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Показувати тост, якщо API не доступний</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Тост показується, якщо DeArrow не доступний</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Тост не показується, якщо DeArrow не доступний</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Кінцева точка API DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL-адреса кінцевої точки кешу прев\'ю DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Стоп-кадри з відео</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Кадри беруться з початку/середини/кінця кожного відео. Ці зображення вбудовані в YouTube і зовнішній API не використовується</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Використовувати неточні кадри</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Використовуються кадри середньої якості. Мініатюри завантажуватиметься швидше, але прямі трансляції, неопубліковані або дуже старі відео можуть зображатися порожніми мініатюрами</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Використовуються кадри високої якості</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Час відео з якого береться кадр</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Початок відео</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Середина відео</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Кінець відео</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow тимчасово недоступний. (код статусу: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow тимчасово недоступний</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Показувати оголошення від ReVanced</string>
+ <string name="revanced_announcements_summary_on">Оголошення під час запуску показуються</string>
+ <string name="revanced_announcements_summary_off">Оголошення під час запуску не показуються</string>
+ <string name="revanced_announcements_enabled_summary">Показувати оголошення під час запуску</string>
+ <string name="revanced_announcements_connection_failed">Не вдалося підключитися до постачальника оголошень</string>
+ <string name="revanced_announcements_dialog_dismiss">Закрити</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Увімкнути автоповтор відео</string>
+ <string name="revanced_auto_repeat_summary_on">Автоповторення поточного відео ввімкнуто</string>
+ <string name="revanced_auto_repeat_summary_off">Автоповторення поточного відео вимкнуто</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Підробити розміри пристрою</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Розміри пристрою підроблено\n\nБільш високі якості відео може бути розблоковано, але можуть спостерігатися затримки під час відтворення відео, підвищене споживання батареї та невідомі побічні ефекти</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Розміри пристрою не підроблено\n\nУвімкнення цієї опції може розблокувати вищі якості відео</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Увімкнення цієї опції може викликати затримки під час відтворення відео, підвищене споживання батареї та невідомі побічні ефекти.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Налаштування GmsCore</string>
+ <string name="microg_settings_summary">Відкрити GmsCore для налаштування та входу в обліковий запис Google</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Обхід URL переадресацій</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL переадресації обходяться</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL переадресації не обходяться</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Відкривати посилання у браузері</string>
+ <string name="revanced_external_browser_summary_on">Посилання відкриваються зовні</string>
+ <string name="revanced_external_browser_summary_off">Посилання відкриваються у додатку</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Відтворення у фоні</string>
+ <string name="revanced_background_playback_summary">Це налаштування можливо знайти у Налаштування -> Фоновий і офлайн-режим</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Вилучити параметр відстеження</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Параметри запиту відстеження вилучаються з посилань під час поширення посилань</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Параметри запиту відстеження не вилучаються з посилань під час поширення посилань</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Вимкнути вібрацію при масштабуванні</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Вібрації при масштабуванні вимкнуто</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Вібрації при масштабуванні ввімкнуто</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Автоматична якість</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Запам\'ятовувати зміни якості відео</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Зміни якості застосовуються до всіх відео</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Зміни якості застосовуються лише до поточного відео</string>
+ <string name="revanced_video_quality_default_wifi_title">Якість відео в Wi-Fi мережі</string>
+ <string name="revanced_video_quality_default_mobile_title">Якість відео в мобільній мережі</string>
+ <string name="revanced_remember_video_quality_mobile">в моб. мережі</string>
+ <string name="revanced_remember_video_quality_wifi">в Wi-Fi мережі</string>
+ <string name="revanced_remember_video_quality_toast">Якість %1$s змінено на %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Кнопка швидкості відтворення</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Кнопка швидкості відтворення показується в плеєрі</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Кнопка швидкості відтворення не показується в плеєрі</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Користувацькі швидкості відтворення</string>
+ <string name="revanced_custom_playback_speeds_summary">Додавання або зміна доступних швидкостей відтворення</string>
+ <string name="revanced_custom_playback_speeds_invalid">Користувацькі швидкості повинні бути менше ніж %s Використовуються значення за замовчуванням.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Неправильні користувацькі швидкості відтворення. Використовуються значення за замовчуванням.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Запам\'ятовувати зміни швидкості</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Зміни швидкості відтворення застосовуються до всіх відео</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Зміни швидкості відтворення застосовуються лише до поточного відео</string>
+ <string name="revanced_playback_speed_default_title">Стандартна швидкість відтворення</string>
+ <string name="revanced_remember_playback_speed_toast">Швидкість змінена на %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Відновити старе меню якості відео</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Показується старе меню якості відео</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Показується нове меню якості відео</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Увімкнути перемотку пересуванням</string>
+ <string name="revanced_slide_to_seek_summary_on">Перемотку пересуванням увімкнуто\n\nУвімкнуто поведінку старого інтерфейсу \"Проведіть пальцем, щоб перемотати\"</string>
+ <string name="revanced_slide_to_seek_summary_off">Перемотку пересуванням вимкнуто\n\nУвімкнуто поведінку нового інтерфейсу прискорення \"2х >>\" при утриманні на екрані</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Підробка клієнта</string>
+ <string name="revanced_spoof_client_screen_summary">Підробка клієнта для запобігання проблем відтворення</string>
+ <string name="revanced_spoof_client_title">Підробити клієнт</string>
+ <string name="revanced_spoof_client_summary_on">Клієнт підроблений</string>
+ <string name="revanced_spoof_client_summary_off">Клієнт не підроблений\n\nВідтворення відео може не працювати</string>
+ <string name="revanced_spoof_client_user_dialog_message">Вимкнення цього параметра може призвести до проблем відтворення відео.</string>
+ <string name="revanced_spoof_client_use_ios_title">Підробити клієнт на iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Наразі клієнт підроблений на iOS\n\nПобічні ефекти:\n• Немає HDR відео\n• Історія переглядів може не працювати\n• Високі якості відео можуть бути відсутні\n• Прямі трансляції не відтворюються в режимі аудіо\n• Прямі трансляції недоступні на Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Наразі клієнт підроблений на Android VR\n\nПобічні ефекти:\n• Немає HDR відео\n• Відео для дітей не відтворюються\n• Призупинені відео можуть випадково продовжуватися\n• Низька якість мініатюр панелі прогресу Shorts\n• Кнопка завантаження завжди прихована\n• Картки кінцевого екрана завжди приховані</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Мініатюри в режимі підробки клієнта не доступні (закінчився час API)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Мініатюри в режимі підробки клієнта тимчасово не доступні: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Блокувати аудіорекламу</string>
+ <string name="revanced_block_audio_ads_summary_on">Аудіорекламу заблоковано</string>
+ <string name="revanced_block_audio_ads_summary_off">Аудіорекламу розблоковано</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s недоступний. Реклама може відображатися. Спробуйте перейти на іншу службу блокування реклами в налаштуваннях.</string>
+ <string name="revanced_embedded_ads_service_failed">Сервер %s повернув помилку. Реклама може відображатися. Спробуйте перейти на іншу службу блокування реклами в налаштуваннях.</string>
+ <string name="revanced_block_embedded_ads_title">Блокувати вбудовану відеорекламу</string>
+ <string name="revanced_block_embedded_ads_entry_1">Вимкнуто</string>
+ <string name="revanced_block_embedded_ads_entry_2">Проксі Luminous</string>
+ <string name="revanced_block_embedded_ads_entry_3">Проксі PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Блокувати відеорекламу</string>
+ <string name="revanced_block_video_ads_summary_on">Відеорекламу заблоковано</string>
+ <string name="revanced_block_video_ads_summary_off">Відеорекламу розблоковано</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">повідомлення видалено</string>
+ <string name="revanced_show_deleted_messages_title">Показувати видалені повідомлення</string>
+ <string name="revanced_show_deleted_messages_entry_1">Не показувати видалені повідомлення</string>
+ <string name="revanced_show_deleted_messages_entry_2">Приховати видалені повідомлення під спойлером</string>
+ <string name="revanced_show_deleted_messages_entry_3">Показувати видалені повідомлення як закреслений текст</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Автоматично збирати Бали каналу</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Бали каналу збираються автоматично</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Бали каналу не збираються автоматично</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Увімкнути режим налагодження Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Режим налагодження Twitch увімкнено (не рекомендовано)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Режим налагодження Twitch вимкнуто</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Налаштування ReVanced</string>
+ <string name="revanced_ads_screen_title">Реклама</string>
+ <string name="revanced_ads_screen_summary">Налаштування блокування реклами</string>
+ <string name="revanced_chat_screen_title">Чат</string>
+ <string name="revanced_chat_screen_summary">Налаштування чату</string>
+ <string name="revanced_misc_screen_title">Різне</string>
+ <string name="revanced_misc_screen_summary">Різні налаштування</string>
+ <string name="revanced_general_category_title">Загальні налаштування</string>
+ <string name="revanced_other_category_title">Інші налаштування</string>
+ <string name="revanced_client_ads_category_title">Реклама на стороні клієнта</string>
+ <string name="revanced_surestream_ads_category_title">Реклама на стороні сервера</string>
+ <string name="revanced_twitch_debug_title">Режим налагодження</string>
+ <string name="revanced_twitch_debug_summary_on">Журнали налагодження ввімкнено</string>
+ <string name="revanced_twitch_debug_summary_off">Журнали налагодження вимкнуто</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-ur-rIN/strings.xml b/src/main/resources/addresources/values-ur-rIN/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-ur-rIN/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-uz-rUZ/strings.xml b/src/main/resources/addresources/values-uz-rUZ/strings.xml
new file mode 100644
index 0000000000..b7497ed935
--- /dev/null
+++ b/src/main/resources/addresources/values-uz-rUZ/strings.xml
@@ -0,0 +1,265 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_reset">Oddiy holga qaytarish</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Haqida</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">Haqida</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">Yuklanmoqda...</string>
+ <string name="revanced_sb_reset">Oddiy holga qaytarish</string>
+ <string name="revanced_sb_about">Haqida</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">O\'tkazib yuborish</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">O\'chirilgan</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-vi-rVN/strings.xml b/src/main/resources/addresources/values-vi-rVN/strings.xml
new file mode 100644
index 0000000000..f352b6452d
--- /dev/null
+++ b/src/main/resources/addresources/values-vi-rVN/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">Bạn có muốn tiếp tục không?</string>
+ <string name="revanced_settings_reset">Đặt lại</string>
+ <string name="revanced_settings_restart_title">Làm mới và khởi động lại</string>
+ <string name="revanced_settings_restart">Khởi động lại</string>
+ <string name="revanced_settings_import">Nhập</string>
+ <string name="revanced_settings_import_copy">Sao chép</string>
+ <string name="revanced_settings_import_reset">Khôi phục mặc định cài đặt ReVanced</string>
+ <string name="revanced_settings_import_success">Đã nhập cài đặt %d</string>
+ <string name="revanced_settings_import_failure_parse">Nhập thất bại: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore chưa được cài đặt. Cài nó.</string>
+ <string name="gms_core_dialog_title">Hành động cần thiết</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore không có quyền chạy nền.\n\nLàm theo hướng dẫn \"Đừng giết ứng dụng của tôi\" cho điện thoại của bạn, áp dụng các chỉ dẫn vào việc cài đặt MicroG.\n\nĐiều này là cần thiết để ứng dụng hoạt động.</string>
+ <string name="gms_core_dialog_open_website_text">Mở trang web</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">Tối ưu hóa pin MicroG GmsCore cần phải tắt để ngăn chặn các phát sinh.\n\nNhấn vào nút tiếp tục và tắt tối ưu hóa pin.</string>
+ <string name="gms_core_dialog_continue_text">Tiếp tục</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">Bạn đang dùng Bản vá ReVanced phiên bản <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">Lưu ý</string>
+ <string name="revanced_settings_about_links_dev_body">Đây là phiên bản tiền phát hành và bạn có thể gặp phải sự cố không mong muốn</string>
+ <string name="revanced_settings_about_links_header">Các liên kết chính thức</string>
+ <string name="revanced_pref_import_export_title">Nhập / Xuất</string>
+ <string name="revanced_pref_import_export_summary">Nhập / Xuất cài đặt ReVanced</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">Giới thiệu</string>
+ <string name="revanced_settings_screen_01_ads_title">Quảng cáo</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">Hình thu nhỏ thay thế</string>
+ <string name="revanced_settings_screen_03_feed_title">Bảng tin</string>
+ <string name="revanced_settings_screen_04_player_title">Trình phát</string>
+ <string name="revanced_settings_screen_05_general_title">Bố cục chung</string>
+ <string name="revanced_settings_screen_07_seekbar_title">Thanh tiến trình</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">Cử chỉ vuốt</string>
+ <string name="revanced_settings_screen_11_misc_title">Linh tinh</string>
+ <string name="revanced_settings_screen_12_video_title">Video</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">Gỡ lỗi</string>
+ <string name="revanced_debug_screen_summary">Bật hoặc tắt tùy chọn gỡ lỗi</string>
+ <string name="revanced_debug_title">Nhật ký gỡ lỗi</string>
+ <string name="revanced_debug_summary_on">Nhật ký gỡ lỗi đã bật</string>
+ <string name="revanced_debug_summary_off">Nhật ký gỡ lỗi đã tắt</string>
+ <string name="revanced_debug_protobuffer_title">Bộ đệm giao thức nhật ký</string>
+ <string name="revanced_debug_protobuffer_summary_on">Ghi nhật ký gỡ lỗi bao gồm thông tin bộ đệm nguyên mẫu</string>
+ <string name="revanced_debug_protobuffer_summary_off">Ghi nhật ký gỡ lỗi mà không có thông tin bộ đệm nguyên mẫu</string>
+ <string name="revanced_debug_stacktrace_title">Ghi nhật ký truy vết stack</string>
+ <string name="revanced_debug_stacktrace_summary_on">Nhật ký gỡ lỗi bao gồm truy vết stack</string>
+ <string name="revanced_debug_stacktrace_summary_off">Nhật ký gỡ lỗi không bao gồm truy vết stack</string>
+ <string name="revanced_debug_toast_on_error_title">Hiện thông báo nổi về lỗi ReVanced</string>
+ <string name="revanced_debug_toast_on_error_summary_on">Hiện thông báo nổi khi xảy ra lỗi</string>
+ <string name="revanced_debug_toast_on_error_summary_off">Không hiện thông báo nổi khi xảy ra lỗi</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">Việc tắt thông báo lỗi sẽ ẩn tất cả thông báo lỗi ReVanced.\n\nBạn sẽ không được thông báo về bất kỳ sự kiện không mong muốn nào.</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">Nút thích / đăng ký tỏa sáng</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">Nút thích và đăng ký sẽ không tỏa sáng khi được nhắc đến</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">Nút thích và đăng ký sẽ tỏa sáng khi được nhắc đến</string>
+ <string name="revanced_hide_gray_separator_title">Ẩn dải phân cách màu xám</string>
+ <string name="revanced_hide_gray_separator_summary_on">Dải phân cách màu xám được ẩn</string>
+ <string name="revanced_hide_gray_separator_summary_off">Dải phân cách màu xám được hiện</string>
+ <string name="revanced_hide_channel_watermark_title">Ẩn hình mờ của kênh</string>
+ <string name="revanced_hide_channel_watermark_summary_on">Hình mờ được ẩn</string>
+ <string name="revanced_hide_channel_watermark_summary_off">Hình mờ được hiện</string>
+ <string name="revanced_hide_horizontal_shelves_title">Ẩn các kệ ngang</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">Các kệ được ẩn như:\n• Tin tức\n• Tiếp tục xem\n• Khám phá thêm kênh\n• Mua sắm\n• Xem lại</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">Kệ ngang được hiện</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">Ẩn nút \'Tham gia\'</string>
+ <string name="revanced_hide_join_membership_button_summary_on">Nút được ẩn</string>
+ <string name="revanced_hide_join_membership_button_summary_off">Nút được hiện</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">Ẩn mục \'Dành cho bạn\' trang kênh</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">Kệ được ẩn</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">Mục đã được hiển thị</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">Ẩn nút Thông báo cho tôi</string>
+ <string name="revanced_hide_notify_me_button_summary_on">Nút được ẩn</string>
+ <string name="revanced_hide_notify_me_button_summary_off">Nút được hiện</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">Ẩn nội dung đề xuất \"Mọi người cũng đã xem\"</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">Đề xuất được ẩn</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">Đề xuất được hiện</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">Ẩn nút \'Hiển thị thêm\'</string>
+ <string name="revanced_hide_show_more_button_summary_on">Nút được ẩn</string>
+ <string name="revanced_hide_show_more_button_summary_off">Nút được hiện</string>
+ <string name="revanced_hide_timed_reactions_title">Ẩn phản ứng theo thời gian</string>
+ <string name="revanced_hide_timed_reactions_summary_on">Phản ứng theo thời gian được ẩn</string>
+ <string name="revanced_hide_timed_reactions_summary_off">Phản ứng theo thời gian được hiện</string>
+ <string name="revanced_hide_search_result_shelf_header_title">Ẩn tiêu đề giá kết quả tìm kiếm</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">Kệ tiêu đề được ẩn</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">Tiêu đề đã được hiển thị</string>
+ <string name="revanced_hide_channel_guidelines_title">Ẩn nguyên tắc của kênh</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">Nguyên tắc của kênh được ẩn</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">Nguyên tắc của kênh được hiện</string>
+ <string name="revanced_hide_expandable_chip_title">Ẩn bảng mở rộng dưới video</string>
+ <string name="revanced_hide_expandable_chip_summary_on">Bảng mở rộng được ẩn</string>
+ <string name="revanced_hide_expandable_chip_summary_off">Bảng mở rộng được hiện</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">Ẩn ghi chú cuối mục chất lượng video</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">Ghi chú cuối mục chất lượng video được ẩn</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">Ghi chú cuối mục Chất lượng video đã được hiển thị</string>
+ <string name="revanced_hide_community_posts_title">Ẩn bài đăng cộng đồng</string>
+ <string name="revanced_hide_community_posts_summary_on">Bài đăng cộng đồng được ẩn</string>
+ <string name="revanced_hide_community_posts_summary_off">Bài đăng cộng đồng được hiện</string>
+ <string name="revanced_hide_compact_banner_title">Ẩn biểu ngữ vắn tắt</string>
+ <string name="revanced_hide_compact_banner_summary_on">Biểu ngữ vắn tắt được ẩn</string>
+ <string name="revanced_hide_compact_banner_summary_off">Biểu ngữ vắn tắt được hiện</string>
+ <string name="revanced_hide_movies_section_title">Ẩn phần phim</string>
+ <string name="revanced_hide_movies_section_summary_on">Phần phim được ẩn</string>
+ <string name="revanced_hide_movies_section_summary_off">Phần phim được hiện</string>
+ <string name="revanced_hide_feed_survey_title">Ẩn khảo sát ở bảng tin</string>
+ <string name="revanced_hide_feed_survey_summary_on">Khảo sát ở bảng tin được ẩn</string>
+ <string name="revanced_hide_feed_survey_summary_off">Khảo sát ở bảng tin được hiện</string>
+ <string name="revanced_hide_community_guidelines_title">Ẩn nguyên tắc cộng đồng</string>
+ <string name="revanced_hide_community_guidelines_summary_on">Nguyên tắc cộng đồng được ẩn</string>
+ <string name="revanced_hide_community_guidelines_summary_off">Nguyên tắc cộng đồng được hiện</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">Ẩn nguyên tắc cộng đồng cho người đăng ký</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">Nguyên tắc cộng đồng cho người đăng ký được ẩn</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">Nguyên tắc cộng đồng dành cho người đăng ký được hiển thị</string>
+ <string name="revanced_hide_channel_member_shelf_title">Ẩn kệ hội viên kênh</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">Kệ hội viên kênh được ẩn</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">Kệ hội viên kênh được hiện</string>
+ <string name="revanced_hide_emergency_box_title">Ẩn hộp khẩn cấp</string>
+ <string name="revanced_hide_emergency_box_summary_on">Hộp khẩn cấp được được ẩn</string>
+ <string name="revanced_hide_emergency_box_summary_off">Hộp khẩn cấp được hiện</string>
+ <string name="revanced_hide_info_panels_title">Ẩn bảng thông tin</string>
+ <string name="revanced_hide_info_panels_summary_on">Bảng thông tin được ẩn</string>
+ <string name="revanced_hide_info_panels_summary_off">Bảng thông tin được hiện</string>
+ <string name="revanced_hide_medical_panels_title">Ẩn bảng thông tin y tế</string>
+ <string name="revanced_hide_medical_panels_summary_on">Bảng thông tin y tế được ẩn</string>
+ <string name="revanced_hide_medical_panels_summary_off">Bảng thông tin y tế được hiển thị</string>
+ <string name="revanced_hide_channel_bar_title">Ẩn nút kênh</string>
+ <string name="revanced_hide_channel_bar_summary_on">Nút kênh được ẩn</string>
+ <string name="revanced_hide_channel_bar_summary_off">Nút kênh được hiện</string>
+ <string name="revanced_hide_playables_title">Ẩn phần phát được</string>
+ <string name="revanced_hide_playables_summary_on">Phần phát được ẩn</string>
+ <string name="revanced_hide_playables_summary_off">Phần phát được được hiện</string>
+ <string name="revanced_hide_quick_actions_title">Ẩn các hành động nhanh khi ở toàn màn hình</string>
+ <string name="revanced_hide_quick_actions_summary_on">Hành động nhanh được ẩn</string>
+ <string name="revanced_hide_quick_actions_summary_off">Hành động nhanh được hiện</string>
+ <string name="revanced_hide_related_videos_title">Ẩn các video liên quan trong hành động nhanh</string>
+ <string name="revanced_hide_related_videos_summary_on">Các video liên quan được ẩn</string>
+ <string name="revanced_hide_related_videos_summary_off">Các video liên quan được hiện</string>
+ <string name="revanced_hide_image_shelf_title">Ẩn kệ hình ảnh từ kết quả tìm kiếm</string>
+ <string name="revanced_hide_image_shelf_summary_on">Kệ hình ảnh được ẩn</string>
+ <string name="revanced_hide_image_shelf_summary_off">Kệ hình ảnh được hiện</string>
+ <string name="revanced_hide_latest_posts_ads_title">Ẩn bài đăng mới nhất</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">Bài đăng mới nhất được ẩn</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">Bài đăng mới nhất được hiện</string>
+ <string name="revanced_hide_mix_playlists_title">Ẩn danh sách phát tổng hợp</string>
+ <string name="revanced_hide_mix_playlists_summary_on">Danh sách phát tổng hợp được ẩn</string>
+ <string name="revanced_hide_mix_playlists_summary_off">Danh sách phát tổng hợp được hiện</string>
+ <string name="revanced_hide_artist_cards_title">Ẩn thẻ nghệ sĩ</string>
+ <string name="revanced_hide_artist_cards_summary_on">Thẻ nghệ sĩ được ẩn</string>
+ <string name="revanced_hide_artist_cards_summary_off">Thẻ nghệ sĩ được hiện</string>
+ <string name="revanced_hide_chips_shelf_title">Ẩn kệ danh mục được đề xuất</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Kệ danh mục được đề xuất được ẩn</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Kệ danh mục được đề xuất được hiện</string>
+ <string name="revanced_hide_attributes_section_title">Ẩn phần thuộc tính</string>
+ <string name="revanced_hide_attributes_section_summary_on">Phần \'Địa điểm nổi bật\', Trò chơi và Âm nhạc được ẩn</string>
+ <string name="revanced_hide_attributes_section_summary_off">Phần \'Địa điểm nổi bật\', Trò chơi và Âm nhạc được hiện</string>
+ <string name="revanced_hide_chapters_section_title">Ẩn phần chương</string>
+ <string name="revanced_hide_chapters_section_summary_on">Phần chương được ẩn</string>
+ <string name="revanced_hide_chapters_section_summary_off">Phần chương được hiện</string>
+ <string name="revanced_hide_podcast_section_title">Ẩn phần \'Khám phá podcast\'</string>
+ <string name="revanced_hide_podcast_section_summary_on">Phần \'Khám phá podcast\' được ẩn</string>
+ <string name="revanced_hide_podcast_section_summary_off">Phần \'Khám phá podcast\' được hiện</string>
+ <string name="revanced_hide_info_cards_section_title">Ẩn phần thẻ thông tin</string>
+ <string name="revanced_hide_info_cards_section_summary_on">Phần thẻ thông tin được ẩn</string>
+ <string name="revanced_hide_info_cards_section_summary_off">Phần thẻ thông tin được hiện</string>
+ <string name="revanced_hide_transcript_section_title">Ẩn phần bản chép lời</string>
+ <string name="revanced_hide_transcript_section_summary_on">Phần bản chép lời được ẩn</string>
+ <string name="revanced_hide_transcript_section_summary_off">Phần bản chép lời được hiện</string>
+ <string name="revanced_hide_description_components_screen_title">Mô tả video</string>
+ <string name="revanced_hide_description_components_screen_summary">Ẩn hoặc hiện các thành phần mô tả video</string>
+ <string name="revanced_custom_filter_screen_title">Bộ lọc tùy chỉnh</string>
+ <string name="revanced_custom_filter_screen_summary">Ẩn các thành phần dùng bộ lọc tùy chỉnh</string>
+ <string name="revanced_custom_filter_title">Bật bộ lọc tùy chỉnh</string>
+ <string name="revanced_custom_filter_summary_on">Bộ lọc tùy chỉnh đã bật</string>
+ <string name="revanced_custom_filter_summary_off">Bộ lọc tuỳ chỉnh đã tắt</string>
+ <string name="revanced_custom_filter_strings_title">Bộ lọc tùy chỉnh</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">Danh sách các chuỗi dựng đường dẫn thành phần để lọc được ngăn cách bởi dòng mới</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">Bộ lọc tuỳ chỉnh không hợp lệ: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">Ẩn nội dung từ khóa</string>
+ <string name="revanced_hide_keyword_content_screen_summary">Ẩn video trong tìm kiếm và bảng tin dùng bộ lọc từ khóa</string>
+ <string name="revanced_hide_keyword_content_home_title">Ẩn video trang chính bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">Video ở thẻ trang chính đã được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">Video ở thẻ trang chính không được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">Ẩn video đăng ký bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">Video ở thẻ đăng ký đã được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">Video ở thẻ đăng ký không được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_search_title">Ẩn kết quả tìm kiếm bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">Kết quả tìm kiếm đã được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">Kết quả tìm kiếm không được lọc bằng từ khóa</string>
+ <string name="revanced_hide_keyword_content_phrases_title">Từ khóa để ẩn</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">Từ khóa và cụm từ để ẩn, ngăn cách bằng dòng mới\n\nTừ với các ký tự in hoa ở giữa phải được viết hoa đúng (vd: iPhone, TikTok, LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">Giới thiệu về bộ lọc từ khóa</string>
+ <string name="revanced_hide_keyword_content_about_summary">Trang chính/Đăng ký/Kết quả tìm kiếm được lọc để ẩn nội dung khớp với cụm từ khóa\n\nGiới hạn\n• Một số Shorts có thể không được ẩn\n• Một số thành phần giao diện có thể không được ẩn\n• Tìm kiếm chứa từ khóa có thể không có kết quả</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">Từ khóa không hợp lệ. Không thể dùng \'%s\'</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">Từ khóa không hợp lệ. \'%1$s\' nhỏ hơn %2$d ký tự</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">Từ khóa \'$s\' sẽ ẩn toàn bộ video</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">Ẩn quảng cáo chung</string>
+ <string name="revanced_hide_general_ads_summary_on">Quảng cáo chung được ẩn</string>
+ <string name="revanced_hide_general_ads_summary_off">Quảng cáo chung được hiện</string>
+ <string name="revanced_hide_fullscreen_ads_title">Ẩn quảng cáo toàn màn hình</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">Quảng cáo toàn màn hình được ẩn\n\nTính năng này chỉ có ở các thiết bị cũ hơn</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">Quảng cáo toàn màn hình được hiện</string>
+ <string name="revanced_hide_buttoned_ads_title">Ẩn quảng cáo có nút</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">Quảng cáo có nút được ẩn</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">Quảng cáo có nút được hiện</string>
+ <string name="revanced_hide_paid_promotion_label_title">Ẩn nhãn quảng cáo được tài trợ</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">Nhãn quảng cáo được tài trợ được ẩn</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">Nhãn quảng cáo được tài trợ được hiện</string>
+ <string name="revanced_hide_self_sponsor_ads_title">Ẩn thẻ tự tài trợ</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">Thẻ được tài trợ được ẩn</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">Thẻ được tài trợ được hiện</string>
+ <string name="revanced_hide_products_banner_title">Ẩn biểu ngữ để xem sản phẩm</string>
+ <string name="revanced_hide_products_banner_summary_on">Biểu ngữ được ẩn</string>
+ <string name="revanced_hide_products_banner_summary_off">Biểu ngữ được hiện</string>
+ <string name="revanced_hide_shopping_links_title">Ẩn các liên kết mua hàng trong mô tả video</string>
+ <string name="revanced_hide_shopping_links_summary_on">Các liên kết mua hàng được ẩn</string>
+ <string name="revanced_hide_shopping_links_summary_off">Các liên kết mua hàng được hiện</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">Ẩn nút \'Đến Mua sắm\' trên trang của kênh</string>
+ <string name="revanced_hide_visit_store_button_summary_on">Nút được ẩn</string>
+ <string name="revanced_hide_visit_store_button_summary_off">Nút được hiện</string>
+ <string name="revanced_hide_web_search_results_title">Ẩn kết quả tìm kiếm từ web</string>
+ <string name="revanced_hide_web_search_results_summary_on">Kết quả tìm kiếm từ web được ẩn</string>
+ <string name="revanced_hide_web_search_results_summary_off">Kết quả tìm kiếm từ web được hiện</string>
+ <string name="revanced_hide_merchandise_banners_title">Ẩn biểu ngữ hàng hoá</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">Biểu ngữ hàng hóa được ẩn</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">Biểu ngữ hàng hóa được hiện</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">Ẩn QC toàn màn hình chỉ hoạt động với các thiết bị cũ</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">Ẩn quảng cáo YouTube Premium</string>
+ <string name="revanced_hide_get_premium_summary_on">Quảng cáo Youtube Premium bên dưới video được ẩn</string>
+ <string name="revanced_hide_get_premium_summary_off">Quảng cáo Youtube Premium bên dưới video được hiện</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">Ẩn quảng cáo trên video</string>
+ <string name="revanced_hide_video_ads_summary_on">Quảng cáo trên video được ẩn</string>
+ <string name="revanced_hide_video_ads_summary_off">Quảng cáo trên video được hiện</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">Đã chép URL vào bảng nhớ tạm</string>
+ <string name="revanced_share_copy_url_timestamp_success">Đã chép URL với dấu thời gian</string>
+ <string name="revanced_copy_video_url_title">Hiện nút sao chép url video</string>
+ <string name="revanced_copy_video_url_summary_on">Nút được hiển thị. Chạm để sao chép video URL. Chạm và giữ để sao chép video URL với dấu thời gian</string>
+ <string name="revanced_copy_video_url_summary_off">Nút không được hiện</string>
+ <string name="revanced_copy_video_url_timestamp_title">Hiện nút sao chép URL với dấu thời gian</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">Nút được hiển thị. Chạm để sao chép video URL với dấu thời gian. Chạm và giữ để sao chép video URL không dấu thời gian</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">Nút không được hiện</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">Loại bỏ hộp thoại cảnh báo trước khi xem</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">Hộp thoại sẽ bị loại bỏ</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">Hộp thoại sẽ được hiện</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">Điều này sẽ không qua mặt hạn chế độ tuổi. Nó chỉ tự động chấp nhận.</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">Tải xuống bên ngoài</string>
+ <string name="revanced_external_downloader_screen_summary">Các thiết lập trình tải xuống bên ngoài</string>
+ <string name="revanced_external_downloader_title">Hiện nút tải xuống bên ngoài</string>
+ <string name="revanced_external_downloader_summary_on">Nút tải xuống đã hiện trong trình phát</string>
+ <string name="revanced_external_downloader_summary_off">Nút tải xuống không hiện trong trình phát</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">Ghi đè nút hành động tải xuống</string>
+ <string name="revanced_external_downloader_action_button_summary_on">Nút tải xuống mở trình tải xuống bên ngoài</string>
+ <string name="revanced_external_downloader_action_button_summary_off">Nút tải xuống mở trình tải xuống nội bộ ứng dụng</string>
+ <string name="revanced_external_downloader_name_title">Tên gói trình tải xuống</string>
+ <string name="revanced_external_downloader_name_summary">Tên gói của ứng dụng tải xuống bên ngoài đã cài đặt của bạn, chẳng hạn như NewPipe hoặc Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s chưa được cài đặt. Hãy cài đặt nó.</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">Vô hiệu cử chỉ dò tìm chính xác</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">Cử chỉ đã tắt</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">Cử chỉ đã bật</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">Bật chạm tua tham tiến trình</string>
+ <string name="revanced_seekbar_tapping_summary_on">Chạm tua thanh tiến trình đã bật</string>
+ <string name="revanced_seekbar_tapping_summary_off">Chạm tua thanh tiến trình đã tắt</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">Bật cử chỉ độ sáng</string>
+ <string name="revanced_swipe_brightness_summary_on">Vuốt độ sáng đã bật</string>
+ <string name="revanced_swipe_brightness_summary_off">Vuốt độ sáng đã tắt</string>
+ <string name="revanced_swipe_volume_title">Bật cử chỉ âm lượng</string>
+ <string name="revanced_swipe_volume_summary_on">Vuốt âm lượng đã bật</string>
+ <string name="revanced_swipe_volume_summary_off">Vuốt âm lượng đã tắt</string>
+ <string name="revanced_swipe_press_to_engage_title">Bật cử chỉ nhân-để-vuốt</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">Nhân-để-vuốt đã bật</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">Nhân-để-vuốt đã tắt</string>
+ <string name="revanced_swipe_haptic_feedback_title">Bật phản hồi xúc giác</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">Phản hồi xúc giác đã bật</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">Phản hồi xúc giác đã tắt</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">Lưu và khôi phục độ sáng</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">Lưu và khôi phục độ sáng khi thoát hoặc vào toàn màn hình</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">Không lưu và khôi phục độ sáng khi thoát hoặc vào toàn màn hình</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">Bật cử chỉ độ sáng tự động</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">Vuốt xuống đến giá trị thấp nhất của cử chỉ độ sáng bật độ sáng tự động</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">Vuốt xuống đến giá trị thấp nhất không bật độ sáng tự động</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">Tự động</string>
+ <string name="revanced_swipe_overlay_timeout_title">Thời gian chờ lớp phủ vuốt</string>
+ <string name="revanced_swipe_overlay_timeout_summary">Số mili-giây mà lớp phủ hiển thị</string>
+ <string name="revanced_swipe_text_overlay_size_title">Kích thước văn bản lớp phủ vuốt</string>
+ <string name="revanced_swipe_text_overlay_size_summary">Kích thước văn bản cho lớp phủ vuốt</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">Độ trong suốt nền lớp phủ vuốt</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">Độ trong suốt của nền lớp phủ vuốt</string>
+ <string name="revanced_swipe_threshold_title">Độ rộng ngưỡng vuốt</string>
+ <string name="revanced_swipe_threshold_summary">Độ rộng của ngưỡng vuốt để thực hiện cử chỉ vuốt</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">Tắt phụ đề tự động</string>
+ <string name="revanced_auto_captions_summary_on">Phụ đề tự động đã tắt</string>
+ <string name="revanced_auto_captions_summary_off">Phụ đề tự động đã bật</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">Các nút hành động</string>
+ <string name="revanced_hide_buttons_screen_summary">Ẩn hoặc hiện nút dưới video</string>
+ <string name="revanced_hide_like_dislike_button_title">Ẩn Thích và Không thích</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">Các nút Thích và Không thích được ẩn</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">Các nút Thích và Không thích được hiện</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">Ẩn Chia sẻ</string>
+ <string name="revanced_hide_share_button_summary_on">Nút chia sẻ được ẩn</string>
+ <string name="revanced_hide_share_button_summary_off">Nút chia sẻ được hiện</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">Ẩn Báo cáo</string>
+ <string name="revanced_hide_report_button_summary_on">Nút báo cáo được ẩn</string>
+ <string name="revanced_hide_report_button_summary_off">Nút báo cáo được hiện</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">Ẩn Phối lại</string>
+ <string name="revanced_hide_remix_button_summary_on">Nút Phối lại được ẩn</string>
+ <string name="revanced_hide_remix_button_summary_off">Nút Phối lại được hiện</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">Ẩn Tải xuống</string>
+ <string name="revanced_hide_download_button_summary_on">Nút tải xuống được ẩn</string>
+ <string name="revanced_hide_download_button_summary_off">Nút tải xuống được hiện</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">Ẩn Cảm ơn</string>
+ <string name="revanced_hide_thanks_button_summary_on">Nút cảm ơn được ẩn</string>
+ <string name="revanced_hide_thanks_button_summary_off">Nút cảm ơn được hiện</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Ẩn Tạo đoạn video</string>
+ <string name="revanced_hide_clip_button_summary_on">Nút tạo đoạn video được ẩn</string>
+ <string name="revanced_hide_clip_button_summary_off">Nút tạo đoạn video được hiện</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">Ẩn Lưu vào danh sách phát</string>
+ <string name="revanced_hide_playlist_button_summary_on">Nút lưu vào danh sách phát được ẩn</string>
+ <string name="revanced_hide_playlist_button_summary_off">Nút lưu vào danh sách phát được hiện</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">Ẩn nút tự động phát</string>
+ <string name="revanced_hide_autoplay_button_summary_on">Nút tự động phát được ẩn</string>
+ <string name="revanced_hide_autoplay_button_summary_off">Nút tự động phát được hiện</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">Ẩn nút phụ đề</string>
+ <string name="revanced_hide_captions_button_summary_on">Nút phụ đề được ẩn</string>
+ <string name="revanced_hide_captions_button_summary_off">Nút phụ đề được hiện</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">Ẩn nút truyền</string>
+ <string name="revanced_hide_cast_button_summary_on">Nút Truyền được ẩn</string>
+ <string name="revanced_hide_cast_button_summary_off">Nút Truyền được hiển thị</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Các nút điều hướng</string>
+ <string name="revanced_navigation_buttons_screen_summary">Ẩn hoặc hiện các nút ở thanh điều hướng</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">Ẩn Trang chính</string>
+ <string name="revanced_hide_home_button_summary_on">Nút trang chính được ẩn</string>
+ <string name="revanced_hide_home_button_summary_off">Nút trang chính được hiện</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">Ẩn Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">Nút Shorts được ẩn</string>
+ <string name="revanced_hide_shorts_button_summary_off">Nút Shorts được hiển thị</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">Ẩn Tạo mới</string>
+ <string name="revanced_hide_create_button_summary_on">Nút tạo được ẩn</string>
+ <string name="revanced_hide_create_button_summary_off">Nút tạo được hiện</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">Ẩn Đăng ký</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">Nút đăng ký được ẩn</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">Nút Đăng ký được hiện</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">Chuyển vị nút Tạo với nút Thông báo</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">Nút Tạo mới được hoán đổi với nút Thông báo\n\nLưu ý: Việc bật cũng sẽ ép buộc ẩn quảng cáo trong video</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">Nút Tạo không chuyển vị với nút Thông báo</string>
+ <string name="revanced_hide_navigation_button_labels_title">Ẩn các nhãn nút điều hướng</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">Các nhãn được ẩn</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">Các nhãn được hiện</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Trình đơn nổi</string>
+ <string name="revanced_hide_player_flyout_summary">Ẩn hoặc hiện các mục trình đơn nổi</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">Ẩn Phụ đề</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">Trình đơn phụ đề được ẩn</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">Trình đơn phụ đề được hiện</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">Ẩn cài đặt bổ sung</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">Trình đơn cài đặt bổ sung được ẩn</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">Trình đơn cài đặt bổ sung được hiện</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">Ẩn lặp video</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">Trình đơn lặp video được ẩn</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">Trình đơn lặp video được hiện</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">Ẩn chế độ môi trường</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">Trình đơn chế độ môi trường được ẩn</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">Trình đơn chế độ môi trường được hiện</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">Ẩn Trợ giúp & Phản hồi</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">Trình đơn trợ giúp & phản hồi được ẩn</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">Trình đơn trợ giúp & phản hồi được hiện</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">Ẩn Tốc độ phát</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">Trình đơn tốc độ phát được ẩn</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">Trình đơn tốc độ phát được hiện</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">Ẩn Thông tin thêm</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">Trình đơn thông tin thêm được ẩn</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">Trình đơn thông tin thêm được hiện</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">Ẩn Khóa màn hình</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">Trình đơn khóa màn hình được ẩn</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">Trình đơn khóa màn hình được hiện</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">Ẩn Bản âm thanh</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">Nút bản âm thanh được ẩn</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">Nút bản âm thanh được hiện</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">Ẩn Xem trong thực tế ảo</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">Trình đơn xem trong thực tế ảo được ẩn</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">Trình đơn xem trong thực tế ảo được hiện</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">Ẩn các nút video trước đó & tiếp theo</string>
+ <string name="revanced_hide_player_buttons_summary_on">Các nút được ẩn</string>
+ <string name="revanced_hide_player_buttons_summary_off">Các nút được hiện</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">Ẩn các thẻ album</string>
+ <string name="revanced_hide_album_cards_summary_on">Các thẻ album được ẩn</string>
+ <string name="revanced_hide_album_cards_summary_off">Các thẻ album được hiện</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">Bình luận</string>
+ <string name="revanced_comments_screen_summary">Ẩn hoặc hiện các thành phần bình luận</string>
+ <string name="revanced_hide_comments_by_members_header_title">Ẩn tiêu đề \'Bình luận bởi hội viên\'</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">Tiêu đề \'Bình luận bởi hội viên\' được ẩn</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">Tiêu đề \'Bình luận bởi hội viên\' được hiện</string>
+ <string name="revanced_hide_comments_section_title">Ẩn phần bình luận</string>
+ <string name="revanced_hide_comments_section_summary_on">Phần Bình luận được ẩn</string>
+ <string name="revanced_hide_comments_section_summary_off">Phần Bình luận được hiện</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">Ẩn nút \'Tạo video ngắn\'</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">Nút \'Tạo video ngắn\' được ẩn</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">Nút \'Tạo video ngắn\' được hiện</string>
+ <string name="revanced_hide_comments_preview_comment_title">Ẩn xem trước bình luận</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">Xem trước bình luận được ẩn</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">Xem trước bình luận được hiện</string>
+ <string name="revanced_hide_comments_thanks_button_title">Ẩn nút cảm ơn</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">Nút cảm ơn được ẩn</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">Nút cảm ơn được hiện</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">Ẩn mốc thời gian và các nút biểu tượng cảm xúc</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">Mốc thời gian và các nút biểu tượng cảm xúc được ẩn</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">Mốc thời gian và các nút biểu tượng cảm xúc được hiện</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">Ẩn hộp chiến dịch gây quỹ</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">Hộp chiến dịch gây quỹ được ẩn</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">Hộp chiến dịch gây quỹ được hiện</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">Ẩn thẻ kết thúc màn hình</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">Thẻ kết thúc màn hình được ẩn</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">Thẻ kết thúc màn hình được hiện</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">Thanh bộ lọc</string>
+ <string name="revanced_hide_filter_bar_screen_summary">Ẩn hoặc hiện thanh bộ lọc trong bảng tin, tìm kiếm và video liên quan</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">Ẩn trong bảng tin</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">Đã ẩn trong bảng tin</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">Đã hiện trong bảng tin</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">Ẩn tròn tìm kiếm</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">Đã ẩn trong tìm kiếm</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">Đã hiện trong tìm kiếm</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">Ẩn trong video liên quan</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">Đã ẩn trong video liên quan</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">Đã hiện trong video liên quan</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">Ẩn nút micrô nổi</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">Nút micrô được ẩn</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">Nút micrô được hiện</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">Tắt chế độ môi trường trong toàn màn hình</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">Chế độ môi trường được tắt</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">Chế độ môi trường được bật</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">Ẩn thẻ thông tin</string>
+ <string name="revanced_hide_info_cards_summary_on">Thẻ thông tin được ẩn</string>
+ <string name="revanced_hide_info_cards_summary_off">Thẻ thông tin được hiển thị</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">Tắt chuyển động cuộn số</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">Số cuộn không chuyển động</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">Số cuộn được chuyển động</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">Ẩn thanh tiến trình trong trình phát video</string>
+ <string name="revanced_hide_seekbar_summary_on">Thanh tiến trình trong trình phát video được ẩn</string>
+ <string name="revanced_hide_seekbar_summary_off">Thanh tiến trình trong trình phát video được hiện</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">Ẩn thanh tiến trình trong hình thu nhỏ video</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">Thanh tiến trình hình thu nhỏ được ẩn</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">Thanh tiến trình hình thu nhỏ được hiện</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">Ẩn Shorts trong bảng tin trang chính</string>
+ <string name="revanced_hide_shorts_home_summary_on">Shorts trong bảng tin trang chính được ẩn</string>
+ <string name="revanced_hide_shorts_home_summary_off">Shorts trong bảng tin trang chính được hiện</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">Ẩn Shorts trong bảng tin đăng ký</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">Shorts trong bảng tin đăng ký được ẩn</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">Shorts trong bảng tin đăng ký được hiện</string>
+ <string name="revanced_hide_shorts_search_title">Ẩn Shorts trong kết quả tìm kiếm</string>
+ <string name="revanced_hide_shorts_search_summary_on">Shorts trong kết quả tìm kiếm được ẩn</string>
+ <string name="revanced_hide_shorts_search_summary_off">Shorts trong kết quả tìm kiếm được hiện</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">Ẩn nút tham gia</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">Nút tham gia được ẩn</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">Nút tham gia được hiện</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">Ẩn nút đăng ký</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">Nút đăng ký được ẩn</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">Nút đăng ký được hiện</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">Ẩn các nút phủ lên khi tạm dừng</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">Các nút phủ lên khi tạm dừng được ẩn</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">Các nút phủ lên khi tạm dừng được hiện</string>
+ <string name="revanced_hide_shorts_shop_button_title">Ẩn nút mua sắm</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">Nút mua sắm được ẩn</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">Nút mua sắm được hiện</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">Ẩn nút Siêu cảm ơn</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">Nút siêu cảm ơn được ẩn</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">Nút siêu cảm ơn được hiện</string>
+ <string name="revanced_hide_shorts_tagged_products_title">Ẩn sản phẩm được gắn thê</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">Sản phẩm được gắn thẻ được ẩn</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">Sản phẩm được gắn thẻ được hiện</string>
+ <string name="revanced_hide_shorts_location_label_title">Ẩn nhãn vị trí</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">Nhãn vị trí được ẩn</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">Nhãn vị trí được hiện</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">Ẩn nút lưu âm thanh vào danh sách phát</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">Lưu âm thanh vào danh sách phát được ẩn</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">Lưu âm thanh vào danh sách phát được hiện</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">Ẩn đề xuất tìm kiếm</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">Đề xuất tìm kiếm được ẩn</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">Đề xuất tìm kiếm được hiện</string>
+ <string name="revanced_hide_shorts_like_button_title">Ẩn nút thích</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">Nút thích được ẩn</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">Nút thích được hiện</string>
+ <string name="revanced_hide_shorts_dislike_button_title">Ẩn nút không thích</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">Nút không thích được ẩn</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">Nút không thích được hiện</string>
+ <string name="revanced_hide_shorts_comments_button_title">Ẩn nút bình luận</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">Nút bình luận được ẩn</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">Nút bình luận được hiện</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">Ẩn nút phối lại</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">Nút phối lại được ẩn</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">Nút phối lại được hiện</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">Ẩn nút chia sẻ</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">Nút chia sẻ được ẩn</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">Nút chia sẻ được hiện</string>
+ <string name="revanced_hide_shorts_info_panel_title">Ẩn bảng thông tin</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">Bảng thông tin được ẩn</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">Bảng thông tin được hiện</string>
+ <string name="revanced_hide_shorts_channel_bar_title">Ẩn nút kênh</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">Nút kênh được ẩn</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">Nút kênh được hiện</string>
+ <string name="revanced_hide_shorts_video_title_title">Ẩn tiêu đề video</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">Tiêu đề được ẩn</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">Tiêu đề được hiện</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">Ẩn nhãn siêu dữ liệu âm thanh</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">Nhãn siêu dữ liệu được ẩn</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">Nhãn siêu dữ liệu được hiện</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">Ẩn nhãn liên kết toàn video</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">Nhãn liên kết video được ẩn</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">Nhãn liên kết video được hiện</string>
+ <string name="revanced_hide_shorts_sound_button_title">Ẩn nút âm thanh</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">Nút âm thanh được ẩn</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">Nút âm thanh được hiện</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">Ẩn thanh điều hướng</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">Thanh điều hướng được ẩn</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">Thanh điều hướng được hiện</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">Tắt video đề xuất ở màn hình kết thúc</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">Video đề xuất sẽ được tắt</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">Video đề xuất sẽ được bật</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">Ẩn mốc thời gian video</string>
+ <string name="revanced_hide_timestamp_summary_on">Mốc thời gian được ẩn</string>
+ <string name="revanced_hide_timestamp_summary_off">Mốc thời gian được hiện</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">Ẩn bảng tự bật lên trên trình phát</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">Bảng bật lên trên trình phát được ẩn</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">Bảng bật lên trên trình phát được hiện</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">Độ mờ của lớp phủ trình phát</string>
+ <string name="revanced_player_overlay_opacity_summary">Giá trị độ mờ của lớp phủ trình phát trong khoảng từ 0 đến 100, trong đó 0 là trong suốt</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">Độ phủ mờ trình phát phải nằm giữa 0-100</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">Ẩn</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">Lượt ko thích tạm thời ko khả dụng (API hết giờ)</string>
+ <string name="revanced_ryd_failure_connection_status_code">Lượt không thích không khả dụng ( trạng thái %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">Lượt ko thích ko khả dụng (đạt giới hạn API máy khách)</string>
+ <string name="revanced_ryd_failure_generic">Số lượt không thích không khả dụng (%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">Tải lại video để không thích bằng ReturnYouTubeDislike</string>
+ <string name="revanced_ryd_enable_summary_on">Số lượt không thích được hiện</string>
+ <string name="revanced_ryd_enable_summary_off">Số lượt không thích không được hiện</string>
+ <string name="revanced_ryd_shorts_title">Hiện số lượt không thích trong Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on">Số lượt không thích được hiện trong Shorts</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">Số lượt không thích được hiện trong Shorts\n\nHạn chế: Số lượt không thích có thể xuất hiện ở chế độ ẩn danh</string>
+ <string name="revanced_ryd_shorts_summary_off">Số lượt không thích được ẩn trong Shorts</string>
+ <string name="revanced_ryd_dislike_percentage_title">Số lượt không thích theo phần trăm</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">Số lượt không thích được hiện dưới dạng phần trăm</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">Số lượt không thích được hiện dưới dạng số</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">Nút thích thu gọn</string>
+ <string name="revanced_ryd_compact_layout_summary_on">Nút thích được thiết kế để tối ưu độ rộng hiển thị</string>
+ <string name="revanced_ryd_compact_layout_summary_off">Nút thích được thiết kế để tối ưu ngoại hình tốt nhất</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">Hiện thông báo nổi nếu API không khả dụng</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">Thông báo nổi được hiện nếu Return YouTube Dislike không khả dụng</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">Thông báo nổi không được hiện nếu Return YouTube Dislike không khả dụng</string>
+ <string name="revanced_ryd_about">Giới thiệu</string>
+ <string name="revanced_ryd_attribution_summary">Dữ liệu được cung cấp bởi API Return YouTube Dislike. Nhấn vào đây để tìm hiểu thêm</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">Thống kê API ReturnYouTubeDislike của thiết bị này</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">Thời gian phản hồi của API, trung binh</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">Thời gian phản hồi của API, tối thiểu</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">Thời gian phản hồi của API, tối đa</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">Thời gian phản hồi của API, video cuối</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">Lượt không thích tạm thời không khả dụng - Đạt giới hạn API máy khách có hiệu lực</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">Số lượt truy vấn API, số lần gọi</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">Không gọi mạng lần nào</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d lần gọi mạng</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">Số lượt truy vấn API, số lần hết hạn</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">Không gọi mạng lần nào bị hết hạn</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d lần gọi mạng bị hết hạn</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">Số lần đạt giới hạn API máy khách</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">Không gặp phải giới hạn tỷ lệ máy khách</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">Gặp phải %d lần đạt giới hạn tỷ lệ máy khách</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d mili-giây</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">Bật thanh tìm kiếm rộng</string>
+ <string name="revanced_wide_searchbar_summary_on">Thanh tìm kiếm rộng được bật</string>
+ <string name="revanced_wide_searchbar_summary_off">Thanh tìm kiếm rộng được tắt</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">Khôi phục thanh tiến trình hình thu nhỏ kiểu cũ</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">Thanh tiến trình hình thu nhỏ sẽ xuất hiện phía trên thanh tiến trình</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">Thanh tiến trình hình thu nhỏ sẽ xuất hiện khi toàn màn hình</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">Bật SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock là một tiện tích được đóng góp bởi cộng đồng nhằm bỏ qua các phân đoạn gây khó chịu trong video trên YouTube</string>
+ <string name="revanced_sb_appearance_category">Giao diện</string>
+ <string name="revanced_sb_enable_voting">Hiện nút bình chọn</string>
+ <string name="revanced_sb_enable_voting_sum_on">Nút bình chọn phân đoạn được hiện</string>
+ <string name="revanced_sb_enable_voting_sum_off">Nút bình chọn phân đoạn không được hiện</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">Dùng nút bỏ qua phân đoạn thu gọn</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">Nút bỏ qua phân đoạn được thiết kế để tối ưu độ rộng hiển thị</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">Nút bỏ qua phân đoạn được thiết kế để tối ưu ngoại hình tốt nhất</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">Tự động ẩn nút bỏ qua</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">Nút bỏ qua ẩn sau vài giây</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">Nút bỏ qua hiển thị trong suốt phân đoạn</string>
+ <string name="revanced_sb_general_skiptoast">Thông báo nổi khi tự động bỏ qua</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">Hiển thị thông báo nổi mỗi khi tự động bỏ qua phân đoạn. Nhấn vào đây để xem ví dụ</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Thông báo nổi không được hiện. Nhấn vào đây để xem ví dụ</string>
+ <string name="revanced_sb_general_time_without">Hiện thời lượng video không có phân đoạn</string>
+ <string name="revanced_sb_general_time_without_sum_on">Thời lượng video trừ đi tất cả phân đoạn, được hiện trong dấu ngoặc đơn bên cạnh thời lượng đầy đủ của video</string>
+ <string name="revanced_sb_general_time_without_sum_off">Thời lượng đầy đủ của video được hiện</string>
+ <string name="revanced_sb_create_segment_category">Tạo các phân đoạn mới</string>
+ <string name="revanced_sb_enable_create_segment">Hiện nút tạo phân đoạn mới</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">Nút tạo phân đoạn mới được hiện</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">Nút tạo phân đoạn mới không được hiện</string>
+ <string name="revanced_sb_general_adjusting">Điều chỉnh bước tua của phân đoạn mới</string>
+ <string name="revanced_sb_general_adjusting_sum">Số mili-giây của các nút điều chỉnh thay đổi khi tạo phân đoạn mới</string>
+ <string name="revanced_sb_general_adjusting_invalid">Giá trị phải là một số dương</string>
+ <string name="revanced_sb_guidelines_preference_title">Xem hướng dẫn</string>
+ <string name="revanced_sb_guidelines_preference_sum">Hướng dẫn bao gồm các quy tắc và mẹo về cách tạo phân đoạn mới</string>
+ <string name="revanced_sb_guidelines_popup_title">Thực hiện theo các hướng dẫn</string>
+ <string name="revanced_sb_guidelines_popup_content">Đọc hướng dẫn SponsorBlock trước khi tạo phân đoạn mới</string>
+ <string name="revanced_sb_guidelines_popup_already_read">Đã đọc</string>
+ <string name="revanced_sb_guidelines_popup_open">Hiện cho tôi</string>
+ <string name="revanced_sb_general">Chung</string>
+ <string name="revanced_sb_toast_on_connection_error_title">Hiện một thông báo nổi nếu API không khả dụng</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Thông báo nổi được hiện nếu SponsorBlock không khả dụng</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">Thông báo nổi không được hiện nếu SponsorBlock không khả dụng</string>
+ <string name="revanced_sb_general_skipcount">Bật theo dõi số lần bỏ qua</string>
+ <string name="revanced_sb_general_skipcount_sum_on">Để bảng xếp hạng SponsorBlock biết đã tiết kiệm bao nhiêu thời gian. Một tin nhắn được gửi đến bảng xếp hạng mỗi khi một phân đoạn được bỏ qua</string>
+ <string name="revanced_sb_general_skipcount_sum_off">Theo dõi số lần bỏ qua được bật</string>
+ <string name="revanced_sb_general_min_duration">Thời lượng phân đoạn tối thiểu</string>
+ <string name="revanced_sb_general_min_duration_sum">Các phân đoạn ngắn hơn giá trị này (bằng giây) sẽ không được hiện hoặc bỏ qua</string>
+ <string name="revanced_sb_general_uuid">Định danh người dùng riêng tư của bạn</string>
+ <string name="revanced_sb_general_uuid_sum">Mã này nên được giữ riêng tư. Nó giống như mật khẩu và không nên được chia sẻ với bất kỳ ai. Nếu ai đó có nó, họ có thể mạo danh bạn</string>
+ <string name="revanced_sb_general_uuid_invalid">Định danh người dùng riêng tư phải dài ít nhất 30 ký tự</string>
+ <string name="revanced_sb_general_api_url">Thay đổi URL API</string>
+ <string name="revanced_sb_general_api_url_sum">Địa chỉ SponsorBlock dùng để tạo lời gọi đến máy chủ</string>
+ <string name="revanced_sb_api_url_reset">Đặt lại URL API</string>
+ <string name="revanced_sb_api_url_invalid">URL API không hợp lệ</string>
+ <string name="revanced_sb_api_url_changed">URL API đã thay đổi</string>
+ <string name="revanced_sb_settings_ie">Nhập/Xuất cài đặt</string>
+ <string name="revanced_sb_settings_copy">Sao chép</string>
+ <string name="revanced_sb_settings_ie_sum">Cấu hình JSON SponsorBlock của bạn có thể được nhập/xuất vào ReVanced và các nền tảng SponsorBlock khác</string>
+ <string name="revanced_sb_settings_ie_sum_warning">Cấu hình JSON SponsorBlock của bạn có thể được nhập/xuất vào ReVanced và các nền tảng SponsorBlock khác. Điều này bao gồm định danh người dùng riêng tư của bạn. Hãy thận trọng khi chia sẻ</string>
+ <string name="revanced_sb_settings_import_successful">Cài đặt đã được nhập thành công</string>
+ <string name="revanced_sb_settings_import_failed">Nhập thất bại: %s</string>
+ <string name="revanced_sb_settings_export_failed">Xuất thất bại: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">Cài đặt của bạn chứa một định danh người dùng riêng tư SponsorBlock.\n\nĐịnh danh này giống như mật khẩu và không nên chia sẻ nó.\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">Không hiện lại</string>
+ <string name="revanced_sb_diff_segments">Thay đổi hành vi phân đoạn</string>
+ <string name="revanced_sb_segments_sponsor">Nhà tài trợ</string>
+ <string name="revanced_sb_segments_sponsor_sum">Quảng cáo, giới thiệu được trả tiền và quảng cáo trực tiếp. Không phải tự quảng cáo hoặc lời cảm ơn miễn phí đến các tác nhân/nhà sáng tạo/trang web/sản phẩm mà họ yêu thích</string>
+ <string name="revanced_sb_segments_selfpromo">Quảng cáo không được trả phí/Tự quảng cáo</string>
+ <string name="revanced_sb_segments_selfpromo_sum">Tương tự như \'Nhà tài trợ\' ngoại trừ không trả tiền hoặc tự quảng cáo. Bao gồm các phần về hàng hóa, quyên góp hoặc thông tin về người họ cộng tác</string>
+ <string name="revanced_sb_segments_interaction">Nhắc nhở tương tác (Đăng ký)</string>
+ <string name="revanced_sb_segments_interaction_sum">Một lời nhắc ngắn về thích, đăng ký hoặc theo dõi họ ở giữa nội dung. Nếu nó dài hoặc về một điều gì đó cụ thể, nó nên phân loại vào tự quảng cáo</string>
+ <string name="revanced_sb_segments_highlight">Nổi bật</string>
+ <string name="revanced_sb_segments_highlight_sum">Phần của video mà hầu hết mọi người đang tìm kiếm</string>
+ <string name="revanced_sb_segments_intro">Gián đoạn/Giới thiệu</string>
+ <string name="revanced_sb_segments_intro_sum">Một khoảng thời gian mà không có nội dung thực tế. Có thể là tạm dừng, khung hình tĩnh hoặc hoạt ảnh lặp lại. Không bao gồm các phần chuyển tiếp chứa thông tin</string>
+ <string name="revanced_sb_segments_outro">Màn hình kết thúc/Danh đề</string>
+ <string name="revanced_sb_segments_outro_sum">Danh đề hoặc màn hình kết thúc của Youtube xuất hiện. Không dành cho phần kết chứa thông tin</string>
+ <string name="revanced_sb_segments_preview">Đoạn xem trước/Tóm tắt/Gây chú ý</string>
+ <string name="revanced_sb_segments_preview_sum">Tập hợp các đoạn cắt thể hiện nhũng gì tiếp theo hoặc sẽ xảy ra trong video hoặc loạt video, nơi mà tất cả thông tin được lặp lại ở nơi khác</string>
+ <string name="revanced_sb_segments_filler">Phân đoạn lạc đề - nhảm nhí/Câu đùa hài hước</string>
+ <string name="revanced_sb_segments_filler_sum">Phân cảnh được thêm vào chỉ để dông dài hoặc hài hước mà không cần thiết để hiểu rõ nội dung chính của video. Không bao gồm phân đoạn cung cấp bối cảnh hoặc chi tiết nền</string>
+ <string name="revanced_sb_segments_nomusic">Âm nhạc: Phần không phải âm nhạc</string>
+ <string name="revanced_sb_segments_nomusic_sum">Chỉ dùng cho video về âm nhạc. Phần của video mà không có nhạc, tách biệt với danh mục khác</string>
+ <string name="revanced_sb_skip_button_compact">Bỏ qua</string>
+ <string name="revanced_sb_skip_button_compact_highlight">Nổi bật</string>
+ <string name="revanced_sb_skip_button_sponsor">Bỏ qua nhà tài trợ</string>
+ <string name="revanced_sb_skip_button_selfpromo">Bỏ qua quảng cáo</string>
+ <string name="revanced_sb_skip_button_interaction">Bỏ qua tương tác</string>
+ <string name="revanced_sb_skip_button_highlight">Bỏ qua đến phần nổi bật</string>
+ <string name="revanced_sb_skip_button_intro_beginning">Bỏ qua giới thiệu</string>
+ <string name="revanced_sb_skip_button_intro_middle">Bỏ qua phần gián đoạn</string>
+ <string name="revanced_sb_skip_button_intro_end">Bỏ qua phần gián đoạn</string>
+ <string name="revanced_sb_skip_button_outro">Bỏ qua kết thúc</string>
+ <string name="revanced_sb_skip_button_preview_beginning">Bỏ qua xem trước</string>
+ <string name="revanced_sb_skip_button_preview_middle">Bỏ qua xem trước</string>
+ <string name="revanced_sb_skip_button_preview_end">Bỏ qua tóm tắt</string>
+ <string name="revanced_sb_skip_button_filler">Bỏ qua cảnh phụ</string>
+ <string name="revanced_sb_skip_button_nomusic">Bỏ qua phần không nhạc</string>
+ <string name="revanced_sb_skip_button_unsubmitted">Bỏ qua phân đoạn</string>
+ <string name="revanced_sb_skipped_sponsor">Đã bỏ qua nhà tài trợ</string>
+ <string name="revanced_sb_skipped_selfpromo">Đã bỏ qua tự quảng cáo</string>
+ <string name="revanced_sb_skipped_interaction">Đã bỏ qua nhắc nhở phiền phức</string>
+ <string name="revanced_sb_skipped_highlight">Đã bỏ qua đến phần nổi bật</string>
+ <string name="revanced_sb_skipped_intro_beginning">Đã bỏ qua giới thiệu</string>
+ <string name="revanced_sb_skipped_intro_middle">Đã bỏ qua phần gián đoạn</string>
+ <string name="revanced_sb_skipped_intro_end">Đã bỏ qua phần gián đoạn</string>
+ <string name="revanced_sb_skipped_outro">Đã bỏ qua kết thúc</string>
+ <string name="revanced_sb_skipped_preview_beginning">Đã bỏ qua xem trước</string>
+ <string name="revanced_sb_skipped_preview_middle">Đã bỏ qua xem trước</string>
+ <string name="revanced_sb_skipped_preview_end">Đã bỏ qua tóm tắt</string>
+ <string name="revanced_sb_skipped_filler">Đã bỏ qua phân đoạn lạc đề - nhảm nhí</string>
+ <string name="revanced_sb_skipped_nomusic">Đã bỏ qua phần không phải âm nhạc</string>
+ <string name="revanced_sb_skipped_unsubmitted">Đã bỏ qua phân đoạn chưa gửi</string>
+ <string name="revanced_sb_skipped_multiple_segments">Đã bỏ qua nhiều phân đoạn</string>
+ <string name="revanced_sb_skip_automatically">Tự động bỏ qua</string>
+ <string name="revanced_sb_skip_automatically_once">Tự động bỏ qua một lần</string>
+ <string name="revanced_sb_skip_showbutton">Hiện nút bỏ qua phân đoạn</string>
+ <string name="revanced_sb_skip_seekbaronly">Hiển thị trên thanh tiến trình</string>
+ <string name="revanced_sb_skip_ignore">Tắt</string>
+ <string name="revanced_sb_submit_failed_invalid">Không thể gửi phân đoạn: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock bị sập tạm thời</string>
+ <string name="revanced_sb_submit_failed_unknown_error">Không thể gửi phân đoạn (trạng thái: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">Không thể gửi phân đoạn.\nHạn chế truy cập (nhiều lần từ một người hoặc IP)</string>
+ <string name="revanced_sb_submit_failed_forbidden">Không thể gửi phân đoạn: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">Không thể gửi phân đoạn.\nĐã tồn tại</string>
+ <string name="revanced_sb_submit_succeeded">Phân đoạn được gửi thành công</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock tạm thời không khả dụng (API hết hạn)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock tạm thời không khả dụng (trạng thái %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock tạm thời không khả dụng</string>
+ <string name="revanced_sb_vote_failed_timeout">Không thể bình chọn cho phân đoạn (API hết hạn)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">Ko thể bình chọn cho phân đoạn (t.thái: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">Không thể bình chọn cho phân đoạn: %s</string>
+ <string name="revanced_sb_vote_upvote">Ủng hộ</string>
+ <string name="revanced_sb_vote_downvote">Phản đối</string>
+ <string name="revanced_sb_vote_category">Thay đổi danh mục</string>
+ <string name="revanced_sb_vote_no_segments">Không có phân đoạn nào để bình chọn</string>
+ <string name="revanced_sb_new_segment_choose_category">Chọn danh mục phân đoạn</string>
+ <string name="revanced_sb_new_segment_disabled_category">Danh mục này bị tắt trong cài đặt. Bật danh mục để gửi.</string>
+ <string name="revanced_sb_new_segment_title">Tạo phân đoạn SponsorBlock mới</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">Đặt %1$02d:%2$02d:%3$03d là bắt đầu hay kết thúc của một phân đoạn mới?</string>
+ <string name="revanced_sb_new_segment_mark_start">bắt đầu</string>
+ <string name="revanced_sb_new_segment_mark_end">kết thúc</string>
+ <string name="revanced_sb_new_segment_now">bây giờ</string>
+ <string name="revanced_sb_new_segment_time_start">Thời gian phân đoạn bắt đầu lúc</string>
+ <string name="revanced_sb_new_segment_time_end">Thời gian phân đoạn kết thúc lúc</string>
+ <string name="revanced_sb_new_segment_confirm_title">Thời gian đã đúng chưa?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">Phân đoạn từ\n\n%1$s\nđến\n%2$s\n\n(%3$s)\n\nCó sẵn sàng để gửi?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">Thời gian bắt đầu phải trước thời gian kết thúc</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">Đánh dấu hai vị trí đầu - cuối trên thanh thời gian trước</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">Hãy xem trước phân đoạn để đảm bảo rằng nó bỏ qua suôn sẻ</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">Chỉnh sửa thời gian của phân đoạn theo cách thủ công</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">Bạn có muốn thay đổi thời gian bắt đầu hoặc kết thúc của phân đoạn không?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">Thời gian đã đặt không hợp lệ</string>
+ <string name="revanced_sb_stats">Thống kê</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">Số liệu thống kê tạm thời không khả dụng (API ngừng hoạt động)</string>
+ <string name="revanced_sb_stats_loading">Đang tải...</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock bị vô hiệu hoá</string>
+ <string name="revanced_sb_stats_username">Tên người dùng của bạn: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">Nhấn vào đây để thay đổi tên người dùng của bạn</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">Không thay đổi được tên người dùng: Trạng thái: %1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">Tên người dùng đã được thay đổi thành công</string>
+ <string name="revanced_sb_stats_reputation">Danh tiếng của bạn là <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">Bạn đã tạo <b>%s</b> phân đoạn</string>
+ <string name="revanced_sb_stats_saved_zero">Bảng xếp hạng SponsorBlock</string>
+ <string name="revanced_sb_stats_saved">Bạn đã giúp mọi người bỏ qua <b>%s</b> phân đoạn</string>
+ <string name="revanced_sb_stats_saved_sum_zero">Nhấn vào đây để xem số liệu thống kê toàn cầu và những người đóng góp hàng đầu</string>
+ <string name="revanced_sb_stats_saved_sum">Tương đương với <b>%s</b> trong cuộc đời họ.<br>Nhấn vào đây để xem bảng xếp hạng</string>
+ <string name="revanced_sb_stats_self_saved">Bạn đã bỏ qua <b>%s</b> phân đoạn</string>
+ <string name="revanced_sb_stats_self_saved_sum">Tổng thời gian là <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">Có chắc muốn đặt lại bộ đến phân đoạn đã bỏ qua?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s giờ %2$s phút</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s phút %2$s giây</string>
+ <string name="revanced_sb_stats_saved_second_format">%s giây</string>
+ <string name="revanced_sb_color_dot_label">Màu:</string>
+ <string name="revanced_sb_color_changed">Màu sắc đã được thay đổi</string>
+ <string name="revanced_sb_color_reset">Đặt lại màu sắc</string>
+ <string name="revanced_sb_color_invalid">Mã màu không hợp lệ</string>
+ <string name="revanced_sb_reset_color">Đặt lại màu</string>
+ <string name="revanced_sb_reset">Đặt lại</string>
+ <string name="revanced_sb_about">Giới thiệu</string>
+ <string name="revanced_sb_about_api_sum">Dữ liệu được cung cấp bởi API SponsorBlock. Nhấn vào đây để tìm hiểu thêm và xem các bản tải cho các nền tảng khác</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">Giả mạo phiên bản ứng dụng</string>
+ <string name="revanced_spoof_app_version_summary_on">Phiên bản đã được giả mạo</string>
+ <string name="revanced_spoof_app_version_summary_off">Phiên bản không được giả mạo</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">Phiên bản ứng dụng sẽ được giả mạo thành một phiên bản cũ hơn của Youtube.\n\nĐiều này sẽ thay đổi diện mạo và tính năng của ứng dụng, nhưng các tác dụng phụ có thể xảy ra.\n\nNếu sau này tắt đi, đề nghị xóa dữ liệu ứng dụng để ngăn chặn một số lỗi giao diện.</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">Phiên bản giả mạo mục tiêu</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - Khôi phục RYD trong Shorts chế độ ẩn danh</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - Khôi phục trình đơn tốc độ & chất lượng cho video rộng</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - Khôi phục thẻ thư viện</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - Khôi phục kệ danh sách phát cũ</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - Khôi phục bố cục giao diện cũ</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">Đặt trang bắt đầu</string>
+ <string name="revanced_start_page_entry_0">Mặc định</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">Trang chủ</string>
+ <string name="revanced_start_page_entry_2">Tìm kiếm</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">Đăng ký</string>
+ <string name="revanced_start_page_entry_4">Khám phá</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">Thẻ Bạn</string>
+ <string name="revanced_start_page_entry_7">Video đã thích</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">Lịch sử</string>
+ <string name="revanced_start_page_entry_9">Xu hướng</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">Tắt tiếp tục trình phát Shorts</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Trinh phát Shorts sẽ không tiếp tục khi ứng dụng khởi chạy</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Trinh phát Shorts sẽ tiếp tục khi ứng dụng khởi chạy</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">Bật bố cục máy tính bảng</string>
+ <string name="revanced_tablet_layout_summary_on">Bố cục máy tính bảng được bật</string>
+ <string name="revanced_tablet_layout_summary_off">Bố cục máy tính bảng được tắt</string>
+ <string name="revanced_tablet_layout_user_dialog_message">Bài đăng của cộng đồng không hiển thị trên bố cục máy tính bảng</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">Trình phát thu nhỏ</string>
+ <string name="revanced_miniplayer_screen_summary">Thay đổi kiểu trình phát thu nhỏ trong ứng dụng</string>
+ <string name="revanced_miniplayer_type_title">Loại trình phát thu nhỏ</string>
+ <string name="revanced_miniplayer_type_entry_1">Nguyên bản</string>
+ <string name="revanced_miniplayer_type_entry_2">Điện thoại</string>
+ <string name="revanced_miniplayer_type_entry_3">Máy tính bảng</string>
+ <string name="revanced_miniplayer_type_entry_4">Hiện đại 1</string>
+ <string name="revanced_miniplayer_type_entry_5">Hiện đại 2</string>
+ <string name="revanced_miniplayer_type_entry_6">Hiện đại 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">Ẩn các nút mở rộng và đóng</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">Các nút được ẩn\n(vuốt trình phát thu nhỏ để mở rộng hoặc đóng)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">Các nút mở rộng và đóng được hiện</string>
+ <string name="revanced_miniplayer_hide_subtext_title">Ẩn văn bản phụ</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">Văn bản phụ được ẩn</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">Văn bản phụ được hiện</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">Ẩn các nút bỏ quả đến tiếp và trước đó </string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">Các nút bỏ quả đến tiếp và trước đó được ẩn</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">Các nút bỏ quả đến tiếp và trước đó được hiện</string>
+ <string name="revanced_miniplayer_opacity_title">Độ mờ lớp phủ</string>
+ <string name="revanced_miniplayer_opacity_summary">Giá trị độ mờ của lớp phủ trình phát trong khoảng từ 0 đến 100, trong đó 0 là trong suốt</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">Độ phủ mờ trình phát thu nhỏ phải nằm giữa 0-100</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">Bật màn hình tải màu dốc</string>
+ <string name="revanced_gradient_loading_screen_summary_on">Màn hình tải sẽ có một nền màu dốc</string>
+ <string name="revanced_gradient_loading_screen_summary_off">Màn hình tải sẽ có một nền màu đặc</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">Bật màu tùy chỉnh thanh tiến trình</string>
+ <string name="revanced_seekbar_custom_color_summary_on">Màu tùy chỉnh thanh tiến trình được hiện </string>
+ <string name="revanced_seekbar_custom_color_summary_off">Màu gốc thanh tiến trình được hiện </string>
+ <string name="revanced_seekbar_custom_color_value_title">Màu tùy chỉnh thanh tiến trình</string>
+ <string name="revanced_seekbar_custom_color_value_summary">Màu của thanh tiến trình</string>
+ <string name="revanced_seekbar_custom_color_invalid">Màu thanh tiến trình không hợp lệ.</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">Thẻ trang chủ</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">Thẻ đăng ký</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">Thẻ Bạn</string>
+ <string name="revanced_alt_thumbnail_player_title">Danh sách trình phát, đề xuất</string>
+ <string name="revanced_alt_thumbnail_search_title">Kết quả tìm kiếm</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Hình thu nhỏ gốc</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & Hình thu nhỏ gốc</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & Chụp tĩnh</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">Chụp tĩnh</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow cung cấp hình thu nhỏ nguồn đóng góp từ cộng đồng cho video của Youtube. Những hình thu nhỏ này thường thích hợp hơn những hình được cung cấp bởi Youtube\n\nNếu bật, URL video sẽ được gửi đến API máy chủ và không dữ liệu nào khác được gửi. Nếu video không có hình thu nhỏ DeArrow, thì hình gốc hoặc chụp tĩnh sẽ được hiện\n\nNhấn vào đây để tìm hiểu thêm về DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">Hiện một thông báo nổi nếu API không khả dụng</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">Thông báo nổi được hiện nếu DeArrow không khả dụng</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">Thông báo nổi không được hiện nếu DeArrow không khả dụng</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">Điểm cuối API DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">URL của điểm cuối bộ đệm hình thu nhỏ DeArrow</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">Chụp tĩnh video</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">Chụp tĩnh là lấy từ đầu/giữa/cuối của mỗi video. Những hình ảnh này được dựng sẵn trong Youtube và không dùng API bên ngoài</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">Dùng hình chụp tĩnh nhanh</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">Dùng hình chụp tĩnh chất lượng trung bình. Hình thu nhỏ nạp nhanh hơn, nhưng video phát trực tiếp, chưa phát hành hoặc video cũ có thể hiện hình thu nhỏ trống</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">Dùng hình chụp tĩnh chất lượng cao</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">Thời điểm video để chụp hình tĩnh từ</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">Đầu video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">Giữa video</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">Cuối video</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow tạm thời không khả dụng (mã trạng thái: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow tạm thời không khả dụng</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">Hiện công bố của ReVanced</string>
+ <string name="revanced_announcements_summary_on">Công bố được hiện khi khởi chạy</string>
+ <string name="revanced_announcements_summary_off">Công bố không được hiện khi khởi chạy</string>
+ <string name="revanced_announcements_enabled_summary">Hiện công bố khi khởi chạy</string>
+ <string name="revanced_announcements_connection_failed">Kết nối đến nguồn cấp công bố thất bại</string>
+ <string name="revanced_announcements_dialog_dismiss">Từ bỏ</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">Bật tự phát lại</string>
+ <string name="revanced_auto_repeat_summary_on">Tự phát lại được bật</string>
+ <string name="revanced_auto_repeat_summary_off">Tự phát lại được tắt</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">Giả mạo kích thước thiết bị</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">Kích thước thiết bị đã được giả mạo\n\nChất lượng video cao hơn có thể được mở khóa nhưng bạn có thể trải nghiệm video phát lắp, hao pin, và các tác dụng phụ chưa biết</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">Kích thước thiết bị không được giả mạo\n\nBật tính năng này có thể mở khóa chất lượng video cao hơn</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">Bật tính năng này có thể làm video phát lắp, hao pin, và các tác dụng phụ chưa biết.</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">Cài đặt GmsCore</string>
+ <string name="microg_settings_summary">Các cài dặt cho GmsCore</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">Vượt chuyển hướng URL</string>
+ <string name="revanced_bypass_url_redirects_summary_on">Chuyển hướng URL được vượt</string>
+ <string name="revanced_bypass_url_redirects_summary_off">Chuyển hướng URL không được vượt</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">Mở liên kết trong trình duyệt</string>
+ <string name="revanced_external_browser_summary_on">Đang mở liên kết bên ngoài</string>
+ <string name="revanced_external_browser_summary_off">Đang mở liên kết trong ứng dụng</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">Phát trong nền</string>
+ <string name="revanced_background_playback_summary">Cài đặt này có thể tìm thấy trong Cài đặt -> Phát nền</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">Loại bỏ tham số truy vấn theo dõi</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">Tham số truy vấn theo dõi được loại bỏ khỏi liên kết</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">Tham số truy vấn theo dõi không được loại bỏ khỏi liên kết</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">Tắt phản hồi xúc giác khi thu phóng</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">Phản hồi xúc giác được tắt</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">Phản hồi xúc giác được bật</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">Chất lượng tự động</string>
+ <string name="revanced_remember_video_quality_last_selected_title">Nhớ các thay đổi chất lượng video</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">Thay đổi chất lượng áp dụng cho tất cả video</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">Thay đổi chất lượng chỉ áp dụng cho video hiện tại</string>
+ <string name="revanced_video_quality_default_wifi_title">Chất lượng mặc định trên mạng Wi-Fi</string>
+ <string name="revanced_video_quality_default_mobile_title">Chất lượng mặc định trên mạng di động</string>
+ <string name="revanced_remember_video_quality_mobile">di động</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">Đã thay đổi chất lượng %1$s mặc định: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">Hiện nút hộp thoại tốc độ phát</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">Nút được hiện</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">Nút không được hiện</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">Tốc độ phát tùy chỉnh</string>
+ <string name="revanced_custom_playback_speeds_summary">Thêm hoặc thay đổi tốc độ phát hiện có</string>
+ <string name="revanced_custom_playback_speeds_invalid">Tốc độ phát tuỳ chỉnh phải nhỏ hơn %s. Dùng giá trị mặc định.</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">Tốc độ phát không hợp lệ. Dùng giá trị mặc định.</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">Nhớ các thay đổi tốc độ phát</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">Thay đổi tốc độ phát áp dụng cho tất cả video</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">Thay đổi tốc độ phát chỉ áp dụng cho video hiện tại</string>
+ <string name="revanced_playback_speed_default_title">Tốc độ phát mặc định</string>
+ <string name="revanced_remember_playback_speed_toast">Đã thay đổi tốc độ phát mặc định thành: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">Khôi phục trình đơn chất lượng video kiểu cũ</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">Trình đơn chất lượng video kiểu cũ được hiện</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">Trình đơn chất lượng video kiểu cũ không được hiện</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">Bật vuốt để tua</string>
+ <string name="revanced_slide_to_seek_summary_on">Vuốt để tua được bật</string>
+ <string name="revanced_slide_to_seek_summary_off">Vuốt để tua không được bật</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">Giả mạo máy khách</string>
+ <string name="revanced_spoof_client_screen_summary">Giả mạo máy khách để ngăn ngừa sự cố khi phát nền</string>
+ <string name="revanced_spoof_client_title">Giả mạo máy khách</string>
+ <string name="revanced_spoof_client_summary_on">Máy khách đã được giả mạo</string>
+ <string name="revanced_spoof_client_summary_off">Máy khách chưa được giả mạo\n\nPhát nền video có thể không hoạt động</string>
+ <string name="revanced_spoof_client_user_dialog_message">Việc tắt cài đặt này có thể gây ra sự cố phát nền video.</string>
+ <string name="revanced_spoof_client_use_ios_title">Giả mạo máy khách cho iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">Hiện tại máy khách đang giả mạo thành iOS\n\nTác dụng phụ bao gồm:\n• Không có video HDR\n• Lịch sử xem có thể không hoạt động\n• Chất lượng cao hơn cho video có thể thiếu\n• Phát trực tiếp không thể phât dạng chỉ âm thanh\n• Phát trực tiếp không khả dụng trên Android 8.0</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">Hiện tại máy khách đang giả mạo thành Android VR\n\nTác dụng phụ bao gồm:\n• Không có video HDR\n• Video dành cho trẻ em không phát\n• Video đã tạm dừng có thể ngẫu nhiên phát tiếp\n• Hình thu nhỏ thanh tiến trình Shorts có chất lượng thấp\n• Nút hành động tải xuống luôn ẩn\n• Các thẻ màn hình kết thúc luôn ẩn</string>
+ <string name="revanced_spoof_client_storyboard_timeout">Hình thu nhỏ giả mạo máy khách không khả dụng (API hết hạn)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">Hình thu nhỏ giả mạo máy khách tạm thời không khả dụng: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">Chặn quảng cáo âm thanh</string>
+ <string name="revanced_block_audio_ads_summary_on">Quảng cáo âm thanh được chặn</string>
+ <string name="revanced_block_audio_ads_summary_off">Quảng cáo âm thanh không được chặn</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s không có sẵn. QC có thể sẽ hiện. Hãy thử chuyển sang dịch vụ chặn QC khác trong cài đặt.</string>
+ <string name="revanced_embedded_ads_service_failed">Máy chủ %s trả về một lỗi. QC có thể sẽ hiện. Hãy thử chuyển sang dịch vụ chặn QC khác trong cài đặt.</string>
+ <string name="revanced_block_embedded_ads_title">Chặn quảng cáo video nhúng</string>
+ <string name="revanced_block_embedded_ads_entry_1">Đã tắt</string>
+ <string name="revanced_block_embedded_ads_entry_2">Ủy thác Luminous</string>
+ <string name="revanced_block_embedded_ads_entry_3">Ủy thác PurpleAdBlock</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">Chặn quảng cáo video</string>
+ <string name="revanced_block_video_ads_summary_on">Quảng cáo video được chặn</string>
+ <string name="revanced_block_video_ads_summary_off">Quảng cáo video không được chặn</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">đã xóa tin nhắn</string>
+ <string name="revanced_show_deleted_messages_title">Hiện tin nhắn đã xóa</string>
+ <string name="revanced_show_deleted_messages_entry_1">Không hiện tin nhắn đã xóa</string>
+ <string name="revanced_show_deleted_messages_entry_2">Che tin nhắn đã xóa</string>
+ <string name="revanced_show_deleted_messages_entry_3">Hiện tin nhắn đã xóa dưới dạnh gạch ngang</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">Tự nhận Điểm Kênh</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">Điểm Kênh được nhận tự động</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">Điểm Kênh không được nhận tự động</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">Bật chế độ gỡ lỗi Twitch</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Chế độ gỡ lỗi Twitch được bật (không khuyến nghị)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Chế độ gỡ lỗi Twitch được tắt</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">Cài đặt ReVanced</string>
+ <string name="revanced_ads_screen_title">Quảng cáo</string>
+ <string name="revanced_ads_screen_summary">Cài đặt chặn quảng cáo</string>
+ <string name="revanced_chat_screen_title">Trò chuyện</string>
+ <string name="revanced_chat_screen_summary">Cài đặt trò chuyện</string>
+ <string name="revanced_misc_screen_title">Linh tinh</string>
+ <string name="revanced_misc_screen_summary">Cài đặt linh tinh</string>
+ <string name="revanced_general_category_title">Cài đặt chung</string>
+ <string name="revanced_other_category_title">Cài đặt khác</string>
+ <string name="revanced_client_ads_category_title">Quảng cáo phía máy khách</string>
+ <string name="revanced_surestream_ads_category_title">Quảng cáo luồng đảm bảo phía máy khách</string>
+ <string name="revanced_twitch_debug_title">Nhật ký gỡ lỗi</string>
+ <string name="revanced_twitch_debug_summary_on">Nhật ký gỡ lỗi được bật</string>
+ <string name="revanced_twitch_debug_summary_off">Nhật ký gỡ lỗi được tắt</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-zh-rCN/strings.xml b/src/main/resources/addresources/values-zh-rCN/strings.xml
new file mode 100644
index 0000000000..754bb0086d
--- /dev/null
+++ b/src/main/resources/addresources/values-zh-rCN/strings.xml
@@ -0,0 +1,1176 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">继续?</string>
+ <string name="revanced_settings_reset">重置</string>
+ <string name="revanced_settings_restart_title">刷新并重启</string>
+ <string name="revanced_settings_restart">重启</string>
+ <string name="revanced_settings_import">导入</string>
+ <string name="revanced_settings_import_copy">复制</string>
+ <string name="revanced_settings_import_reset">ReVanced 设置已重置为默认</string>
+ <string name="revanced_settings_import_success">已导入 %d 条设置</string>
+ <string name="revanced_settings_import_failure_parse">导入失败:%s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore 未安装。请安装。</string>
+ <string name="gms_core_dialog_title">需要采取操作</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore 没有在后台运行的权限。\n\n遵照适用于您手机的“Don\'t kill my app”指南,并将指南应用于您的 MicroG 安装。\n\n这是 APP 工作的必要条件。</string>
+ <string name="gms_core_dialog_open_website_text">打开网站</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">必须禁用 MicroG GmsCore 电池优化以防止出现问题。\n\n点击继续按钮并禁用电池优化。</string>
+ <string name="gms_core_dialog_continue_text">继续</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">您正在使用 ReVanced 补丁版本 <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">说明</string>
+ <string name="revanced_settings_about_links_dev_body">此版本是预发布版本,您可能会遇到意外问题</string>
+ <string name="revanced_settings_about_links_header">官方链接</string>
+ <string name="revanced_pref_import_export_title">导入 / 导出</string>
+ <string name="revanced_pref_import_export_summary">导入 / 导出 ReVanced 设置</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">关于</string>
+ <string name="revanced_settings_screen_01_ads_title">广告</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">可选缩略图</string>
+ <string name="revanced_settings_screen_03_feed_title">推荐</string>
+ <string name="revanced_settings_screen_04_player_title">播放器</string>
+ <string name="revanced_settings_screen_05_general_title">通用布局</string>
+ <string name="revanced_settings_screen_07_seekbar_title">进度条</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">滑动控制</string>
+ <string name="revanced_settings_screen_11_misc_title">杂项</string>
+ <string name="revanced_settings_screen_12_video_title">视频</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">调试</string>
+ <string name="revanced_debug_screen_summary">启用或禁用调试选项</string>
+ <string name="revanced_debug_title">调试日志</string>
+ <string name="revanced_debug_summary_on">调试日志已启用</string>
+ <string name="revanced_debug_summary_off">调试日志已禁用</string>
+ <string name="revanced_debug_protobuffer_title">日志协议缓存</string>
+ <string name="revanced_debug_protobuffer_summary_on">调试日志包括 Proto 缓存</string>
+ <string name="revanced_debug_protobuffer_summary_off">调试日志不包括 Proto 缓存</string>
+ <string name="revanced_debug_stacktrace_title">记录堆栈跟踪</string>
+ <string name="revanced_debug_stacktrace_summary_on">调试日志包括堆栈跟踪</string>
+ <string name="revanced_debug_stacktrace_summary_off">调试日志不包括堆栈跟踪</string>
+ <string name="revanced_debug_toast_on_error_title">ReVanced 出错时显示 Toast</string>
+ <string name="revanced_debug_toast_on_error_summary_on">出错时显示 Toast</string>
+ <string name="revanced_debug_toast_on_error_summary_off">出错时不显示 Toast</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">关闭错误提示将隐藏所有 ReVanced 错误通知。\n\n您将不会收到任何意外事件的通知。</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">禁用点赞 / 订阅按钮动效</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">点赞和订阅按钮点击时无动效</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">点赞和订阅按钮点击时有动效</string>
+ <string name="revanced_hide_gray_separator_title">隐藏灰色分隔符</string>
+ <string name="revanced_hide_gray_separator_summary_on">灰色分隔符已隐藏</string>
+ <string name="revanced_hide_gray_separator_summary_off">灰色分隔符已显示</string>
+ <string name="revanced_hide_channel_watermark_title">隐藏频道水印</string>
+ <string name="revanced_hide_channel_watermark_summary_on">水印已隐藏</string>
+ <string name="revanced_hide_channel_watermark_summary_off">水印将显示</string>
+ <string name="revanced_hide_horizontal_shelves_title">隐藏水平边框</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">隐藏的功能架包括:\n• 突发新闻\n• 继续观看\n• 探索更多频道\n• 购物\n• 再看一遍</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">已显示功能架</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">隐藏“加入”按钮</string>
+ <string name="revanced_hide_join_membership_button_summary_on">按钮已隐藏</string>
+ <string name="revanced_hide_join_membership_button_summary_off">按钮已显示</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">在频道页面隐藏“为你推荐”的功能架</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">功能架已隐藏</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">功能架已显示</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">隐藏“通知我”按钮</string>
+ <string name="revanced_hide_notify_me_button_summary_on">按钮已隐藏</string>
+ <string name="revanced_hide_notify_me_button_summary_off">按钮已显示</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">隐藏“大家正在看”推荐</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">推荐已隐藏</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">推荐已显示</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">隐藏“显示更多”按钮</string>
+ <string name="revanced_hide_show_more_button_summary_on">按钮已隐藏</string>
+ <string name="revanced_hide_show_more_button_summary_off">按钮已显示</string>
+ <string name="revanced_hide_timed_reactions_title">隐藏定时反应</string>
+ <string name="revanced_hide_timed_reactions_summary_on">定时反应已隐藏</string>
+ <string name="revanced_hide_timed_reactions_summary_off">定时反应已显示</string>
+ <string name="revanced_hide_search_result_shelf_header_title">隐藏搜索结果页头</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">页头已隐藏</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">页头已显示</string>
+ <string name="revanced_hide_channel_guidelines_title">隐藏频道指南</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">频道指南已隐藏</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">频道指南已显示</string>
+ <string name="revanced_hide_expandable_chip_title">隐藏视频下方的扩展面板</string>
+ <string name="revanced_hide_expandable_chip_summary_on">扩展面板已隐藏</string>
+ <string name="revanced_hide_expandable_chip_summary_off">扩展面板已显示</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">隐藏视频质量菜单页脚</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">视频质量菜单页脚已隐藏</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">视频质量菜单页脚已显示</string>
+ <string name="revanced_hide_community_posts_title">隐藏社区帖子</string>
+ <string name="revanced_hide_community_posts_summary_on">社区帖子已隐藏</string>
+ <string name="revanced_hide_community_posts_summary_off">社区帖子已显示</string>
+ <string name="revanced_hide_compact_banner_title">隐藏紧凑横幅</string>
+ <string name="revanced_hide_compact_banner_summary_on">紧凑横幅已隐藏</string>
+ <string name="revanced_hide_compact_banner_summary_off">紧凑横幅已显示</string>
+ <string name="revanced_hide_movies_section_title">隐藏影片章节</string>
+ <string name="revanced_hide_movies_section_summary_on">影片章节已隐藏</string>
+ <string name="revanced_hide_movies_section_summary_off">影片章节已显示</string>
+ <string name="revanced_hide_feed_survey_title">隐藏动态调查</string>
+ <string name="revanced_hide_feed_survey_summary_on">Feed 调查已隐藏</string>
+ <string name="revanced_hide_feed_survey_summary_off">动态调查已显示</string>
+ <string name="revanced_hide_community_guidelines_title">隐藏社区指南</string>
+ <string name="revanced_hide_community_guidelines_summary_on">社区指南已隐藏</string>
+ <string name="revanced_hide_community_guidelines_summary_off">社区指南已显示</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">隐藏订阅社区指南</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">订阅社区指南已隐藏</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">订阅社区指南已显示</string>
+ <string name="revanced_hide_channel_member_shelf_title">隐藏频道会员列表</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">频道会员列表已隐藏</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">频道会员列表已显示</string>
+ <string name="revanced_hide_emergency_box_title">隐藏紧急框</string>
+ <string name="revanced_hide_emergency_box_summary_on">紧急框已隐藏</string>
+ <string name="revanced_hide_emergency_box_summary_off">紧急框已显示</string>
+ <string name="revanced_hide_info_panels_title">隐藏信息面板</string>
+ <string name="revanced_hide_info_panels_summary_on">信息面板已隐藏</string>
+ <string name="revanced_hide_info_panels_summary_off">信息面板已显示</string>
+ <string name="revanced_hide_medical_panels_title">隐藏医疗面板</string>
+ <string name="revanced_hide_medical_panels_summary_on">医疗面板已隐藏</string>
+ <string name="revanced_hide_medical_panels_summary_off">医疗面板已显示</string>
+ <string name="revanced_hide_channel_bar_title">隐藏频道栏</string>
+ <string name="revanced_hide_channel_bar_summary_on">频道栏已隐藏</string>
+ <string name="revanced_hide_channel_bar_summary_off">频道栏已隐藏</string>
+ <string name="revanced_hide_playables_title">隐藏播放列表</string>
+ <string name="revanced_hide_playables_summary_on">播放器已隐藏</string>
+ <string name="revanced_hide_playables_summary_off">播放器已显示</string>
+ <string name="revanced_hide_quick_actions_title">全屏时隐藏快速操作</string>
+ <string name="revanced_hide_quick_actions_summary_on">快速操作已隐藏</string>
+ <string name="revanced_hide_quick_actions_summary_off">快速操作已显示</string>
+ <string name="revanced_hide_related_videos_title">在快速操作中隐藏相关视频</string>
+ <string name="revanced_hide_related_videos_summary_on">相关视频已隐藏</string>
+ <string name="revanced_hide_related_videos_summary_off">显示相关视频</string>
+ <string name="revanced_hide_image_shelf_title">在搜索结果中隐藏图像存储</string>
+ <string name="revanced_hide_image_shelf_summary_on">图像架已隐藏</string>
+ <string name="revanced_hide_image_shelf_summary_off">图片上架已显示</string>
+ <string name="revanced_hide_latest_posts_ads_title">隐藏最新帖子</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">最新帖子已隐藏</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">显示最新帖子</string>
+ <string name="revanced_hide_mix_playlists_title">隐藏混合播放列表</string>
+ <string name="revanced_hide_mix_playlists_summary_on">混合播放列表已隐藏</string>
+ <string name="revanced_hide_mix_playlists_summary_off">混合播放列表显示</string>
+ <string name="revanced_hide_artist_cards_title">隐藏艺术家卡片</string>
+ <string name="revanced_hide_artist_cards_summary_on">艺术家卡是隐藏的</string>
+ <string name="revanced_hide_artist_cards_summary_off">显示艺术家卡片</string>
+ <string name="revanced_hide_chips_shelf_title">隐藏芯片收藏</string>
+ <string name="revanced_hide_chips_shelf_summary_on">Chips 书架已隐藏</string>
+ <string name="revanced_hide_chips_shelf_summary_off">Chips 书架已显示</string>
+ <string name="revanced_hide_attributes_section_title">隐藏属性部分</string>
+ <string name="revanced_hide_attributes_section_summary_on">“精选场地”、游戏和音乐部分被隐藏</string>
+ <string name="revanced_hide_attributes_section_summary_off">显示“精选场地”、游戏和音乐部分</string>
+ <string name="revanced_hide_chapters_section_title">隐藏章节部分</string>
+ <string name="revanced_hide_chapters_section_summary_on">章节已隐藏</string>
+ <string name="revanced_hide_chapters_section_summary_off">章节已显示</string>
+ <string name="revanced_hide_podcast_section_title">隐藏“探索播客”部分</string>
+ <string name="revanced_hide_podcast_section_summary_on">“探索播客”部分已隐藏</string>
+ <string name="revanced_hide_podcast_section_summary_off">显示“探索播客”部分</string>
+ <string name="revanced_hide_info_cards_section_title">隐藏信息卡片部分</string>
+ <string name="revanced_hide_info_cards_section_summary_on">信息卡片段已隐藏</string>
+ <string name="revanced_hide_info_cards_section_summary_off">信息卡片段已显示</string>
+ <string name="revanced_hide_transcript_section_title">隐藏字幕部分</string>
+ <string name="revanced_hide_transcript_section_summary_on">字幕部分已隐藏</string>
+ <string name="revanced_hide_transcript_section_summary_off">显示字幕部分</string>
+ <string name="revanced_hide_description_components_screen_title">视频描述</string>
+ <string name="revanced_hide_description_components_screen_summary">隐藏或显示视频描述组件</string>
+ <string name="revanced_custom_filter_screen_title">自定义过滤器</string>
+ <string name="revanced_custom_filter_screen_summary">使用自定义过滤器隐藏组件</string>
+ <string name="revanced_custom_filter_title">启用自定义过滤器</string>
+ <string name="revanced_custom_filter_summary_on">自定义过滤器已启用</string>
+ <string name="revanced_custom_filter_summary_off">自定义过滤器已禁用</string>
+ <string name="revanced_custom_filter_strings_title">自定义过滤器</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">以新行分隔的组件路径生成器字符串列表</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">无效的自定义过滤器: %s</string>
+ <string name="revanced_hide_keyword_content_screen_title">隐藏关键字内容</string>
+ <string name="revanced_hide_keyword_content_screen_summary">使用关键字过滤器隐藏搜索和订阅视频</string>
+ <string name="revanced_hide_keyword_content_home_title">用关键字隐藏主页视频</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">主页选项卡中的视频被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">主页选项卡中的视频没有被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">按关键字隐藏订阅视频</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">订阅选项卡中的视频被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">订阅选项卡中的视频没有被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_search_title">用关键字隐藏搜索结果</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">搜索结果被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">搜索结果没有被关键字过滤</string>
+ <string name="revanced_hide_keyword_content_phrases_title">隐藏关键字</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">要隐藏的关键词和短语,以换行符分隔\n\n字母区分大小写(例如:iPhone、抖音、英雄联盟)</string>
+ <string name="revanced_hide_keyword_content_about_title">关于关键字过滤</string>
+ <string name="revanced_hide_keyword_content_about_summary">主页/订阅/搜索结果被过滤以隐藏匹配关键字短语的内容\n\n限制\n• 一些短语可能不被隐藏\n• 某些界面组件可能不被隐藏\n• 搜索关键字可能不显示结果</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">无效关键字。不能使用: \'%s\' 作为过滤器</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">无效的关键字。\'%1$s\' 小于 %2$d 个字符</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">隐藏一般广告</string>
+ <string name="revanced_hide_general_ads_summary_on">一般广告已隐藏</string>
+ <string name="revanced_hide_general_ads_summary_off">一般广告已显示</string>
+ <string name="revanced_hide_fullscreen_ads_title">隐藏全屏广告</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">全屏广告是隐藏的\n\n此功能仅适用于旧设备</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">全屏广告已显示</string>
+ <string name="revanced_hide_buttoned_ads_title">隐藏信息流视频广告</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">信息流视频广告已隐藏</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">信息流视频广告已显示</string>
+ <string name="revanced_hide_paid_promotion_label_title">隐藏付费促销标签</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">已付费推广标签已隐藏</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">已付费推广标签已显示</string>
+ <string name="revanced_hide_self_sponsor_ads_title">隐藏自我推广卡片</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">自我推广卡片已隐藏</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">自我推广卡片已显示</string>
+ <string name="revanced_hide_products_banner_title">隐藏产品横幅</string>
+ <string name="revanced_hide_products_banner_summary_on">横幅已隐藏</string>
+ <string name="revanced_hide_products_banner_summary_off">横幅已显示</string>
+ <string name="revanced_hide_shopping_links_title">在视频描述中隐藏购物链接</string>
+ <string name="revanced_hide_shopping_links_summary_on">购物链接已隐藏</string>
+ <string name="revanced_hide_shopping_links_summary_off">购物链接已显示</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">隐藏频道页面上的“访问商店”按钮</string>
+ <string name="revanced_hide_visit_store_button_summary_on">按钮已隐藏</string>
+ <string name="revanced_hide_visit_store_button_summary_off">按钮已显示</string>
+ <string name="revanced_hide_web_search_results_title">隐藏网页搜索结果</string>
+ <string name="revanced_hide_web_search_results_summary_on">网络搜索结果被隐藏</string>
+ <string name="revanced_hide_web_search_results_summary_off">显示网页搜索结果</string>
+ <string name="revanced_hide_merchandise_banners_title">隐藏商品广告</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">商品横幅已隐藏</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">商品横幅显示</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">隐藏全屏广告只适用于旧设备</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">隐藏 YouTube 高级促销活动</string>
+ <string name="revanced_hide_get_premium_summary_on">视频播放器下的YouTube 高级促销已隐藏</string>
+ <string name="revanced_hide_get_premium_summary_off">在视频播放器下显示YouTube高级促销活动</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">隐藏视频广告</string>
+ <string name="revanced_hide_video_ads_summary_on">视频广告已隐藏</string>
+ <string name="revanced_hide_video_ads_summary_off">显示视频广告</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">URL 已复制到剪贴板</string>
+ <string name="revanced_share_copy_url_timestamp_success">复制时间戳的 URL</string>
+ <string name="revanced_copy_video_url_title">显示复制视频 URL 按钮</string>
+ <string name="revanced_copy_video_url_summary_on">显示按钮。点击复制视频 URL。点击并按住以复制带有时间戳的视频 URL</string>
+ <string name="revanced_copy_video_url_summary_off">未显示按钮</string>
+ <string name="revanced_copy_video_url_timestamp_title">显示复制时间戳URL 按钮</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">显示按钮。点击复制带有时间戳的视频URL。点击并按住以在没有时间戳的情况下复制视频</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">未显示按钮</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">移除查看器的酌处权对话框</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">对话框将被删除</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">将显示对话框</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">这并不是绕过年龄限制。它只是自动接受。</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">外部下载</string>
+ <string name="revanced_external_downloader_screen_summary">使用外部下载器的设置</string>
+ <string name="revanced_external_downloader_title">显示外部下载按钮</string>
+ <string name="revanced_external_downloader_summary_on">播放器中显示的下载按钮</string>
+ <string name="revanced_external_downloader_summary_off">下载按钮未显示在播放器中</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">覆盖下载操作按钮</string>
+ <string name="revanced_external_downloader_action_button_summary_on">下载按钮打开您的外部下载程序</string>
+ <string name="revanced_external_downloader_action_button_summary_off">下载按钮打开本地应用内下载器</string>
+ <string name="revanced_external_downloader_name_title">下载包名称</string>
+ <string name="revanced_external_downloader_name_summary">您已安装外部下载程序的包名,如NewPipe 或密封。</string>
+ <string name="revanced_external_downloader_not_installed_warning">%s 未安装。请安装它。</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">禁用精确滑动定位</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">手势已禁用</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">手势已启用</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">启用搜索栏点击</string>
+ <string name="revanced_seekbar_tapping_summary_on">已启用 Seekbar 点击</string>
+ <string name="revanced_seekbar_tapping_summary_off">已禁用 Seekbar 点击</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">启用亮度手势</string>
+ <string name="revanced_swipe_brightness_summary_on">亮度滑动已启用</string>
+ <string name="revanced_swipe_brightness_summary_off">亮度滑动已禁用</string>
+ <string name="revanced_swipe_volume_title">启用音量手势</string>
+ <string name="revanced_swipe_volume_summary_on">音量滑动已启用</string>
+ <string name="revanced_swipe_volume_summary_off">音量滑动已禁用</string>
+ <string name="revanced_swipe_press_to_engage_title">启用按键滑动手势</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">按键滑动已启用</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">按键滑动已禁用</string>
+ <string name="revanced_swipe_haptic_feedback_title">启用触觉反馈</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">触摸反馈已启用</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">触动反馈已禁用</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">保存并恢复亮度</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">退出或全屏时保存并恢复亮度</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">退出或进入全屏时不保存和恢复亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">启用自动亮度手势</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">向下滑动到亮度手势的最低值使得自动亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">向下滑动到最低值不会启用自动亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">自动操作</string>
+ <string name="revanced_swipe_overlay_timeout_title">滑动覆盖超时</string>
+ <string name="revanced_swipe_overlay_timeout_summary">叠加层可见的毫秒数量</string>
+ <string name="revanced_swipe_text_overlay_size_title">滑动覆盖文本大小</string>
+ <string name="revanced_swipe_text_overlay_size_summary">滑动叠加层文本大小</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">滑动背景可见性</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">滑动覆盖背景的可见性</string>
+ <string name="revanced_swipe_threshold_title">滑动星等阈值</string>
+ <string name="revanced_swipe_threshold_summary">滑动的阈值数量</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">禁用自动标题</string>
+ <string name="revanced_auto_captions_summary_on">自动标题已禁用</string>
+ <string name="revanced_auto_captions_summary_off">自动标题已启用</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">动作按钮</string>
+ <string name="revanced_hide_buttons_screen_summary">隐藏或显示视频下的按钮</string>
+ <string name="revanced_hide_like_dislike_button_title">隐藏喜欢和不喜欢的</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">不喜欢的按钮被隐藏</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">显示喜欢和不喜欢按钮</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">隐藏分享</string>
+ <string name="revanced_hide_share_button_summary_on">分享按钮已隐藏</string>
+ <string name="revanced_hide_share_button_summary_off">显示分享按钮</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">隐藏报表</string>
+ <string name="revanced_hide_report_button_summary_on">举报按钮隐藏</string>
+ <string name="revanced_hide_report_button_summary_off">显示报表按钮</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">隐藏调试器</string>
+ <string name="revanced_hide_remix_button_summary_on">重置按钮已隐藏</string>
+ <string name="revanced_hide_remix_button_summary_off">显示重置按钮</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">隐藏下载</string>
+ <string name="revanced_hide_download_button_summary_on">下载按钮已隐藏</string>
+ <string name="revanced_hide_download_button_summary_off">显示下载按钮</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">隐藏鸣谢</string>
+ <string name="revanced_hide_thanks_button_summary_on">感谢按钮已隐藏</string>
+ <string name="revanced_hide_thanks_button_summary_off">已显示感谢按钮</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">Hide Clip</string>
+ <string name="revanced_hide_clip_button_summary_on">片段按钮隐藏</string>
+ <string name="revanced_hide_clip_button_summary_off">片段按钮显示</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">隐藏保存到播放列表</string>
+ <string name="revanced_hide_playlist_button_summary_on">保存到播放列表按钮隐藏</string>
+ <string name="revanced_hide_playlist_button_summary_off">显示播放列表按钮</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">隐藏自动播放按钮</string>
+ <string name="revanced_hide_autoplay_button_summary_on">自动播放按钮已隐藏</string>
+ <string name="revanced_hide_autoplay_button_summary_off">显示自动播放按钮</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">隐藏标题按钮</string>
+ <string name="revanced_hide_captions_button_summary_on">字幕按钮已隐藏</string>
+ <string name="revanced_hide_captions_button_summary_off">显示字幕按钮</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">隐藏投射按钮</string>
+ <string name="revanced_hide_cast_button_summary_on">已隐藏投屏按钮</string>
+ <string name="revanced_hide_cast_button_summary_off">已显示投屏按钮</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">Navigation buttons</string>
+ <string name="revanced_navigation_buttons_screen_summary">隐藏或更改导航栏中的按钮</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">隐藏主页</string>
+ <string name="revanced_hide_home_button_summary_on">Home 键已隐藏</string>
+ <string name="revanced_hide_home_button_summary_off">显示主页按钮</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">隐藏快捷方式</string>
+ <string name="revanced_hide_shorts_button_summary_on">已隐藏shorts按钮</string>
+ <string name="revanced_hide_shorts_button_summary_off">已显示shorts按钮</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">隐藏创建</string>
+ <string name="revanced_hide_create_button_summary_on">新建按钮已隐藏</string>
+ <string name="revanced_hide_create_button_summary_off">显示创建按钮</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">隐藏订阅</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">订阅按钮隐藏</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">显示订阅按钮</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">用通知切换创建</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">使用通知按钮\n\n注意:启用此选项也强制隐藏视频广告</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">未使用通知按钮切换创建按钮</string>
+ <string name="revanced_hide_navigation_button_labels_title">隐藏导航按钮标签</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">标签已隐藏</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">显示标签</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">Flyout menu</string>
+ <string name="revanced_hide_player_flyout_summary">隐藏或显示播放器飞行菜单项</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">隐藏标题</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">字幕菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">显示字幕菜单</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">隐藏其他设置</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">其他设置菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">显示其他设置菜单</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">隐藏循环视频</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">循环视频菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">循环视频菜单已显示</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">隐藏环境模式</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">环境模式菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">显示环境模式菜单</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">隐藏帮助 & 反馈</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">帮助 & 反馈菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">帮助 & 反馈菜单已显示</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">隐藏播放速度</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">回放速度菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">播放速度菜单显示</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">隐藏更多信息</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">更多信息菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">显示更多信息菜单</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">隐藏锁屏界面</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">锁屏菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">显示锁屏菜单</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">隐藏音轨</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">音轨菜单已隐藏</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">已显示音轨菜单</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">在 VR 中隐藏观察</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">在 VR 菜单中观看是隐藏的</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">在VR菜单中查看</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">隐藏之前的 & 下一个视频按钮</string>
+ <string name="revanced_hide_player_buttons_summary_on">按钮被隐藏</string>
+ <string name="revanced_hide_player_buttons_summary_off">显示按钮</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">隐藏相册卡</string>
+ <string name="revanced_hide_album_cards_summary_on">相册已隐藏</string>
+ <string name="revanced_hide_album_cards_summary_off">显示相册卡</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">评论</string>
+ <string name="revanced_comments_screen_summary">隐藏或显示评论部分组件</string>
+ <string name="revanced_hide_comments_by_members_header_title">隐藏会员头部的评论</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">会员头的评论已隐藏</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">成员标题的评论已显示</string>
+ <string name="revanced_hide_comments_section_title">隐藏评论部分</string>
+ <string name="revanced_hide_comments_section_summary_on">评论部分已隐藏</string>
+ <string name="revanced_hide_comments_section_summary_off">评论部分已显示</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">隐藏“创建一个短语”按钮</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">“创建一个短语”按钮已隐藏</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">显示“创建一个短”按钮</string>
+ <string name="revanced_hide_comments_preview_comment_title">隐藏预览评论</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">预览已隐藏</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">显示预览评论</string>
+ <string name="revanced_hide_comments_thanks_button_title">隐藏感谢按钮</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">感谢按钮已隐藏</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">已显示感谢按钮</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">隐藏时间戳和表情按钮</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">隐藏时间戳和表情按钮</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">显示时间戳和表情按钮</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">隐藏众筹框</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">聚合供资框已隐藏</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">显示集资框</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">隐藏结束屏幕卡片</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">结束屏幕卡已隐藏</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">显示结束屏卡</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">过滤栏</string>
+ <string name="revanced_hide_filter_bar_screen_summary">在新闻源、搜索和相关视频中隐藏或显示过滤栏</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">在新闻源中隐藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">在订阅中隐藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">在订阅源中显示</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">在搜索中隐藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">在搜索中隐藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">在搜索中显示</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">隐藏相关视频</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">在相关视频中隐藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">显示在相关视频</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">隐藏浮动麦克风</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">麦克风按钮隐藏</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">麦克风按钮显示</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">全屏禁用环境模式</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">环境模式已禁用</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">环境模式已启用</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">隐藏信息卡</string>
+ <string name="revanced_hide_info_cards_summary_on">已隐藏信息卡片</string>
+ <string name="revanced_hide_info_cards_summary_off">已显示信息卡片</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">禁用滚动数动画</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">滚动数字不是动画</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">滚动数字已动画</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">在视频播放器中隐藏搜索栏</string>
+ <string name="revanced_hide_seekbar_summary_on">视频播放器搜索栏已隐藏</string>
+ <string name="revanced_hide_seekbar_summary_off">视频播放器搜索栏已显示</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">在视频缩略图中隐藏搜索栏</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">缩略图搜索栏已隐藏</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">显示缩略图搜索栏</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">隐藏主页新闻源中的短路</string>
+ <string name="revanced_hide_shorts_home_summary_on">Home Feed中的短暂是隐藏的</string>
+ <string name="revanced_hide_shorts_home_summary_off">家庭种子中的短暂显示</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">隐藏订阅源中的短暂内容</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">订阅源中的缺失已隐藏</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">订阅订阅源的短缺显示</string>
+ <string name="revanced_hide_shorts_search_title">隐藏搜索结果中的短号</string>
+ <string name="revanced_hide_shorts_search_summary_on">搜索结果中的短暂已隐藏</string>
+ <string name="revanced_hide_shorts_search_summary_off">搜索结果中的短暂显示</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">隐藏加入按钮</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">加入按钮已隐藏</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">显示加入按钮</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">隐藏订阅按钮</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">订阅按钮已隐藏</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">订阅按钮显示</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">隐藏已暂停的叠加按钮</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">已暂停的叠加按钮被隐藏</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">已暂停的叠加按钮显示</string>
+ <string name="revanced_hide_shorts_shop_button_title">隐藏商店按钮</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">商店按钮已隐藏</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">显示商店按钮</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">隐藏超级感谢按钮</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">超级感谢按钮已隐藏</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">超级感谢按钮已显示</string>
+ <string name="revanced_hide_shorts_tagged_products_title">隐藏标记的产品</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">标记的产品被隐藏</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">显示标记过的产品</string>
+ <string name="revanced_hide_shorts_location_label_title">隐藏位置标签</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">位置标签已隐藏</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">显示位置标签</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">隐藏保存声音到播放列表按钮</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">保存声音到播放列表是隐藏的</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">将声音保存到播放列表显示</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">隐藏搜索建议</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">搜索建议已隐藏</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">显示搜索建议</string>
+ <string name="revanced_hide_shorts_like_button_title">隐藏像按钮</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">喜欢按钮已隐藏</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">显示喜欢按钮</string>
+ <string name="revanced_hide_shorts_dislike_button_title">隐藏不喜欢按钮</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">不喜欢按钮已隐藏</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">显示不喜欢按钮</string>
+ <string name="revanced_hide_shorts_comments_button_title">隐藏评论按钮</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">评论按钮已隐藏</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">已显示评论按钮</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">隐藏重置按钮</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">重置按钮已隐藏</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">显示重置按钮</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">隐藏分享按钮</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">分享按钮已隐藏</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">显示分享按钮</string>
+ <string name="revanced_hide_shorts_info_panel_title">隐藏信息面板</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">信息面板已隐藏</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">显示信息面板</string>
+ <string name="revanced_hide_shorts_channel_bar_title">隐藏频道栏</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">频道栏已隐藏</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">频道栏已隐藏</string>
+ <string name="revanced_hide_shorts_video_title_title">隐藏视频标题</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">标题已隐藏</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">显示标题</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">隐藏声音元数据标签</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">元数据标签已隐藏</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">显示元数据标签</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">隐藏完整视频链接标签</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">视频链接标签已隐藏</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">显示视频链接标签</string>
+ <string name="revanced_hide_shorts_sound_button_title">隐藏声音按钮</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">声音按钮已隐藏</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">显示声音按钮</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">隐藏导航栏</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">导航栏已隐藏</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">显示导航栏</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">禁用建议视频结束屏幕</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">建议视频将被禁用</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">建议视频将被显示</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">隐藏视频时间戳</string>
+ <string name="revanced_hide_timestamp_summary_on">时间戳已隐藏</string>
+ <string name="revanced_hide_timestamp_summary_off">显示时间戳</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">隐藏播放器弹出面板</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">播放器弹出面板已隐藏</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">显示播放器弹出面板</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">玩家覆盖不透明度</string>
+ <string name="revanced_player_overlay_opacity_summary">0-100之间的不透明度值, 其中0是透明的</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">玩家叠加层透明度必须介于 0-100 之间</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">隐藏</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">不喜欢暂时不可用 (API 超时)</string>
+ <string name="revanced_ryd_failure_connection_status_code">不喜欢不可用(状态 %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">不喜欢不可用(已达到客户端 API 限制)</string>
+ <string name="revanced_ryd_failure_generic">不喜欢不可用(%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">重新加载视频使用返回 YouTube Dislike</string>
+ <string name="revanced_ryd_enable_summary_on">不喜欢已显示</string>
+ <string name="revanced_ryd_enable_summary_off">不喜欢不显示</string>
+ <string name="revanced_ryd_shorts_title">在短处显示不喜欢的</string>
+ <string name="revanced_ryd_shorts_summary_on">不喜欢在短处显示</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">短暂显示的不喜欢\n\n限制:不喜欢可能不会出现在隐身模式中</string>
+ <string name="revanced_ryd_shorts_summary_off">不喜欢隐藏在快捷方式上</string>
+ <string name="revanced_ryd_dislike_percentage_title">不喜欢的百分比</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">不喜欢以百分比显示</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">不喜欢显示为数字</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">紧凑型按钮</string>
+ <string name="revanced_ryd_compact_layout_summary_on">喜欢按键的最小宽度</string>
+ <string name="revanced_ryd_compact_layout_summary_off">喜欢的按钮样式最佳外观</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">如果API不可用则显示提示</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">如果返回 YouTube Dislik不可用则显示Toast</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">如果返回 YouTube Dislik不可用则不显示 Toast</string>
+ <string name="revanced_ryd_about">关于</string>
+ <string name="revanced_ryd_attribution_summary">数据由返回 YouTube Dislike API提供。点击此处了解更多信息</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">返回 YouTubeDislis 此设备的 API 统计</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">API响应时间,平均值</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">API 响应时间,最小值</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">API 响应时间,最大值</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">API 响应时间,最后一个视频</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">暂时不喜欢-客户端API费率限制</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API 提取票数,通话次数</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">没有网络呼叫</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">%d 网络来电</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API 获取票数,超时数</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">没有网络呼叫超时</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d 网络呼叫超时</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API 客户端费率限制</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">没有遇到客户费率限制</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">客户端费率限制遇到的 %d 次</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d 毫秒</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">启用宽搜索栏</string>
+ <string name="revanced_wide_searchbar_summary_on">宽搜索栏已启用</string>
+ <string name="revanced_wide_searchbar_summary_off">宽搜索栏已禁用</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">恢复旧的搜索栏缩略图</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">搜索栏缩略图将出现在搜索栏上</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">搜索栏缩略图将显示在全屏显示</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">启用 SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock是一个由众人组成的系统,用于跳过 YouTube 视频中烦人的部分</string>
+ <string name="revanced_sb_appearance_category">外观</string>
+ <string name="revanced_sb_enable_voting">显示投票按钮</string>
+ <string name="revanced_sb_enable_voting_sum_on">段投票按钮显示</string>
+ <string name="revanced_sb_enable_voting_sum_off">段投票按钮不显示</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">使用紧凑的跳过按钮</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">跳过按钮的最小宽度</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">跳过按钮风格以获得最佳外观</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">自动隐藏跳过按钮</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">几秒后跳过按钮隐藏</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">跳过显示整个片段的按钮</string>
+ <string name="revanced_sb_general_skiptoast">自动跳过时显示提示</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">当一个部分自动跳过时显示Toast。点击此处查看示例</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">Toast 未显示。点击这里查看示例</string>
+ <string name="revanced_sb_general_time_without">显示视频长度不带段</string>
+ <string name="revanced_sb_general_time_without_sum_on">视频长度减去所有片段,显示在整个视频长度旁边的圆括号内</string>
+ <string name="revanced_sb_general_time_without_sum_off">显示完整视频长度</string>
+ <string name="revanced_sb_create_segment_category">创建新段</string>
+ <string name="revanced_sb_enable_create_segment">显示创建新片段按钮</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">显示新建片段按钮</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">创建新的片段按钮不显示</string>
+ <string name="revanced_sb_general_adjusting">调整新的片段步骤</string>
+ <string name="revanced_sb_general_adjusting_sum">创建新区段时调整按钮移动的毫秒数</string>
+ <string name="revanced_sb_general_adjusting_invalid">值必须是正数</string>
+ <string name="revanced_sb_guidelines_preference_title">查看准则</string>
+ <string name="revanced_sb_guidelines_preference_sum">准则包含用于创建新区段的规则和提示</string>
+ <string name="revanced_sb_guidelines_popup_title">遵循准则</string>
+ <string name="revanced_sb_guidelines_popup_content">在创建新的片段之前阅读SpongorBlock准则</string>
+ <string name="revanced_sb_guidelines_popup_already_read">已读</string>
+ <string name="revanced_sb_guidelines_popup_open">展示</string>
+ <string name="revanced_sb_general">常规</string>
+ <string name="revanced_sb_toast_on_connection_error_title">如果API不可用则显示提示</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">Toast 显示如果SpongorBlock不可用</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">如果不可用 SpongorBlock 则不显示Toast</string>
+ <string name="revanced_sb_general_skipcount">启用跳过计数跟踪</string>
+ <string name="revanced_sb_general_skipcount_sum_on">让赞助方块排行榜知道保存了多少时间。每次跳过一个区块时都会向排行榜发送一条消息</string>
+ <string name="revanced_sb_general_skipcount_sum_off">跳过计数跟踪未启用</string>
+ <string name="revanced_sb_general_min_duration">最短片段时长</string>
+ <string name="revanced_sb_general_min_duration_sum">短于此值的线段 (以秒为单位) 将不会显示或跳过</string>
+ <string name="revanced_sb_general_uuid">您的私人用户 id</string>
+ <string name="revanced_sb_general_uuid_sum">这应该被保密。这就像一个密码,不应该与他人分享。如果有人拥有它,他们就可以冒充您</string>
+ <string name="revanced_sb_general_uuid_invalid">私有用户ID必须至少 30 个字符长</string>
+ <string name="revanced_sb_general_api_url">更改 API URL</string>
+ <string name="revanced_sb_general_api_url_sum">SpongorBlock地址用来拨打服务器的电话</string>
+ <string name="revanced_sb_api_url_reset">已重置 API URL</string>
+ <string name="revanced_sb_api_url_invalid">API URL 无效</string>
+ <string name="revanced_sb_api_url_changed">已更改 API URL</string>
+ <string name="revanced_sb_settings_ie">导入/导出设置</string>
+ <string name="revanced_sb_settings_copy">复制</string>
+ <string name="revanced_sb_settings_ie_sum">您的 SpongorBlock JSON 配置可以导入/导出到 ReVictic 和其他SpongorBlock 平台</string>
+ <string name="revanced_sb_settings_ie_sum_warning">您的 SpongorBlock JSON 配置可以导入/导出到 ReVictic 和其他赞助方平台。 这包括您的私人用户ID。请务必明智地分享这个信息。</string>
+ <string name="revanced_sb_settings_import_successful">成功导入设置</string>
+ <string name="revanced_sb_settings_import_failed">导入失败: %s</string>
+ <string name="revanced_sb_settings_export_failed">导出失败: %s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">您的设置包含一个 SponsorBlock 用户 ID。\n\n您的用户 ID 应该像密码一样不要分享给他人。\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">不再显示</string>
+ <string name="revanced_sb_diff_segments">更改片段行为</string>
+ <string name="revanced_sb_segments_sponsor">赞助</string>
+ <string name="revanced_sb_segments_sponsor_sum">付费促销、付费推荐和直接广告。不是为了自我促销或免费呼叫他们喜欢的事业/创作者/网站/产品</string>
+ <string name="revanced_sb_segments_selfpromo">非付费/自我推广</string>
+ <string name="revanced_sb_segments_selfpromo_sum">类似于“赞助者”,但不包括无报酬或自我促销。包括有关商品、 捐赠或他们与谁合作的信息</string>
+ <string name="revanced_sb_segments_interaction">互动提醒 (订阅)</string>
+ <string name="revanced_sb_segments_interaction_sum">在内容中间简短提示喜欢、订阅或关注它们。 如果它是漫长的或是特定的,它应该是自我促销的。</string>
+ <string name="revanced_sb_segments_highlight">高亮</string>
+ <string name="revanced_sb_segments_highlight_sum">大多数人正在寻找的视频部分</string>
+ <string name="revanced_sb_segments_intro">过场/开场动画</string>
+ <string name="revanced_sb_segments_intro_sum">没有实际内容的间隔。可以是暂停、静态帧或重复动画。不包括含有信息的离子对。</string>
+ <string name="revanced_sb_segments_outro">结束画面/贡献表</string>
+ <string name="revanced_sb_segments_outro_sum">感谢或当YouTube端卡出现时。不是因为有信息的结尾</string>
+ <string name="revanced_sb_segments_preview">预览/回收/钩子</string>
+ <string name="revanced_sb_segments_preview_sum">集合显示视频或其他系列视频中正在出现或发生的事情的片段 如果所有信息在其他地方重复,则在其他地方重复;</string>
+ <string name="revanced_sb_segments_filler">跑题内容/笑话</string>
+ <string name="revanced_sb_segments_filler_sum">只为填充者或幽默添加了切片场景,这些场景不需要理解视频的主要内容。 不包括提供上下文或背景详细信息的部分</string>
+ <string name="revanced_sb_segments_nomusic">音乐:非音乐部分</string>
+ <string name="revanced_sb_segments_nomusic_sum">仅用于音乐视频。没有音乐的音乐视频部分已经没有被另一个类别覆盖。</string>
+ <string name="revanced_sb_skip_button_compact">跳过</string>
+ <string name="revanced_sb_skip_button_compact_highlight">高亮</string>
+ <string name="revanced_sb_skip_button_sponsor">跳过赞助商</string>
+ <string name="revanced_sb_skip_button_selfpromo">跳过促销活动</string>
+ <string name="revanced_sb_skip_button_interaction">跳过互动</string>
+ <string name="revanced_sb_skip_button_highlight">跳过高亮显示</string>
+ <string name="revanced_sb_skip_button_intro_beginning">跳过简介</string>
+ <string name="revanced_sb_skip_button_intro_middle">跳过接口</string>
+ <string name="revanced_sb_skip_button_intro_end">跳过接口</string>
+ <string name="revanced_sb_skip_button_outro">Skip outro</string>
+ <string name="revanced_sb_skip_button_preview_beginning">跳过预览</string>
+ <string name="revanced_sb_skip_button_preview_middle">跳过预览</string>
+ <string name="revanced_sb_skip_button_preview_end">跳过Recap</string>
+ <string name="revanced_sb_skip_button_filler">跳过过滤器</string>
+ <string name="revanced_sb_skip_button_nomusic">跳过非音乐</string>
+ <string name="revanced_sb_skip_button_unsubmitted">跳过片段</string>
+ <string name="revanced_sb_skipped_sponsor">已跳过赞助商广告</string>
+ <string name="revanced_sb_skipped_selfpromo">跳过促销活动</string>
+ <string name="revanced_sb_skipped_interaction">已跳过提醒</string>
+ <string name="revanced_sb_skipped_highlight">跳过高亮显示</string>
+ <string name="revanced_sb_skipped_intro_beginning">已跳过视频开头</string>
+ <string name="revanced_sb_skipped_intro_middle">跳过接口</string>
+ <string name="revanced_sb_skipped_intro_end">跳过接口</string>
+ <string name="revanced_sb_skipped_outro">已跳过视频结尾</string>
+ <string name="revanced_sb_skipped_preview_beginning">跳过预览</string>
+ <string name="revanced_sb_skipped_preview_middle">跳过预览</string>
+ <string name="revanced_sb_skipped_preview_end">跳过的Recap</string>
+ <string name="revanced_sb_skipped_filler">跳过闲聊</string>
+ <string name="revanced_sb_skipped_nomusic">跳过一个非音乐部分</string>
+ <string name="revanced_sb_skipped_unsubmitted">跳过未提交的片段</string>
+ <string name="revanced_sb_skipped_multiple_segments">跳过多个段</string>
+ <string name="revanced_sb_skip_automatically">自动跳过</string>
+ <string name="revanced_sb_skip_automatically_once">自动跳过一次</string>
+ <string name="revanced_sb_skip_showbutton">显示“跳过”按钮</string>
+ <string name="revanced_sb_skip_seekbaronly">在搜索栏显示</string>
+ <string name="revanced_sb_skip_ignore">禁用</string>
+ <string name="revanced_sb_submit_failed_invalid">无法提交片段: %s</string>
+ <string name="revanced_sb_submit_failed_timeout">赞助方块暂时关闭</string>
+ <string name="revanced_sb_submit_failed_unknown_error">无法提交片段 (状态: %1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">无法提交部分。\n速率限制(来自同一个用户或IP太多)</string>
+ <string name="revanced_sb_submit_failed_forbidden">无法提交片段: %s</string>
+ <string name="revanced_sb_submit_failed_duplicate">无法提交片段。\n已经存在</string>
+ <string name="revanced_sb_submit_succeeded">成功提交新片段</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SpongorBlock 暂时不可用 (API 超时)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SpongorBlock 暂时不可用(状态 %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SpongorBlock 暂时不可用</string>
+ <string name="revanced_sb_vote_failed_timeout">无法投票表决部分 (API 超时)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">无法投票支持片段 (状态: %1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">无法对片段进行投票: %s</string>
+ <string name="revanced_sb_vote_upvote">赞成票</string>
+ <string name="revanced_sb_vote_downvote">反对票</string>
+ <string name="revanced_sb_vote_category">变更类别</string>
+ <string name="revanced_sb_vote_no_segments">没有要投票的片段</string>
+ <string name="revanced_sb_new_segment_choose_category">选择片段的类别</string>
+ <string name="revanced_sb_new_segment_disabled_category">分类在设置中被禁用。启用类别以提交。</string>
+ <string name="revanced_sb_new_segment_title">新的 SpongorBlock 片段</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">设置 %1$02d:%2$02d:%3$03d 作为新片段的开始或结束?</string>
+ <string name="revanced_sb_new_segment_mark_start">开始</string>
+ <string name="revanced_sb_new_segment_mark_end">结束</string>
+ <string name="revanced_sb_new_segment_now">现在</string>
+ <string name="revanced_sb_new_segment_time_start">片段开始时间</string>
+ <string name="revanced_sb_new_segment_time_end">片段结束时间</string>
+ <string name="revanced_sb_new_segment_confirm_title">时间是否正确?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">该片段从\n\n%1$s\n到\n%2$s\n\n(%3$s)\n\n立即提交?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">开始时间必须早于结束</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">首先在时间栏上标记两个位置</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">预览部分,并确保它顺利跳过</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">手动编辑线段时间</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">您想要编辑片段开始或结束的时间吗?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">给定的时间无效</string>
+ <string name="revanced_sb_stats">统计</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">暂时不可用的数据 (API 已下调)</string>
+ <string name="revanced_sb_stats_loading">正在加载…</string>
+ <string name="revanced_sb_stats_sb_disabled">SponsorBlock 已禁用</string>
+ <string name="revanced_sb_stats_username">您的用户名: <b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">点击此处更改您的用户名</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">无法更改用户名:状态:%1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">用户名称修改成功</string>
+ <string name="revanced_sb_stats_reputation">您的信誉积分是 <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">您已创建 <b>%s</b> 部分</string>
+ <string name="revanced_sb_stats_saved_zero">赞助方块排行榜</string>
+ <string name="revanced_sb_stats_saved">您已经从 <b>%s</b> 段中保存了人员</string>
+ <string name="revanced_sb_stats_saved_sum_zero">点击此处查看全球统计数据和最佳贡献者</string>
+ <string name="revanced_sb_stats_self_saved">您已跳过 <b>%s</b> 部分</string>
+ <string name="revanced_sb_stats_self_saved_sum"><b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">重置跳过的片段计数器?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s 小时 %2$s 分钟</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s 分钟 %2$s 秒</string>
+ <string name="revanced_sb_stats_saved_second_format">%s 秒</string>
+ <string name="revanced_sb_color_dot_label">颜色:</string>
+ <string name="revanced_sb_color_changed">已更改颜色</string>
+ <string name="revanced_sb_color_reset">重置颜色</string>
+ <string name="revanced_sb_color_invalid">无效的颜色代码</string>
+ <string name="revanced_sb_reset_color">重置颜色</string>
+ <string name="revanced_sb_reset">重置</string>
+ <string name="revanced_sb_about">关于</string>
+ <string name="revanced_sb_about_api_sum">数据由 SpongorBlock API 提供。点击此处了解更多信息并查看其他平台的下载</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">伪装应用程序版本</string>
+ <string name="revanced_spoof_app_version_summary_on">客户端版本已伪装</string>
+ <string name="revanced_spoof_app_version_summary_off">客户端版本未伪装</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">应用版本将被伪装成旧版本的 YouTube。\n\n这将改变应用程序的外观和功能,但可能出现未知的副作用。\n\n如果稍后关闭,建议清除应用数据以防止 UI 错误。</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">伪装应用程序版本为</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - 在隐身模式下恢复 RYD</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - 还原宽视频速度 & 画质菜单</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - 还原库标签</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - 还原旧的播放列表</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - 还原旧界面布局</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">设置起始页</string>
+ <string name="revanced_start_page_entry_0">默认</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">首页</string>
+ <string name="revanced_start_page_entry_2">搜索</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">订阅</string>
+ <string name="revanced_start_page_entry_4">浏览</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">您的标签</string>
+ <string name="revanced_start_page_entry_7">喜欢的视频</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">历史记录</string>
+ <string name="revanced_start_page_entry_9">热门主题</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">禁用恢复快捷播放器</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">应用启动时短暂播放器将不会恢复</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">应用启动时短暂播放器将恢复</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">启用平板电脑布局</string>
+ <string name="revanced_tablet_layout_summary_on">平板电脑布局已启用</string>
+ <string name="revanced_tablet_layout_summary_off">平板电脑布局已禁用</string>
+ <string name="revanced_tablet_layout_user_dialog_message">社区帖子不显示在平板电脑布局</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">小播放器</string>
+ <string name="revanced_miniplayer_screen_summary">更改应用最小化播放器中的样式</string>
+ <string name="revanced_miniplayer_type_title">最小播放器类型</string>
+ <string name="revanced_miniplayer_type_entry_1">原始文件</string>
+ <string name="revanced_miniplayer_type_entry_2">电话</string>
+ <string name="revanced_miniplayer_type_entry_3">平板电脑</string>
+ <string name="revanced_miniplayer_type_entry_4">现代1</string>
+ <string name="revanced_miniplayer_type_entry_5">现代2</string>
+ <string name="revanced_miniplayer_type_entry_6">现代3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">隐藏展开和关闭按钮</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">按钮是隐藏的\n(滑动微播放器以展开或关闭)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">展开和关闭按钮显示</string>
+ <string name="revanced_miniplayer_hide_subtext_title">隐藏子文本</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">隐藏子文本</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">显示子文本</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">隐藏跳过后退按钮</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">向前跳过并隐藏</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">向前跳过并显示</string>
+ <string name="revanced_miniplayer_opacity_title">Overlay opacity</string>
+ <string name="revanced_miniplayer_opacity_summary">0-100之间的不透明度值, 其中0是透明的</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">最小播放器覆盖不透明度必须介于 0-100 之间</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">启用渐变加载屏幕</string>
+ <string name="revanced_gradient_loading_screen_summary_on">加载屏幕时将有渐变背景</string>
+ <string name="revanced_gradient_loading_screen_summary_off">加载屏幕将有一个坚实的背景</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">启用自定义搜索栏颜色</string>
+ <string name="revanced_seekbar_custom_color_summary_on">自定义搜索栏颜色</string>
+ <string name="revanced_seekbar_custom_color_summary_off">显示原始搜索栏颜色</string>
+ <string name="revanced_seekbar_custom_color_value_title">自定义搜索栏颜色</string>
+ <string name="revanced_seekbar_custom_color_value_summary">搜索栏的颜色</string>
+ <string name="revanced_seekbar_custom_color_invalid">无效的搜索栏颜色值。使用默认值。</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">主页标签</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">订阅标签</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">您的标签</string>
+ <string name="revanced_alt_thumbnail_player_title">播放列表、建议</string>
+ <string name="revanced_alt_thumbnail_search_title">搜索结果</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">Original thumbnails</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & 原始封面</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & 视频截图</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">仍然捕获的</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow 为 YouTube 视频提供源自众包的缩略图。 这些缩略图通常比YouTube\n\n更相关,如果启用, 视频URL将被发送到 API 服务器,没有其他数据被发送。 如果视频没有 DeArrow 缩略图, 然后显示原始或仍然捕获的\n\n点击此处了解更多关于DeArrow</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">如果API不可用则显示提示</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">如果无法使用 DeArrow 则显示Toast</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">如果不能使用 DeArrow 则不显示 Toast</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DaArrow 缩略图缓存端点的 URL</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">仍在拍摄视频</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">仍然是从每个视频的开始/中间/末尾拍摄。这些图像被编入YouTube,没有使用外部 API</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">使用仍然很快的抓取</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">使用中质量仍然抓取。缩略图会更快地加载,但是直播、未发布或非常旧的视频可能会显示空白缩略图</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">使用高品质捕获量</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">拍摄的视频时间</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">视频开始</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">视频居中</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">视频结束</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">暂时不可用 (状态码: %s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">暂时不可用</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">显示折叠通知</string>
+ <string name="revanced_announcements_summary_on">启动时显示通知</string>
+ <string name="revanced_announcements_summary_off">启动时不显示通知</string>
+ <string name="revanced_announcements_enabled_summary">启动时显示通知</string>
+ <string name="revanced_announcements_connection_failed">无法连接到通知提供商</string>
+ <string name="revanced_announcements_dialog_dismiss">忽略</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">启用自动重复</string>
+ <string name="revanced_auto_repeat_summary_on">自动重复已启用</string>
+ <string name="revanced_auto_repeat_summary_off">自动重复已禁用</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">伪装设备尺寸</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">设备尺寸已伪装\n\n可能解锁更高的视频画质,但可能会遇到视频播放迟缓、电池寿命更短等未知副作用</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">设备尺寸未伪装\n\n启用此功能可以解锁更高的视频画质</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">启用此选项可能会导致视频播放卡顿、电池寿命更短等未知副作用。</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore 设置</string>
+ <string name="microg_settings_summary">GmsCore 设置</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">绕过 URL 重定向</string>
+ <string name="revanced_bypass_url_redirects_summary_on">URL 重定向将被跳过</string>
+ <string name="revanced_bypass_url_redirects_summary_off">URL 重定向将不被跳过</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">在浏览器中打开链接</string>
+ <string name="revanced_external_browser_summary_on">对外打开链接</string>
+ <string name="revanced_external_browser_summary_off">在应用中打开链接</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">后台播放</string>
+ <string name="revanced_background_playback_summary">此设置可以在设置中找到 -> 背景</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">删除跟踪查询参数</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">跟踪查询参数已从链接中删除</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">跟踪查询参数未从链接中删除</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">禁用缩放瞄准镜</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">禁用休眠</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">振动功能已启用</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">自动</string>
+ <string name="revanced_remember_video_quality_last_selected_title">记住视频质量变化</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">质量变化适用于所有视频</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">质量变化仅适用于当前视频</string>
+ <string name="revanced_video_quality_default_wifi_title">Wi-Fi网络上的默认视频质量</string>
+ <string name="revanced_video_quality_default_mobile_title">移动网络上的默认视频质量</string>
+ <string name="revanced_remember_video_quality_mobile">移动网络</string>
+ <string name="revanced_remember_video_quality_wifi">无线网络</string>
+ <string name="revanced_remember_video_quality_toast">更改默认的 %1$s 质量到: %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">显示速度对话框按钮</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">按钮已显示</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">未显示按钮</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">自定义播放速度</string>
+ <string name="revanced_custom_playback_speeds_summary">添加或更改可用的播放速度</string>
+ <string name="revanced_custom_playback_speeds_invalid">自定义速度必须小于 %s。使用默认值。</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">无效的自定义播放速度。使用默认值。</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">记住播放速度变化</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">播放速度变化适用于所有视频</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">播放速度变化仅适用于当前视频</string>
+ <string name="revanced_playback_speed_default_title">默认播放速度</string>
+ <string name="revanced_remember_playback_speed_toast">更改默认速度到: %s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">还原旧的视频质量菜单</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">显示旧视频质量菜单</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">未显示旧视频质量菜单</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">启用幻灯片搜索</string>
+ <string name="revanced_slide_to_seek_summary_on">滑动以定位已启用</string>
+ <string name="revanced_slide_to_seek_summary_off">未启用滑动搜索</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">伪装客户端</string>
+ <string name="revanced_spoof_client_screen_summary">伪装客户端以解决播放问题</string>
+ <string name="revanced_spoof_client_title">伪装客户端</string>
+ <string name="revanced_spoof_client_summary_on">客户端已伪装</string>
+ <string name="revanced_spoof_client_summary_off">客户端未伪装\n\n可能无法正常播放视频</string>
+ <string name="revanced_spoof_client_user_dialog_message">关闭此选项可能会导致视频不能正常播放。</string>
+ <string name="revanced_spoof_client_use_ios_title">伪装客户端为 iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">客户端目前被伪装成Android VR\n\n辅助效果包括:\n无 HDR视频\n• 儿童视频不播放\n• 暂停的视频可以随机恢复\n• 低质量的短讯寻找缩略图\n• 下载动作按钮总是隐藏的\n• 终点屏卡总是隐藏的</string>
+ <string name="revanced_spoof_client_storyboard_timeout">伪装客户端缩略图不可用(API 超时)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">伪装客户端缩略图暂时不可用: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">屏蔽音频广告</string>
+ <string name="revanced_block_audio_ads_summary_on">音频广告被阻止</string>
+ <string name="revanced_block_audio_ads_summary_off">音频广告已解除阻止</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s 不可用。广告可能会显示。请尝试在设置中切换到另一个广告块服务。</string>
+ <string name="revanced_embedded_ads_service_failed">%s 服务器返回错误。广告可能会显示。请尝试在设置中切换到另一个广告块服务。</string>
+ <string name="revanced_block_embedded_ads_title">屏蔽嵌入式视频广告</string>
+ <string name="revanced_block_embedded_ads_entry_1">已禁用</string>
+ <string name="revanced_block_embedded_ads_entry_2">亮色代理</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock 代理</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">屏蔽视频广告</string>
+ <string name="revanced_block_video_ads_summary_on">视频广告被阻止</string>
+ <string name="revanced_block_video_ads_summary_off">视频广告已解除阻止</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">消息已删除</string>
+ <string name="revanced_show_deleted_messages_title">显示已删除的消息</string>
+ <string name="revanced_show_deleted_messages_entry_1">不显示已删除的消息</string>
+ <string name="revanced_show_deleted_messages_entry_2">隐藏破坏者后面已删除的消息</string>
+ <string name="revanced_show_deleted_messages_entry_3">将已删除的消息显示为交叉文本</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">自动认领频道点</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">频道点是自动认领的</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">频道点不是自动认领的</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">启用 Twitch 调试模式</string>
+ <string name="revanced_twitch_debug_mode_summary_on">Twitch 调试模式已启用(不推荐)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">Twitch调试模式已禁用</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">光学设置</string>
+ <string name="revanced_ads_screen_title">广告</string>
+ <string name="revanced_ads_screen_summary">广告屏蔽设置</string>
+ <string name="revanced_chat_screen_title">聊天</string>
+ <string name="revanced_chat_screen_summary">聊天设置</string>
+ <string name="revanced_misc_screen_title">杂项</string>
+ <string name="revanced_misc_screen_summary">杂项设置</string>
+ <string name="revanced_general_category_title">常规设置</string>
+ <string name="revanced_other_category_title">其他设置</string>
+ <string name="revanced_client_ads_category_title">客户端广告</string>
+ <string name="revanced_surestream_ads_category_title">服务器端担保广告</string>
+ <string name="revanced_twitch_debug_title">调试日志</string>
+ <string name="revanced_twitch_debug_summary_on">调试日志已启用</string>
+ <string name="revanced_twitch_debug_summary_off">调试日志已禁用</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-zh-rHK/strings.xml b/src/main/resources/addresources/values-zh-rHK/strings.xml
new file mode 100644
index 0000000000..4f2f12b5b8
--- /dev/null
+++ b/src/main/resources/addresources/values-zh-rHK/strings.xml
@@ -0,0 +1,295 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">您要唔要繼續?</string>
+ <string name="revanced_settings_reset">重設</string>
+ <string name="revanced_settings_restart_title">刷新後重新啟動</string>
+ <string name="revanced_settings_restart">重新啟動</string>
+ <string name="revanced_settings_import">匯入</string>
+ <string name="revanced_settings_import_copy">複製</string>
+ <string name="revanced_settings_import_reset">ReVanced 嘅設定已經被重置返做預設</string>
+ <string name="revanced_settings_import_success">匯入咗 %d 嘅設定</string>
+ <string name="revanced_settings_import_failure_parse">匯入失敗: %s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">MicroG GmsCore 仲未安裝。安裝埋佢。</string>
+ <string name="gms_core_dialog_title">需要行動</string>
+ <string name="gms_core_dialog_open_website_text">打開網站</string>
+ <string name="gms_core_dialog_continue_text">繼續</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_dev_header">備註</string>
+ <string name="revanced_settings_about_links_header">官方鏈接</string>
+ <string name="revanced_pref_import_export_title">匯入/匯出</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">關於</string>
+ <string name="revanced_settings_screen_01_ads_title">廣告</string>
+ <string name="revanced_settings_screen_03_feed_title">訊息來源</string>
+ <string name="revanced_settings_screen_11_misc_title">雜項</string>
+ <string name="revanced_settings_screen_12_video_title">影片</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">除錯</string>
+ <string name="revanced_debug_screen_summary">開啟或停用除錯選項</string>
+ <string name="revanced_debug_title">除錯日誌</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_hide_gray_separator_title">隱藏灰色間隔</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_summary_on">已經隱藏咗按鈕</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_summary_on">已經隱藏咗按鈕</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_community_posts_title">隱藏社團嘅貼文</string>
+ <string name="revanced_hide_compact_banner_title">隱藏影片下嘅橫幅</string>
+ <string name="revanced_hide_feed_survey_title">隱藏問卷調查嘅提示</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_about">關於</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_appearance_category">主題</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_loading">載入中……</string>
+ <string name="revanced_sb_reset">重設</string>
+ <string name="revanced_sb_about">關於</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_entry_0">預設</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_dialog_dismiss">忽略</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_block_embedded_ads_entry_1">已停用</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-zh-rTW/strings.xml b/src/main/resources/addresources/values-zh-rTW/strings.xml
new file mode 100644
index 0000000000..83978a0fff
--- /dev/null
+++ b/src/main/resources/addresources/values-zh-rTW/strings.xml
@@ -0,0 +1,1179 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ <string name="revanced_settings_confirm_user_dialog_title">您想繼續嗎?</string>
+ <string name="revanced_settings_reset">重設</string>
+ <string name="revanced_settings_restart_title">套用並重新啟動</string>
+ <string name="revanced_settings_restart">重新啟動</string>
+ <string name="revanced_settings_import">匯入</string>
+ <string name="revanced_settings_import_copy">複製</string>
+ <string name="revanced_settings_import_reset">重設 ReVanced 設定為預設值</string>
+ <string name="revanced_settings_import_success">已匯入設定 %d</string>
+ <string name="revanced_settings_import_failure_parse">匯入失敗:%s</string>
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="gms_core_toast_not_installed_message">未安裝 MicroG GmsCore。請前往安裝。</string>
+ <string name="gms_core_dialog_title">需要採取行動</string>
+ <string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">MicroG GmsCore 沒有在背景執行的權限。\n\n請遵循適用於您手機的「Don\'t kill my app」嚮導,並將這些說明套用到您的 MicroG 安裝中。\n\n這是讓應用程式執行所必需做的。</string>
+ <string name="gms_core_dialog_open_website_text">開啟網站</string>
+ <string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">請務必停用 MicroG GmsCore 的最佳化電池以避免意外問題。\n\n點擊繼續按鈕並停用最佳化電池。</string>
+ <string name="gms_core_dialog_continue_text">繼續</string>
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ <string name="revanced_settings_about_links_body">您正在使用 ReVanced 修補版本 <i>%s</i></string>
+ <string name="revanced_settings_about_links_dev_header">說明</string>
+ <string name="revanced_settings_about_links_dev_body">此版本是預覽版,您可能會遇到意外問題</string>
+ <string name="revanced_settings_about_links_header">官方連結</string>
+ <string name="revanced_pref_import_export_title">匯入 / 匯出</string>
+ <string name="revanced_pref_import_export_summary">匯入 / 匯出 ReVanced 設定</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings_screen_00_about_title">關於</string>
+ <string name="revanced_settings_screen_01_ads_title">廣告</string>
+ <string name="revanced_settings_screen_02_alt_thumbnails_title">替代縮圖</string>
+ <string name="revanced_settings_screen_03_feed_title">動態消息</string>
+ <string name="revanced_settings_screen_04_player_title">播放器</string>
+ <string name="revanced_settings_screen_05_general_title">一般佈局</string>
+ <string name="revanced_settings_screen_07_seekbar_title">進度條</string>
+ <string name="revanced_settings_screen_08_swipe_controls_title">滑動控制</string>
+ <string name="revanced_settings_screen_11_misc_title">其它</string>
+ <string name="revanced_settings_screen_12_video_title">影片</string>
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ <string name="revanced_debug_screen_title">除錯</string>
+ <string name="revanced_debug_screen_summary">啟用或停用除錯選項</string>
+ <string name="revanced_debug_title">除錯記錄檔</string>
+ <string name="revanced_debug_summary_on">已啟用除錯記錄檔</string>
+ <string name="revanced_debug_summary_off">已停用除錯記錄檔</string>
+ <string name="revanced_debug_protobuffer_title">記錄檔協議緩衝區</string>
+ <string name="revanced_debug_protobuffer_summary_on">除錯記錄檔會包含協議緩衝資訊</string>
+ <string name="revanced_debug_protobuffer_summary_off">除錯記錄檔不會包含協議緩衝資訊</string>
+ <string name="revanced_debug_stacktrace_title">記錄檔堆疊追蹤</string>
+ <string name="revanced_debug_stacktrace_summary_on">除錯記錄檔包含堆疊追蹤</string>
+ <string name="revanced_debug_stacktrace_summary_off">除錯記錄檔不包含堆疊追蹤</string>
+ <string name="revanced_debug_toast_on_error_title">在 ReVacned 錯誤時顯示提示</string>
+ <string name="revanced_debug_toast_on_error_summary_on">若發生錯誤,顯示提示</string>
+ <string name="revanced_debug_toast_on_error_summary_off">若發生錯誤,不顯示提示</string>
+ <string name="revanced_debug_toast_on_error_user_dialog_message">關閉錯誤提示並隱藏所有 ReVanced 錯誤通知。\n\n您將不會收到任何意外事件的通知。</string>
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <string name="revanced_disable_like_subscribe_glow_title">停用「讚」和「訂閱」按鈕的發光效果</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_on">提及時,「讚」和「訂閱」按鈕不會發光</string>
+ <string name="revanced_disable_like_subscribe_glow_summary_off">提及時,「讚」和「訂閱」按鈕會發光</string>
+ <string name="revanced_hide_gray_separator_title">隱藏灰色分隔線</string>
+ <string name="revanced_hide_gray_separator_summary_on">已隱藏灰色分隔線</string>
+ <string name="revanced_hide_gray_separator_summary_off">已顯示灰色分隔線</string>
+ <string name="revanced_hide_channel_watermark_title">隱藏頻道浮水印</string>
+ <string name="revanced_hide_channel_watermark_summary_on">已隱藏影片浮水印</string>
+ <string name="revanced_hide_channel_watermark_summary_off">已顯示影片浮水印</string>
+ <string name="revanced_hide_horizontal_shelves_title">隱藏水平櫃</string>
+ <string name="revanced_hide_horizontal_shelves_summary_on">已隱藏這些櫃子:\n• 即時新聞\n• 繼續觀看\n• 探索更多頻道\n• 商店\n• 再看一次</string>
+ <string name="revanced_hide_horizontal_shelves_summary_off">已顯示櫃子</string>
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <string name="revanced_hide_join_membership_button_title">隱藏「加入」按鈕</string>
+ <string name="revanced_hide_join_membership_button_summary_on">已隱藏按鈕</string>
+ <string name="revanced_hide_join_membership_button_summary_off">已顯示按鈕</string>
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_for_you_shelf_title">在頻道頁面中隱藏「為你推薦」櫃</string>
+ <string name="revanced_hide_for_you_shelf_summary_on">已隱藏櫃子</string>
+ <string name="revanced_hide_for_you_shelf_summary_off">已顯示櫃子</string>
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <string name="revanced_hide_notify_me_button_title">隱藏「通知我」按鈕</string>
+ <string name="revanced_hide_notify_me_button_summary_on">已隱藏按鈕</string>
+ <string name="revanced_hide_notify_me_button_summary_off">已顯示按鈕</string>
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <string name="revanced_hide_search_result_recommendations_title">隱藏「其他人還看了」推薦</string>
+ <string name="revanced_hide_search_result_recommendations_summary_on">已隱藏推薦</string>
+ <string name="revanced_hide_search_result_recommendations_summary_off">已顯示推薦</string>
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <string name="revanced_hide_show_more_button_title">隱藏「顯示更多」按鈕</string>
+ <string name="revanced_hide_show_more_button_summary_on">已隱藏按鈕</string>
+ <string name="revanced_hide_show_more_button_summary_off">已顯示按鈕</string>
+ <string name="revanced_hide_timed_reactions_title">隱藏直播即時反應</string>
+ <string name="revanced_hide_timed_reactions_summary_on">已隱藏直播即時反應</string>
+ <string name="revanced_hide_timed_reactions_summary_off">已顯示直播即時反應</string>
+ <string name="revanced_hide_search_result_shelf_header_title">隱藏搜尋結果標頭櫃</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_on">已隱藏標頭櫃</string>
+ <string name="revanced_hide_search_result_shelf_header_summary_off">已顯示標頭櫃</string>
+ <string name="revanced_hide_channel_guidelines_title">隱藏頻道規範</string>
+ <string name="revanced_hide_channel_guidelines_summary_on">已隱藏頻道規範</string>
+ <string name="revanced_hide_channel_guidelines_summary_off">已顯示頻道規範</string>
+ <string name="revanced_hide_expandable_chip_title">隱藏影片下方的章節選擇欄</string>
+ <string name="revanced_hide_expandable_chip_summary_on">已隱藏影片下方的章節選擇欄</string>
+ <string name="revanced_hide_expandable_chip_summary_off">已顯示影片下方的章節選擇欄</string>
+ <string name="revanced_hide_video_quality_menu_footer_title">隱藏畫質選單底部</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_on">已隱藏畫質選單底部</string>
+ <string name="revanced_hide_video_quality_menu_footer_summary_off">已顯示畫質選單底部</string>
+ <string name="revanced_hide_community_posts_title">隱藏社群貼文</string>
+ <string name="revanced_hide_community_posts_summary_on">已隱藏社群貼文</string>
+ <string name="revanced_hide_community_posts_summary_off">已顯示社群貼文</string>
+ <string name="revanced_hide_compact_banner_title">隱藏小型橫幅</string>
+ <string name="revanced_hide_compact_banner_summary_on">已隱藏小型橫幅</string>
+ <string name="revanced_hide_compact_banner_summary_off">已顯示小型橫幅</string>
+ <string name="revanced_hide_movies_section_title">隱藏電影區</string>
+ <string name="revanced_hide_movies_section_summary_on">已隱藏電影區</string>
+ <string name="revanced_hide_movies_section_summary_off">已顯示電影區</string>
+ <string name="revanced_hide_feed_survey_title">隱藏動態影片問卷調查</string>
+ <string name="revanced_hide_feed_survey_summary_on">已隱藏動態影片問卷調查</string>
+ <string name="revanced_hide_feed_survey_summary_off">已顯示動態影片問卷調查</string>
+ <string name="revanced_hide_community_guidelines_title">隱藏《社群規範》</string>
+ <string name="revanced_hide_community_guidelines_summary_on">已隱藏《社群規範》</string>
+ <string name="revanced_hide_community_guidelines_summary_off">已顯示《社群規範》</string>
+ <string name="revanced_hide_subscribers_community_guidelines_title">隱藏訂閱者《社群規範》</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_on">已隱藏《訂閱者社群規範》</string>
+ <string name="revanced_hide_subscribers_community_guidelines_summary_off">已顯示《訂閱者社群規範》</string>
+ <string name="revanced_hide_channel_member_shelf_title">隱藏頻道會員櫃</string>
+ <string name="revanced_hide_channel_member_shelf_summary_on">已隱藏頻道會員櫃</string>
+ <string name="revanced_hide_channel_member_shelf_summary_off">已顯示頻道會員櫃</string>
+ <string name="revanced_hide_emergency_box_title">隱藏影片警告提醒</string>
+ <string name="revanced_hide_emergency_box_summary_on">已隱藏影片警告提醒</string>
+ <string name="revanced_hide_emergency_box_summary_off">已顯示影片警告提醒</string>
+ <string name="revanced_hide_info_panels_title">隱藏資訊面板</string>
+ <string name="revanced_hide_info_panels_summary_on">已隱藏資訊面板</string>
+ <string name="revanced_hide_info_panels_summary_off">已顯示資訊面板</string>
+ <string name="revanced_hide_medical_panels_title">隱藏醫療資訊面板</string>
+ <string name="revanced_hide_medical_panels_summary_on">已隱藏醫療資訊面板</string>
+ <string name="revanced_hide_medical_panels_summary_off">已顯示醫療資訊面板</string>
+ <string name="revanced_hide_channel_bar_title">隱藏頻道欄</string>
+ <string name="revanced_hide_channel_bar_summary_on">已隱藏頻道欄</string>
+ <string name="revanced_hide_channel_bar_summary_off">已顯示頻道欄</string>
+ <string name="revanced_hide_playables_title">隱藏遊戲角落</string>
+ <string name="revanced_hide_playables_summary_on">已隱藏遊戲角落</string>
+ <string name="revanced_hide_playables_summary_off">已顯示遊戲角落</string>
+ <string name="revanced_hide_quick_actions_title">隱藏全螢幕快捷功能欄</string>
+ <string name="revanced_hide_quick_actions_summary_on">已隱藏快捷功能欄</string>
+ <string name="revanced_hide_quick_actions_summary_off">已顯示快捷功能欄</string>
+ <string name="revanced_hide_related_videos_title">隱藏快捷功能欄相關影片</string>
+ <string name="revanced_hide_related_videos_summary_on">已隱藏相關影片</string>
+ <string name="revanced_hide_related_videos_summary_off">已顯示相關影片</string>
+ <string name="revanced_hide_image_shelf_title">在搜尋結果中隱藏圖片櫃</string>
+ <string name="revanced_hide_image_shelf_summary_on">已隱藏圖片櫃</string>
+ <string name="revanced_hide_image_shelf_summary_off">已顯示圖片櫃</string>
+ <string name="revanced_hide_latest_posts_ads_title">隱藏最新貼文</string>
+ <string name="revanced_hide_latest_posts_ads_summary_on">已隱藏最新貼文</string>
+ <string name="revanced_hide_latest_posts_ads_summary_off">已顯示最新貼文</string>
+ <string name="revanced_hide_mix_playlists_title">隱藏合輯</string>
+ <string name="revanced_hide_mix_playlists_summary_on">已隱藏合輯</string>
+ <string name="revanced_hide_mix_playlists_summary_off">已顯示合輯</string>
+ <string name="revanced_hide_artist_cards_title">隱藏藝人卡</string>
+ <string name="revanced_hide_artist_cards_summary_on">已隱藏藝人卡</string>
+ <string name="revanced_hide_artist_cards_summary_off">已顯示藝人卡</string>
+ <string name="revanced_hide_chips_shelf_title">隱藏章節櫃</string>
+ <string name="revanced_hide_chips_shelf_summary_on">已隱藏章節櫃</string>
+ <string name="revanced_hide_chips_shelf_summary_off">已顯示章節櫃</string>
+ <string name="revanced_hide_attributes_section_title">隱藏屬性區</string>
+ <string name="revanced_hide_attributes_section_summary_on">「特色地點」、遊戲和音樂區已隱藏</string>
+ <string name="revanced_hide_attributes_section_summary_off">「特色地點」、遊戲和音樂區已顯示</string>
+ <string name="revanced_hide_chapters_section_title">隱藏章節區</string>
+ <string name="revanced_hide_chapters_section_summary_on">章節區已隱藏</string>
+ <string name="revanced_hide_chapters_section_summary_off">章節區已顯示</string>
+ <string name="revanced_hide_podcast_section_title">隱藏「探索 podcast」區</string>
+ <string name="revanced_hide_podcast_section_summary_on">「探索 podcast」區已隱藏</string>
+ <string name="revanced_hide_podcast_section_summary_off">「探索 podcast」區已顯示</string>
+ <string name="revanced_hide_info_cards_section_title">隱藏資訊卡區</string>
+ <string name="revanced_hide_info_cards_section_summary_on">已隱藏資訊卡區</string>
+ <string name="revanced_hide_info_cards_section_summary_off">已顯示資訊卡區</string>
+ <string name="revanced_hide_transcript_section_title">隱藏文字紀錄區</string>
+ <string name="revanced_hide_transcript_section_summary_on">已隱藏字幕記錄區</string>
+ <string name="revanced_hide_transcript_section_summary_off">已顯示字幕記錄區</string>
+ <string name="revanced_hide_description_components_screen_title">影片描述欄</string>
+ <string name="revanced_hide_description_components_screen_summary">隱藏或顯示影片描述欄內容</string>
+ <string name="revanced_custom_filter_screen_title">自訂篩選器</string>
+ <string name="revanced_custom_filter_screen_summary">使用自訂篩選器隱藏欄位</string>
+ <string name="revanced_custom_filter_title">啟用自訂篩選器</string>
+ <string name="revanced_custom_filter_summary_on">已啟用自訂篩選器</string>
+ <string name="revanced_custom_filter_summary_off">已停用自訂篩選器</string>
+ <string name="revanced_custom_filter_strings_title">自訂篩選器</string>
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <string name="revanced_custom_filter_strings_summary">列出篩選的欄位路徑建構器字串,使用換行符號進行分隔</string>
+ <string name="revanced_custom_filter_toast_invalid_syntax">無效的自訂篩選器:%s</string>
+ <string name="revanced_hide_keyword_content_screen_title">隱藏關鍵字內容</string>
+ <string name="revanced_hide_keyword_content_screen_summary">使用關鍵字過濾器隱藏搜尋和動態消息影片</string>
+ <string name="revanced_hide_keyword_content_home_title">按關鍵字隱藏首頁影片</string>
+ <string name="revanced_hide_keyword_content_home_summary_on">已按關鍵字過濾首頁標籤影片</string>
+ <string name="revanced_hide_keyword_content_home_summary_off">未按關鍵字過濾首頁標籤影片</string>
+ <string name="revanced_hide_keyword_content_subscriptions_title">按關鍵字隱藏訂閱</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_on">已按關鍵字過濾訂閱標籤影片</string>
+ <string name="revanced_hide_keyword_content_subscriptions_summary_off">未按關鍵字過濾訂閱標籤影片</string>
+ <string name="revanced_hide_keyword_content_search_title">按關鍵字隱藏搜尋結果</string>
+ <string name="revanced_hide_keyword_content_search_summary_on">已按關鍵字過濾搜尋結果</string>
+ <string name="revanced_hide_keyword_content_search_summary_off">未按關鍵字過濾搜尋結果</string>
+ <string name="revanced_hide_keyword_content_phrases_title">隱藏關鍵字</string>
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ <string name="revanced_hide_keyword_content_phrases_summary">填要隱藏的關鍵字或一句話,以換行符號分隔\n\n中間有大小寫字母的單字必須使用大小寫輸入(舉例:iPhone、TikTok、LeBlanc)</string>
+ <string name="revanced_hide_keyword_content_about_title">關於關鍵字過濾</string>
+ <string name="revanced_hide_keyword_content_about_summary">首頁 / 訂閱 / 搜尋結果經過過濾以隱藏和關鍵字詞組相符的內容\n\n限制性\n• 一些 Shorts 可能不會被隱藏\n• 搜尋關鍵字可能不會顯示任何結果</string>
+ <string name="revanced_hide_keyword_toast_invalid_common">無效的關鍵字。無法使用:「%s」來過濾</string>
+ <string name="revanced_hide_keyword_toast_invalid_length">無效的關鍵字。「%1$s」小於 %2$d 字元</string>
+ <string name="revanced_hide_keyword_toast_invalid_broad">關鍵字「$s」將隱藏所有影片</string>
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <string name="revanced_hide_general_ads_title">隱藏一般廣告</string>
+ <string name="revanced_hide_general_ads_summary_on">已隱藏一般廣告</string>
+ <string name="revanced_hide_general_ads_summary_off">已顯示一般廣告</string>
+ <string name="revanced_hide_fullscreen_ads_title">隱藏全螢幕廣告</string>
+ <string name="revanced_hide_fullscreen_ads_summary_on">已隱藏全螢幕廣告\n\n此功能只能在舊裝置上使用</string>
+ <string name="revanced_hide_fullscreen_ads_summary_off">已顯示全螢幕廣告</string>
+ <string name="revanced_hide_buttoned_ads_title">隱藏按鈕廣告</string>
+ <string name="revanced_hide_buttoned_ads_summary_on">已隱藏按鈕廣告</string>
+ <string name="revanced_hide_buttoned_ads_summary_off">已顯示按鈕廣告</string>
+ <string name="revanced_hide_paid_promotion_label_title">隱藏付費推廣標籤</string>
+ <string name="revanced_hide_paid_promotion_label_summary_on">已隱藏付費推廣標籤</string>
+ <string name="revanced_hide_paid_promotion_label_summary_off">已顯示付費推廣標籤</string>
+ <string name="revanced_hide_self_sponsor_ads_title">隱藏自我宣傳卡</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_on">已隱藏自我推銷卡</string>
+ <string name="revanced_hide_self_sponsor_ads_summary_off">已顯示自我推銷卡</string>
+ <string name="revanced_hide_products_banner_title">隱藏檢視產品橫幅</string>
+ <string name="revanced_hide_products_banner_summary_on">已隱藏橫幅</string>
+ <string name="revanced_hide_products_banner_summary_off">已顯示橫幅</string>
+ <string name="revanced_hide_shopping_links_title">隱藏影片描述欄商店連結</string>
+ <string name="revanced_hide_shopping_links_summary_on">已隱藏商店連結</string>
+ <string name="revanced_hide_shopping_links_summary_off">已顯示商店連結</string>
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_visit_store_button_title">在頻道頁面中隱藏「造訪商店」</string>
+ <string name="revanced_hide_visit_store_button_summary_on">已隱藏按鈕</string>
+ <string name="revanced_hide_visit_store_button_summary_off">已顯示按鈕</string>
+ <string name="revanced_hide_web_search_results_title">隱藏網頁搜尋結果</string>
+ <string name="revanced_hide_web_search_results_summary_on">已隱藏網頁搜尋結果</string>
+ <string name="revanced_hide_web_search_results_summary_off">已顯示網頁搜尋結果</string>
+ <string name="revanced_hide_merchandise_banners_title">隱藏商品橫幅</string>
+ <string name="revanced_hide_merchandise_banners_summary_on">已隱藏商品橫幅</string>
+ <string name="revanced_hide_merchandise_banners_summary_off">已顯示商品橫幅</string>
+ <string name="revanced_hide_fullscreen_ads_feature_not_available_toast">只能在舊裝置上使用隱藏全螢幕廣告</string>
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ <string name="revanced_hide_get_premium_title">隱藏 YouTube Premium 推廣</string>
+ <string name="revanced_hide_get_premium_summary_on">已隱藏影片播放器底下的 YouTube Premium 推廣</string>
+ <string name="revanced_hide_get_premium_summary_off">已顯示影片播放器底下的 YouTube Premium 推廣</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_hide_video_ads_title">隱藏影片廣告</string>
+ <string name="revanced_hide_video_ads_summary_on">已隱藏影片廣告</string>
+ <string name="revanced_hide_video_ads_summary_off">已顯示影片廣告</string>
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ <string name="revanced_share_copy_url_success">已複製 URL 到剪貼簿</string>
+ <string name="revanced_share_copy_url_timestamp_success">已複製時間戳記 URL</string>
+ <string name="revanced_copy_video_url_title">顯示複製影片 URL 按鈕</string>
+ <string name="revanced_copy_video_url_summary_on">已顯示按鈕。點擊複製影片 URL。點擊並按住複製帶有時間戳記的影片 URL</string>
+ <string name="revanced_copy_video_url_summary_off">未顯示按鈕</string>
+ <string name="revanced_copy_video_url_timestamp_title">顯示複製時間戳記 URL 按鈕</string>
+ <string name="revanced_copy_video_url_timestamp_summary_on">已顯示按鈕。點擊複製帶有時間戳記的影片 URL。點擊並按住以在沒有時間戳記的情況下複製影片</string>
+ <string name="revanced_copy_video_url_timestamp_summary_off">未顯示按鈕</string>
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ <string name="revanced_remove_viewer_discretion_dialog_title">移除謹慎觀看對話框</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_on">將移除對話框</string>
+ <string name="revanced_remove_viewer_discretion_dialog_summary_off">將顯示對話框</string>
+ <string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">此功能無法繞過年齡限制。它只是自動按下確認。</string>
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <string name="revanced_external_downloader_screen_title">外部下載</string>
+ <string name="revanced_external_downloader_screen_summary">使用外部下載器的設定</string>
+ <string name="revanced_external_downloader_title">顯示外部下載按鈕</string>
+ <string name="revanced_external_downloader_summary_on">在播放器中顯示下載按鈕</string>
+ <string name="revanced_external_downloader_summary_off">不在播放器中顯示下載按鈕</string>
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ <string name="revanced_external_downloader_action_button_title">覆蓋下載動作按鈕</string>
+ <string name="revanced_external_downloader_action_button_summary_on">下載按鈕將開啟您的外部下載器</string>
+ <string name="revanced_external_downloader_action_button_summary_off">下載按鈕開啟原生應用程式下載器</string>
+ <string name="revanced_external_downloader_name_title">下載器套件名稱</string>
+ <string name="revanced_external_downloader_name_summary">已安裝的外部下載程式的套件名稱,例如 NewPipe 或 Seal</string>
+ <string name="revanced_external_downloader_not_installed_warning">未安裝 %s。請前往安裝。</string>
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ <string name="revanced_disable_precise_seeking_gesture_title">停用精確搜尋手勢</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_on">已停用手勢</string>
+ <string name="revanced_disable_precise_seeking_gesture_summary_off">已啟用手勢</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ <string name="revanced_seekbar_tapping_title">啟用進度條點擊</string>
+ <string name="revanced_seekbar_tapping_summary_on">已啟用進度條點擊</string>
+ <string name="revanced_seekbar_tapping_summary_off">已停用進度條點擊</string>
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ <string name="revanced_swipe_brightness_title">啟用亮度手勢</string>
+ <string name="revanced_swipe_brightness_summary_on">已啟用亮度滑動</string>
+ <string name="revanced_swipe_brightness_summary_off">已停用亮度滑動</string>
+ <string name="revanced_swipe_volume_title">啟用音量手勢</string>
+ <string name="revanced_swipe_volume_summary_on">已啟用音量滑動</string>
+ <string name="revanced_swipe_volume_summary_off">已停用音量滑動</string>
+ <string name="revanced_swipe_press_to_engage_title">啟用長按滑動手勢</string>
+ <string name="revanced_swipe_press_to_engage_summary_on">已啟用長按滑動</string>
+ <string name="revanced_swipe_press_to_engage_summary_off">已停用長按滑動</string>
+ <string name="revanced_swipe_haptic_feedback_title">啟用震動回饋</string>
+ <string name="revanced_swipe_haptic_feedback_summary_on">已啟用震動回饋</string>
+ <string name="revanced_swipe_haptic_feedback_summary_off">已停用震動回饋</string>
+ <string name="revanced_swipe_save_and_restore_brightness_title">儲存並還原亮度</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_on">當離開或進入全螢幕時,儲存並還原亮度</string>
+ <string name="revanced_swipe_save_and_restore_brightness_summary_off">當離開或進入全螢幕時,不儲存並還原亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_title">啟用自動亮度手勢</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_on">滑動至亮度手勢最低點以啟用自動亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_summary_off">滑動至亮度手勢最低點不啟用自動亮度</string>
+ <string name="revanced_swipe_lowest_value_enable_auto_brightness_overlay_text">自動</string>
+ <string name="revanced_swipe_overlay_timeout_title">滑動覆蓋超時</string>
+ <string name="revanced_swipe_overlay_timeout_summary">覆蓋顯示毫秒數</string>
+ <string name="revanced_swipe_text_overlay_size_title">滑動覆蓋文字大小</string>
+ <string name="revanced_swipe_text_overlay_size_summary">滑動覆蓋的文字大小</string>
+ <string name="revanced_swipe_overlay_background_alpha_title">滑動背景透明度</string>
+ <string name="revanced_swipe_overlay_background_alpha_summary">滑動覆蓋背景透明度</string>
+ <string name="revanced_swipe_threshold_title">滑動幅度臨界點</string>
+ <string name="revanced_swipe_threshold_summary">滑動幅度臨界點</string>
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ <string name="revanced_auto_captions_title">停用自動產生字幕</string>
+ <string name="revanced_auto_captions_summary_on">已停用自動產生字幕</string>
+ <string name="revanced_auto_captions_summary_off">已啟用自動產生字幕</string>
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <string name="revanced_hide_buttons_screen_title">動作按鈕</string>
+ <string name="revanced_hide_buttons_screen_summary">隱藏或顯示影片下方的按鈕</string>
+ <string name="revanced_hide_like_dislike_button_title">隱藏喜歡和不喜歡數</string>
+ <string name="revanced_hide_like_dislike_button_summary_on">已隱藏喜歡和不喜歡按鈕</string>
+ <string name="revanced_hide_like_dislike_button_summary_off">已顯示喜歡和不喜歡按鈕</string>
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_share_button_title">隱藏分享</string>
+ <string name="revanced_hide_share_button_summary_on">已隱藏分享按鈕</string>
+ <string name="revanced_hide_share_button_summary_off">已顯示分享按鈕</string>
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <string name="revanced_hide_report_button_title">隱藏檢舉</string>
+ <string name="revanced_hide_report_button_summary_on">已隱藏檢舉按鈕</string>
+ <string name="revanced_hide_report_button_summary_off">已顯示檢舉按鈕</string>
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_remix_button_title">隱藏重混</string>
+ <string name="revanced_hide_remix_button_summary_on">已隱藏重混</string>
+ <string name="revanced_hide_remix_button_summary_off">已顯示重混</string>
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_download_button_title">隱藏下載</string>
+ <string name="revanced_hide_download_button_summary_on">已隱藏下載按鈕</string>
+ <string name="revanced_hide_download_button_summary_off">已顯示下載按鈕</string>
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_thanks_button_title">隱藏超級感謝</string>
+ <string name="revanced_hide_thanks_button_summary_on">已隱藏超級感謝按鈕</string>
+ <string name="revanced_hide_thanks_button_summary_off">已顯示超級感謝按鈕</string>
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_clip_button_title">隱藏剪輯片段</string>
+ <string name="revanced_hide_clip_button_summary_on">已隱藏剪輯片段按鈕</string>
+ <string name="revanced_hide_clip_button_summary_off">已顯示剪輯片段按鈕</string>
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ <string name="revanced_hide_playlist_button_title">隱藏儲存到播放列表</string>
+ <string name="revanced_hide_playlist_button_summary_on">已隱藏儲存到播放列表</string>
+ <string name="revanced_hide_playlist_button_summary_off">已顯示儲存到播放列表</string>
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ <string name="revanced_hide_autoplay_button_title">隱藏自動播放按鈕</string>
+ <string name="revanced_hide_autoplay_button_summary_on">已隱藏自動播放按鈕</string>
+ <string name="revanced_hide_autoplay_button_summary_off">已顯示自動播放按鈕</string>
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ <string name="revanced_hide_captions_button_title">隱藏字幕按鈕</string>
+ <string name="revanced_hide_captions_button_summary_on">已隱藏字幕按鈕</string>
+ <string name="revanced_hide_captions_button_summary_off">已顯示字幕按鈕</string>
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ <string name="revanced_hide_cast_button_title">隱藏投放按鈕</string>
+ <string name="revanced_hide_cast_button_summary_on">投放按鈕已隱藏</string>
+ <string name="revanced_hide_cast_button_summary_off">投放按鈕已顯示</string>
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <string name="revanced_navigation_buttons_screen_title">導覽列按鈕</string>
+ <string name="revanced_navigation_buttons_screen_summary">隱藏或變更導覽區按鈕</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <string name="revanced_hide_home_button_title">隱藏首頁</string>
+ <string name="revanced_hide_home_button_summary_on">已隱藏首頁按鈕</string>
+ <string name="revanced_hide_home_button_summary_off">已顯示首頁按鈕</string>
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_shorts_button_title">隱藏 Shorts</string>
+ <string name="revanced_hide_shorts_button_summary_on">已隱藏 Shorts 按鈕</string>
+ <string name="revanced_hide_shorts_button_summary_off">已顯示 Shorts 按鈕</string>
+ <!-- The Create button has no display name. Translate normally. -->
+ <string name="revanced_hide_create_button_title">隱藏建立</string>
+ <string name="revanced_hide_create_button_summary_on">已隱藏建立按鈕</string>
+ <string name="revanced_hide_create_button_summary_off">已顯示建立按鈕</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_hide_subscriptions_button_title">隱藏訂閱</string>
+ <string name="revanced_hide_subscriptions_button_summary_on">已隱藏訂閱按鈕</string>
+ <string name="revanced_hide_subscriptions_button_summary_off">已顯示訂閱按鈕</string>
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ <string name="revanced_switch_create_with_notifications_button_title">切換建立為通知</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_on">「建立」按鈕已經與「通知」按鈕對調 \n\n 注意:啟用此功能還會強制隱藏影片廣告。</string>
+ <string name="revanced_switch_create_with_notifications_button_summary_off">未更換建立按鈕為通知按鈕</string>
+ <string name="revanced_hide_navigation_button_labels_title">隱藏導覽列按鈕標籤</string>
+ <string name="revanced_hide_navigation_button_labels_summary_on">已隱藏標籤</string>
+ <string name="revanced_hide_navigation_button_labels_summary_off">已顯示標籤</string>
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <string name="revanced_hide_player_flyout_title">介面選單</string>
+ <string name="revanced_hide_player_flyout_summary">隱藏或顯示播放器彈出式選單</string>
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_captions_title">隱藏字幕</string>
+ <string name="revanced_hide_player_flyout_captions_summary_on">已隱藏字幕選項</string>
+ <string name="revanced_hide_player_flyout_captions_summary_off">已顯示字幕選單</string>
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_additional_settings_title">隱藏其他設定</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_on">已隱藏其他設定</string>
+ <string name="revanced_hide_player_flyout_additional_settings_summary_off">已顯示其他設定</string>
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_loop_video_title">隱藏循環播放影片</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_on">已隱藏循環播放選項</string>
+ <string name="revanced_hide_player_flyout_loop_video_summary_off">已顯示循環播放選單</string>
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_ambient_mode_title">隱藏微光效果</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_on">已隱藏微光模式選項</string>
+ <string name="revanced_hide_player_flyout_ambient_mode_summary_off">已顯示微光效果模式</string>
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_help_title">隱藏說明和意見回饋</string>
+ <string name="revanced_hide_player_flyout_help_summary_on">已隱藏說明與回饋選單</string>
+ <string name="revanced_hide_player_flyout_help_summary_off">已顯示說明與回饋選單</string>
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_speed_title">隱藏播放速度</string>
+ <string name="revanced_hide_player_flyout_speed_summary_on">已隱藏播放速度選單</string>
+ <string name="revanced_hide_player_flyout_speed_summary_off">已顯示播放速度選單</string>
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <string name="revanced_hide_player_flyout_more_info_title">隱藏更多資訊</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_on">已隱藏更多資訊</string>
+ <string name="revanced_hide_player_flyout_more_info_summary_off">已顯示更多資訊</string>
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_lock_screen_title">隱藏鎖定螢幕</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_on">已隱藏鎖定螢幕選單</string>
+ <string name="revanced_hide_player_flyout_lock_screen_summary_off">已顯示鎖定螢幕選單</string>
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_audio_track_title">隱藏音軌</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_on">已隱藏音軌選單</string>
+ <string name="revanced_hide_player_flyout_audio_track_summary_off">已顯示音軌選單</string>
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <string name="revanced_hide_player_flyout_watch_in_vr_title">隱藏在 VR 觀看</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_on">已隱藏在 VR 觀看</string>
+ <string name="revanced_hide_player_flyout_watch_in_vr_summary_off">已顯示在 VR 觀看</string>
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ <string name="revanced_hide_player_buttons_title">隱藏上一部和下一部影片按紐</string>
+ <string name="revanced_hide_player_buttons_summary_on">已隱藏按鈕</string>
+ <string name="revanced_hide_player_buttons_summary_off">已顯示按鈕</string>
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ <string name="revanced_hide_album_cards_title">隱藏專輯卡</string>
+ <string name="revanced_hide_album_cards_summary_on">已隱藏專輯卡</string>
+ <string name="revanced_hide_album_cards_summary_off">已顯示專輯卡</string>
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ <string name="revanced_comments_screen_title">留言區</string>
+ <string name="revanced_comments_screen_summary">隱藏或顯示影片留言區內容</string>
+ <string name="revanced_hide_comments_by_members_header_title">隱藏「會員留言」標題</string>
+ <string name="revanced_hide_comments_by_members_header_summary_on">已隱藏「會員留言」標題</string>
+ <string name="revanced_hide_comments_by_members_header_summary_off">已顯示「會員留言」標題</string>
+ <string name="revanced_hide_comments_section_title">隱藏留言區</string>
+ <string name="revanced_hide_comments_section_summary_on">已隱藏留言區塊</string>
+ <string name="revanced_hide_comments_section_summary_off">已顯示留言區塊</string>
+ <string name="revanced_hide_comments_create_a_short_button_title">隱藏「建立 Short」按鈕</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_on">「建立 Short」按鈕已隱藏</string>
+ <string name="revanced_hide_comments_create_a_short_button_summary_off">「建立Short」按鈕已顯示</string>
+ <string name="revanced_hide_comments_preview_comment_title">隱藏留言預覽</string>
+ <string name="revanced_hide_comments_preview_comment_summary_on">已隱藏留言預覽</string>
+ <string name="revanced_hide_comments_preview_comment_summary_off">已顯示留言預覽</string>
+ <string name="revanced_hide_comments_thanks_button_title">隱藏超級感謝按鈕</string>
+ <string name="revanced_hide_comments_thanks_button_summary_on">已隱藏超級感謝按鈕</string>
+ <string name="revanced_hide_comments_thanks_button_summary_off">已顯示超級感謝按鈕</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_title">隱藏時間戳記和表情按鈕</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_on">時間戳記和表情符號按鈕已隱藏</string>
+ <string name="revanced_hide_comments_timestamp_and_emoji_buttons_summary_off">時間戳記和表情符號按鈕已顯示</string>
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ <string name="revanced_hide_crowdfunding_box_title">隱藏群眾募資</string>
+ <string name="revanced_hide_crowdfunding_box_summary_on">已隱藏群眾募資</string>
+ <string name="revanced_hide_crowdfunding_box_summary_off">已顯示群眾募資</string>
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ <string name="revanced_hide_endscreen_cards_title">隱藏片尾資訊卡</string>
+ <string name="revanced_hide_endscreen_cards_summary_on">已隱藏片尾資訊卡</string>
+ <string name="revanced_hide_endscreen_cards_summary_off">已顯示片尾資訊卡</string>
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ <string name="revanced_hide_filter_bar_screen_title">篩選列</string>
+ <string name="revanced_hide_filter_bar_screen_summary">隱藏或顯示動態消息、搜尋、相關影片篩選列</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_title">在動態消息中隱藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_on">在動態消息中隱藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_feed_summary_off">在動態消息中顯示</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_title">在搜尋中隱藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_on">在搜尋中隱藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_search_summary_off">在搜尋中顯示</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_title">隱藏相關影片</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_on">在相關影片中隱藏</string>
+ <string name="revanced_hide_filter_bar_feed_in_related_videos_summary_off">在相關影片中顯示</string>
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ <string name="revanced_hide_floating_microphone_button_title">隱藏語音辨識按鈕</string>
+ <string name="revanced_hide_floating_microphone_button_summary_on">已隱藏語音辨識按鈕</string>
+ <string name="revanced_hide_floating_microphone_button_summary_off">已顯示語音辨識按鈕</string>
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ <string name="revanced_disable_fullscreen_ambient_mode_title">在全螢幕狀態下停用微光效果</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_on">已停用微光效果</string>
+ <string name="revanced_disable_fullscreen_ambient_mode_summary_off">已啟用微光效果</string>
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ <string name="revanced_hide_info_cards_title">隱藏資訊卡</string>
+ <string name="revanced_hide_info_cards_summary_on">已隱藏資訊卡</string>
+ <string name="revanced_hide_info_cards_summary_off">已顯示資訊卡</string>
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ <string name="revanced_disable_rolling_number_animations_title">停用數字滾動動畫</string>
+ <string name="revanced_disable_rolling_number_animations_summary_on">非動畫滾動數字</string>
+ <string name="revanced_disable_rolling_number_animations_summary_off">動畫滾動數字</string>
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ <string name="revanced_hide_seekbar_title">在影片播放器中隱藏跳轉列進度條</string>
+ <string name="revanced_hide_seekbar_summary_on">已隱藏影片播放器進度條</string>
+ <string name="revanced_hide_seekbar_summary_off">已顯示影片播放器進度條</string>
+ <string name="revanced_hide_seekbar_thumbnail_title">在縮圖中隱藏進度條</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_on">已隱藏縮圖跳轉列</string>
+ <string name="revanced_hide_seekbar_thumbnail_summary_off">已顯示縮圖進度條</string>
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_hide_shorts_home_title">隱藏 Shorts 首頁動態消息</string>
+ <string name="revanced_hide_shorts_home_summary_on">已在首頁動態影片中隱藏 Shorts</string>
+ <string name="revanced_hide_shorts_home_summary_off">已在首頁動態影片中顯示 Shorts</string>
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_hide_shorts_subscriptions_title">隱藏 Shorts 訂閱內容動態消息</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_on">已在訂閱動態影片中隱藏 Shorts</string>
+ <string name="revanced_hide_shorts_subscriptions_summary_off">已在訂閱動態影片中顯示 Shorts</string>
+ <string name="revanced_hide_shorts_search_title">隱藏 Shorts 搜尋結果</string>
+ <string name="revanced_hide_shorts_search_summary_on">已在搜尋結果中隱藏 Shorts</string>
+ <string name="revanced_hide_shorts_search_summary_off">已在搜尋結果中顯示 Shorts</string>
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_join_button_title">隱藏加入按鈕</string>
+ <string name="revanced_hide_shorts_join_button_summary_on">已隱藏加入按鈕</string>
+ <string name="revanced_hide_shorts_join_button_summary_off">已顯示加入按鈕</string>
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_subscribe_button_title">隱藏訂閱按鈕</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_on">已隱藏訂閱按鈕</string>
+ <string name="revanced_hide_shorts_subscribe_button_summary_off">已顯示訂閱按鈕</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_title">隱藏暫停覆蓋按鈕</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_on">已隱藏暫停覆蓋按鈕</string>
+ <string name="revanced_hide_shorts_paused_overlay_buttons_summary_off">已顯示暫停覆蓋按鈕</string>
+ <string name="revanced_hide_shorts_shop_button_title">隱藏商店按鈕</string>
+ <string name="revanced_hide_shorts_shop_button_summary_on">已隱藏商店按鈕</string>
+ <string name="revanced_hide_shorts_shop_button_summary_off">已顯示商店按鈕</string>
+ <string name="revanced_hide_shorts_super_thanks_button_title">隱藏 [超級感謝] 按鈕</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_on">已隱藏 [超級感謝] 按鈕</string>
+ <string name="revanced_hide_shorts_super_thanks_button_summary_off">已顯示 [超級感謝] 按鈕</string>
+ <string name="revanced_hide_shorts_tagged_products_title">隱藏標記產品</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_on">已隱藏標記產品</string>
+ <string name="revanced_hide_shorts_tagged_products_summary_off">已顯示標記產品</string>
+ <string name="revanced_hide_shorts_location_label_title">隱藏地區標籤</string>
+ <string name="revanced_hide_shorts_location_label_summary_on">已隱藏地區標籤</string>
+ <string name="revanced_hide_shorts_location_label_summary_off">已顯示地區標籤</string>
+ <string name="revanced_hide_shorts_save_sound_button_title">隱藏儲存音訊到播放清單按鈕</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_on">已隱藏儲存音訊到播放清單按鈕</string>
+ <string name="revanced_hide_shorts_save_sound_button_summary_off">已顯示儲存音訊到播放清單按鈕</string>
+ <string name="revanced_hide_shorts_search_suggestions_title">隱藏搜尋建議</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_on">已隱藏搜尋建議</string>
+ <string name="revanced_hide_shorts_search_suggestions_summary_off">已顯示搜尋建議</string>
+ <string name="revanced_hide_shorts_like_button_title">隱藏喜歡按鈕</string>
+ <string name="revanced_hide_shorts_like_button_summary_on">已隱藏按讚按鈕</string>
+ <string name="revanced_hide_shorts_like_button_summary_off">已顯示喜歡按鈕</string>
+ <string name="revanced_hide_shorts_dislike_button_title">隱藏不喜歡按鈕</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_on">已隱藏不喜歡按鈕</string>
+ <string name="revanced_hide_shorts_dislike_button_summary_off">已顯示不喜歡按鈕</string>
+ <string name="revanced_hide_shorts_comments_button_title">隱藏留言區按鈕</string>
+ <string name="revanced_hide_shorts_comments_button_summary_on">已隱藏留言按鈕</string>
+ <string name="revanced_hide_shorts_comments_button_summary_off">已顯示留言按鈕</string>
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_remix_button_title">隱藏重混按鈕</string>
+ <string name="revanced_hide_shorts_remix_button_summary_on">已隱藏重混</string>
+ <string name="revanced_hide_shorts_remix_button_summary_off">已顯示重混</string>
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ <string name="revanced_hide_shorts_share_button_title">隱藏分享按鈕</string>
+ <string name="revanced_hide_shorts_share_button_summary_on">已隱藏分享按鈕</string>
+ <string name="revanced_hide_shorts_share_button_summary_off">已顯示分享按鈕</string>
+ <string name="revanced_hide_shorts_info_panel_title">隱藏資訊面板</string>
+ <string name="revanced_hide_shorts_info_panel_summary_on">已隱藏資訊面板</string>
+ <string name="revanced_hide_shorts_info_panel_summary_off">已顯示資訊面板</string>
+ <string name="revanced_hide_shorts_channel_bar_title">隱藏頻道欄</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_on">已隱藏頻道欄</string>
+ <string name="revanced_hide_shorts_channel_bar_summary_off">已顯示頻道欄</string>
+ <string name="revanced_hide_shorts_video_title_title">隱藏影片標題</string>
+ <string name="revanced_hide_shorts_video_title_summary_on">已隱藏標題</string>
+ <string name="revanced_hide_shorts_video_title_summary_off">已顯示標題</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_title">隱藏聲音元資料標籤</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_on">已隱藏元資料標籤</string>
+ <string name="revanced_hide_shorts_sound_metadata_label_summary_off">已顯示元資料標籤</string>
+ <string name="revanced_hide_shorts_full_video_link_label_title">隱藏完整影片連結標籤</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_on">已隱藏影片連結標籤</string>
+ <string name="revanced_hide_shorts_full_video_link_label_summary_off">已顯示影片連結標籤</string>
+ <string name="revanced_hide_shorts_sound_button_title">隱藏聲音按鈕</string>
+ <string name="revanced_hide_shorts_sound_button_summary_on">已隱藏聲音按鈕</string>
+ <string name="revanced_hide_shorts_sound_button_summary_off">已顯示聲音按鈕</string>
+ <string name="revanced_hide_shorts_navigation_bar_title">隱藏導覽區</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_on">已隱藏導覽區</string>
+ <string name="revanced_hide_shorts_navigation_bar_summary_off">已顯示導覽區</string>
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ <string name="revanced_disable_suggested_video_end_screen_title">停用片尾建議影片</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_on">將停用建議影片</string>
+ <string name="revanced_disable_suggested_video_end_screen_summary_off">將顯示建議影片</string>
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ <string name="revanced_hide_timestamp_title">隱藏影片時間戳記</string>
+ <string name="revanced_hide_timestamp_summary_on">已隱藏時間戳記</string>
+ <string name="revanced_hide_timestamp_summary_off">已顯示時間戳記</string>
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ <string name="revanced_hide_player_popup_panels_title">隱藏播放器彈出面板</string>
+ <string name="revanced_hide_player_popup_panels_summary_on">已隱藏播放器彈出面板</string>
+ <string name="revanced_hide_player_popup_panels_summary_off">已顯示播放器彈出面板</string>
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ <string name="revanced_player_overlay_opacity_title">播放器覆蓋透明度</string>
+ <string name="revanced_player_overlay_opacity_summary">不透明度值介於 0-100 之間,0 為透明</string>
+ <string name="revanced_player_overlay_opacity_invalid_toast">播放器覆蓋層的不透明度必須在 0-100 之間</string>
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <string name="revanced_ryd_video_likes_hidden_by_video_owner">已隱藏</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_ryd_failure_connection_timeout">暫時無法使用不喜歡數(API 超時)</string>
+ <string name="revanced_ryd_failure_connection_status_code">無法使用不喜歡數(狀態 %d)</string>
+ <string name="revanced_ryd_failure_client_rate_limit_requested">無法使用不喜歡數(已達到用戶端 API 限制)</string>
+ <string name="revanced_ryd_failure_generic">無法使用不喜歡數(%s)</string>
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">重新載入影片以使用 Return YouTube Dislike 進行投票</string>
+ <string name="revanced_ryd_enable_summary_on">已顯示不喜歡數</string>
+ <string name="revanced_ryd_enable_summary_off">未顯示不喜歡數</string>
+ <string name="revanced_ryd_shorts_title">在 Shorts 中顯示不喜歡數</string>
+ <string name="revanced_ryd_shorts_summary_on">已在 Shorts 中顯示不喜歡數</string>
+ <string name="revanced_ryd_shorts_summary_on_disclaimer">顯示 Shorts 不喜歡數\n\n限制性:在無痕模式中可能不會出現不喜歡數</string>
+ <string name="revanced_ryd_shorts_summary_off">已在 Shorts 中隱藏不喜歡數</string>
+ <string name="revanced_ryd_dislike_percentage_title">比例不喜歡數</string>
+ <string name="revanced_ryd_dislike_percentage_summary_on">顯示不喜歡數為比例</string>
+ <string name="revanced_ryd_dislike_percentage_summary_off">顯示不喜歡數為數字</string>
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <string name="revanced_ryd_compact_layout_title">小型喜歡按鈕</string>
+ <string name="revanced_ryd_compact_layout_summary_on">喜歡按鈕的最小寬度</string>
+ <string name="revanced_ryd_compact_layout_summary_off">喜歡按鈕的最佳外觀</string>
+ <string name="revanced_ryd_toast_on_connection_error_title">若 API 無法使用,顯示提示</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_on">若 Return YouTube Dislike 無法使用,顯示提示</string>
+ <string name="revanced_ryd_toast_on_connection_error_summary_off">若 Return YouTube Dislike 無法使用,不顯示提示</string>
+ <string name="revanced_ryd_about">關於</string>
+ <string name="revanced_ryd_attribution_summary">資料由 Return YouTube Dislike API 提供。點選瞭解更多資訊</string>
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ <string name="revanced_ryd_statistics_category_title">回傳此裝置的 ReturnYouTubeDislike API 統計資料</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeAverage_title">平均 API 回應時間</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMin_title">最短 API 回應時間</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeMax_title">最長 API 回應時間</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_title">最後一個影片的 API 回應時間</string>
+ <string name="revanced_ryd_statistics_getFetchCallResponseTimeLast_rate_limit_summary">暫時無法使用不喜歡數 - 用戶端 API 頻率限制已生效</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_title">API 取得投票呼叫數</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_zero_summary">沒有進行網路調用</string>
+ <string name="revanced_ryd_statistics_getFetchCallCount_non_zero_summary">進行了 %d 次網路調用</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_title">API取得投票超時數</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_zero_summary">無網路呼叫逾時</string>
+ <string name="revanced_ryd_statistics_getFetchCallNumberOfFailures_non_zero_summary">%d 個網路呼叫逾時</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_title">API 客戶端頻率限制</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_zero_summary">未遇到用戶端頻率限制</string>
+ <string name="revanced_ryd_statistics_getNumberOfRateLimitRequestsEncountered_non_zero_summary">遇到 %d 次用戶端頻率限制</string>
+ <string name="revanced_ryd_statistics_millisecond_text">%d 毫秒</string>
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ <string name="revanced_wide_searchbar_title">啟用寬搜尋列</string>
+ <string name="revanced_wide_searchbar_summary_on">已啟用寬搜尋列</string>
+ <string name="revanced_wide_searchbar_summary_off">已停用寬搜尋列</string>
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ <string name="revanced_restore_old_seekbar_thumbnails_title">還原舊版進度條縮圖</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_on">進度條縮圖將出現在進度條上</string>
+ <string name="revanced_restore_old_seekbar_thumbnails_summary_off">進度條縮圖將出現在全螢幕畫面</string>
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <string name="revanced_sb_enable_sb">啟用 SponsorBlock</string>
+ <string name="revanced_sb_enable_sb_sum">SponsorBlock 是透過使用者共同編輯新增片段來跳過 YouTube 的擾人片段</string>
+ <string name="revanced_sb_appearance_category">外觀</string>
+ <string name="revanced_sb_enable_voting">顯示投票按鈕</string>
+ <string name="revanced_sb_enable_voting_sum_on">已顯示片段投票按鈕</string>
+ <string name="revanced_sb_enable_voting_sum_off">未顯示片段投票按鈕</string>
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <string name="revanced_sb_enable_compact_skip_button">使用小型跳過按鈕</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_on">跳過按鈕的最小寬度</string>
+ <string name="revanced_sb_enable_compact_skip_button_sum_off">跳過按鈕的最佳外觀</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button">自動隱藏跳過按鈕</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_on">在幾秒過後隱藏跳過按鈕</string>
+ <string name="revanced_sb_enable_auto_hide_skip_segment_button_sum_off">為整個片段顯示跳過按鈕</string>
+ <string name="revanced_sb_general_skiptoast">自動跳過時顯示提示</string>
+ <string name="revanced_sb_general_skiptoast_sum_on">已顯示在片段被自動跳過時的提示。點擊此處來查看範例</string>
+ <string name="revanced_sb_general_skiptoast_sum_off">未顯示提示。點擊此處來查看範例</string>
+ <string name="revanced_sb_general_time_without">顯示不包含被略過片段的時間戳記</string>
+ <string name="revanced_sb_general_time_without_sum_on">將被略過片段減去的時間戳括號後,顯示於完整時間戳記旁邊</string>
+ <string name="revanced_sb_general_time_without_sum_off">只顯示完整的時間戳記</string>
+ <string name="revanced_sb_create_segment_category">建立新片段</string>
+ <string name="revanced_sb_enable_create_segment">顯示建立片段按鈕</string>
+ <string name="revanced_sb_enable_create_segment_sum_on">已顯示建立片段按鈕</string>
+ <string name="revanced_sb_enable_create_segment_sum_off">未顯示建立片段按鈕</string>
+ <string name="revanced_sb_general_adjusting">調整新略過片段的時間長度</string>
+ <string name="revanced_sb_general_adjusting_sum">建立新片段之時間調整按鈕移動的毫秒數</string>
+ <string name="revanced_sb_general_adjusting_invalid">值必須為正數</string>
+ <string name="revanced_sb_guidelines_preference_title">檢視規範</string>
+ <string name="revanced_sb_guidelines_preference_sum">規範包含有關送出片段的提示和規則</string>
+ <string name="revanced_sb_guidelines_popup_title">跟隨規範</string>
+ <string name="revanced_sb_guidelines_popup_content">建議在送出任何片段前先閱讀 SponsorBlock 指南</string>
+ <string name="revanced_sb_guidelines_popup_already_read">已閱讀</string>
+ <string name="revanced_sb_guidelines_popup_open">顯示</string>
+ <string name="revanced_sb_general">一般</string>
+ <string name="revanced_sb_toast_on_connection_error_title">若 API 無法使用,顯示提示</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_on">若 SponsorBlock 無法使用時,顯示提示</string>
+ <string name="revanced_sb_toast_on_connection_error_summary_off">若 SponsorBlock 無法使用時,不顯示提示</string>
+ <string name="revanced_sb_general_skipcount">啟用跳過次數追蹤</string>
+ <string name="revanced_sb_general_skipcount_sum_on">讓 SponsorBlock 排行榜記錄您節省了多少時間。每跳過一個片段時,都會向排行榜傳送一則訊息</string>
+ <string name="revanced_sb_general_skipcount_sum_off">未啟用跳過次數追蹤</string>
+ <string name="revanced_sb_general_min_duration">最短片段時長</string>
+ <string name="revanced_sb_general_min_duration_sum">小於設定值(以秒為單位)的片段不會被跳過或在播放器中顯示</string>
+ <string name="revanced_sb_general_uuid">您的個人使用者 ID</string>
+ <string name="revanced_sb_general_uuid_sum">這應該被保密。這就像一個密碼,不應該與他人分享。如果有人擁有它,他們就可以冒充您</string>
+ <string name="revanced_sb_general_uuid_invalid">個人使用者 ID 必須至少有 30 字元長</string>
+ <string name="revanced_sb_general_api_url">變更 API URL</string>
+ <string name="revanced_sb_general_api_url_sum">SponsorBlock 用來和伺服器互動的地址</string>
+ <string name="revanced_sb_api_url_reset">重設 API URL</string>
+ <string name="revanced_sb_api_url_invalid">無效的 API URL</string>
+ <string name="revanced_sb_api_url_changed">已變更 API URL</string>
+ <string name="revanced_sb_settings_ie">匯入 / 匯出設定</string>
+ <string name="revanced_sb_settings_copy">複製</string>
+ <string name="revanced_sb_settings_ie_sum">您的 SponsorBlock JSON 設定可以匯入 / 匯出到 ReVanced 和其它 SponsorBlock 平台</string>
+ <string name="revanced_sb_settings_ie_sum_warning">您的 SponsorBlock JSON 設定可以匯入 / 匯出到 ReVanced 和其它 SponsorBlock 平台。此檔案將包含您的個人使用者 ID。請小心使用。</string>
+ <string name="revanced_sb_settings_import_successful">已成功地匯入設定</string>
+ <string name="revanced_sb_settings_import_failed">匯入失敗:%s</string>
+ <string name="revanced_sb_settings_export_failed">匯出失敗:%s</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning">您的設定中包含了個人 SponsorBlock 使用者 ID。\n\n您的使用者 ID 類似於密碼,絕不應該分享。\n</string>
+ <string name="revanced_sb_settings_revanced_export_user_id_warning_dismiss">不要再顯示</string>
+ <string name="revanced_sb_diff_segments">變更片段操作</string>
+ <string name="revanced_sb_segments_sponsor">贊助商廣告</string>
+ <string name="revanced_sb_segments_sponsor_sum">有收錢的工商廣告和直接廣告。不是為了自我推銷或為了其他創作的免費推銷</string>
+ <string name="revanced_sb_segments_selfpromo">非付費 / 自我推廣</string>
+ <string name="revanced_sb_segments_selfpromo_sum">類似「贊助商廣告」,但是非付費或自我推廣。這包括有關商品、捐贈或與他人合作的資訊</string>
+ <string name="revanced_sb_segments_interaction">互動提醒(訂閱)</string>
+ <string name="revanced_sb_segments_interaction_sum">這裡就是指「按讚訂閱加分享」。若此片段很長或是針對某事,請將其歸類為非付費 / 自我推廣</string>
+ <string name="revanced_sb_segments_highlight">重播次數最多</string>
+ <string name="revanced_sb_segments_highlight_sum">大部分的人在影片尋找的部分</string>
+ <string name="revanced_sb_segments_intro">中場休息 / 開頭動畫</string>
+ <string name="revanced_sb_segments_intro_sum">沒有實際內容的片段。可以是個靜止的幀,重複性動畫。這不應該是含有資訊的</string>
+ <string name="revanced_sb_segments_outro">結尾資訊卡 / 鳴謝</string>
+ <string name="revanced_sb_segments_outro_sum">鳴謝或當 YouTube 結尾資訊卡出現時。不是含有資訊的總結</string>
+ <string name="revanced_sb_segments_preview">預覽 / 回顧 / 摘要節錄</string>
+ <string name="revanced_sb_segments_preview_sum">展示即將播放的影片或整系列內容的短片集錦,所有內容都會在後面影片中重複</string>
+ <string name="revanced_sb_segments_filler">離題閒聊 / 玩笑</string>
+ <string name="revanced_sb_segments_filler_sum">與影片主要內容無關的填充詞或笑話,但不應包含與前後或背景有關者</string>
+ <string name="revanced_sb_segments_nomusic">音樂:非音樂部分</string>
+ <string name="revanced_sb_segments_nomusic_sum">此功能僅供音樂影片使用。本功能僅應該用於音樂錄影帶中並未包含其他類別的段落</string>
+ <string name="revanced_sb_skip_button_compact">跳過</string>
+ <string name="revanced_sb_skip_button_compact_highlight">重播次數最多</string>
+ <string name="revanced_sb_skip_button_sponsor">跳過贊助商廣告</string>
+ <string name="revanced_sb_skip_button_selfpromo">跳過推廣</string>
+ <string name="revanced_sb_skip_button_interaction">跳過互動</string>
+ <string name="revanced_sb_skip_button_highlight">跳到重播次數最多的部分</string>
+ <string name="revanced_sb_skip_button_intro_beginning">跳過開頭</string>
+ <string name="revanced_sb_skip_button_intro_middle">跳過中場休息</string>
+ <string name="revanced_sb_skip_button_intro_end">跳過中場休息</string>
+ <string name="revanced_sb_skip_button_outro">跳過片尾</string>
+ <string name="revanced_sb_skip_button_preview_beginning">跳過預覽</string>
+ <string name="revanced_sb_skip_button_preview_middle">跳過預覽</string>
+ <string name="revanced_sb_skip_button_preview_end">跳過回顧</string>
+ <string name="revanced_sb_skip_button_filler">跳過閒聊</string>
+ <string name="revanced_sb_skip_button_nomusic">跳過非音樂</string>
+ <string name="revanced_sb_skip_button_unsubmitted">跳過片段</string>
+ <string name="revanced_sb_skipped_sponsor">已跳過贊助商廣告</string>
+ <string name="revanced_sb_skipped_selfpromo">已跳過自我推廣</string>
+ <string name="revanced_sb_skipped_interaction">已跳過提醒</string>
+ <string name="revanced_sb_skipped_highlight">已跳到重播次數最多的部分</string>
+ <string name="revanced_sb_skipped_intro_beginning">已跳過開頭</string>
+ <string name="revanced_sb_skipped_intro_middle">已跳過中場休息</string>
+ <string name="revanced_sb_skipped_intro_end">已跳過中場休息</string>
+ <string name="revanced_sb_skipped_outro">已跳過結尾</string>
+ <string name="revanced_sb_skipped_preview_beginning">已跳過預覽</string>
+ <string name="revanced_sb_skipped_preview_middle">已跳過預覽</string>
+ <string name="revanced_sb_skipped_preview_end">已跳過回顧</string>
+ <string name="revanced_sb_skipped_filler">已跳過閒聊</string>
+ <string name="revanced_sb_skipped_nomusic">已跳過非音樂部分</string>
+ <string name="revanced_sb_skipped_unsubmitted">跳過了未提交的片段</string>
+ <string name="revanced_sb_skipped_multiple_segments">已跳過多個片段</string>
+ <string name="revanced_sb_skip_automatically">自動跳過</string>
+ <string name="revanced_sb_skip_automatically_once">自動跳過一次</string>
+ <string name="revanced_sb_skip_showbutton">顯示跳過按鈕</string>
+ <string name="revanced_sb_skip_seekbaronly">在進度條顯示</string>
+ <string name="revanced_sb_skip_ignore">停用</string>
+ <string name="revanced_sb_submit_failed_invalid">無法提交片段:%s</string>
+ <string name="revanced_sb_submit_failed_timeout">SponsorBlock 暫時離線</string>
+ <string name="revanced_sb_submit_failed_unknown_error">無法提交片段(狀態:%1$d %2$s)</string>
+ <string name="revanced_sb_submit_failed_rate_limit">無法提交片段。\n頻率限制(來自同一個使用者或 IP 的次數過多)</string>
+ <string name="revanced_sb_submit_failed_forbidden">無法提交片段:%s</string>
+ <string name="revanced_sb_submit_failed_duplicate">無法提交片段。\n片段已經存在</string>
+ <string name="revanced_sb_submit_succeeded">成功提交新片段</string>
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <string name="revanced_sb_sponsorblock_connection_failure_timeout">SponsorBlock 暫時無法使用(API 超時)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_status">SponsorBlock 暫時無法使用(狀態 %d)</string>
+ <string name="revanced_sb_sponsorblock_connection_failure_generic">SponsorBlock 暫時無法使用</string>
+ <string name="revanced_sb_vote_failed_timeout">無法為片段投票(API 超時)</string>
+ <string name="revanced_sb_vote_failed_unknown_error">無法為此片段投票(狀態:%1$d %2$s)</string>
+ <string name="revanced_sb_vote_failed_forbidden">無法為此片段投票:%s</string>
+ <string name="revanced_sb_vote_upvote">按讚</string>
+ <string name="revanced_sb_vote_downvote">按倒讚</string>
+ <string name="revanced_sb_vote_category">變更類別</string>
+ <string name="revanced_sb_vote_no_segments">沒有可以投票的片段</string>
+ <string name="revanced_sb_new_segment_choose_category">選擇片段的類別</string>
+ <string name="revanced_sb_new_segment_disabled_category">已在設定中停用類別。啟用類別以提交。</string>
+ <string name="revanced_sb_new_segment_title">新 SponsorBlock 片段</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_mark_time_as_question">設定 %1$02d:%2$02d:%3$03d 為新片段的開始或結束?</string>
+ <string name="revanced_sb_new_segment_mark_start">開始</string>
+ <string name="revanced_sb_new_segment_mark_end">結束</string>
+ <string name="revanced_sb_new_segment_now">現在</string>
+ <string name="revanced_sb_new_segment_time_start">片段開始時間</string>
+ <string name="revanced_sb_new_segment_time_end">片段結束時間</string>
+ <string name="revanced_sb_new_segment_confirm_title">時間是否正確?</string>
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <string name="revanced_sb_new_segment_confirm_content">區段從\n\n%1$s\n至\n%2$s\n\n(%3$s)\n\n確定要提交?</string>
+ <string name="revanced_sb_new_segment_start_is_before_end">起始點必須在終點之前</string>
+ <string name="revanced_sb_new_segment_mark_locations_first">首先在時間欄上標記兩個位置</string>
+ <string name="revanced_sb_new_segment_preview_segment_first">預覽片段,確保能順利跳過</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_title">手動編輯片段的時間</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_content">您想編輯片段開始或結束的時間嗎?</string>
+ <string name="revanced_sb_new_segment_edit_by_hand_parse_error">所選擇的時間無效</string>
+ <string name="revanced_sb_stats">統計</string>
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ <string name="revanced_sb_stats_connection_failure">統計資料暫時無法使用(API 離線)</string>
+ <string name="revanced_sb_stats_loading">正在載入……</string>
+ <string name="revanced_sb_stats_sb_disabled">已停用 SponsorBloc</string>
+ <string name="revanced_sb_stats_username">您的使用者名稱:<b>%s</b></string>
+ <string name="revanced_sb_stats_username_change">點擊以更改您的使用者名稱</string>
+ <string name="revanced_sb_stats_username_change_unknown_error">無法更改使用者名稱:狀態:%1$d %2$s</string>
+ <string name="revanced_sb_stats_username_changed">使用者名稱變更成功</string>
+ <string name="revanced_sb_stats_reputation">您的評價是 <b>%.2f</b></string>
+ <string name="revanced_sb_stats_submissions">您已建立 <b>%s</b> 個片段</string>
+ <string name="revanced_sb_stats_saved_zero">SponsorBlock 排行榜</string>
+ <string name="revanced_sb_stats_saved">您已為人們省下了觀看 <b>%s</b> 個片段的時間</string>
+ <string name="revanced_sb_stats_saved_sum_zero">點擊此處查看全球統計數據和最佳貢獻者</string>
+ <string name="revanced_sb_stats_saved_sum">那可是他們生命中寶貴的 <b>%s</b>。<br>點選檢視排行榜</string>
+ <string name="revanced_sb_stats_self_saved">您已跳過 <b>%s</b> 個片段</string>
+ <string name="revanced_sb_stats_self_saved_sum">總共 <b>%s</b></string>
+ <string name="revanced_sb_stats_self_saved_reset_title">重置略過片段的計數器?</string>
+ <string name="revanced_sb_stats_saved_hour_format">%1$s 小時 %2$s 分鐘</string>
+ <string name="revanced_sb_stats_saved_minute_format">%1$s 分鐘 %2$s 秒</string>
+ <string name="revanced_sb_stats_saved_second_format">%s 秒</string>
+ <string name="revanced_sb_color_dot_label">顏色:</string>
+ <string name="revanced_sb_color_changed">已變更顏色</string>
+ <string name="revanced_sb_color_reset">重設顏色</string>
+ <string name="revanced_sb_color_invalid">無效的顏色代碼</string>
+ <string name="revanced_sb_reset_color">重設顏色</string>
+ <string name="revanced_sb_reset">重設</string>
+ <string name="revanced_sb_about">關於</string>
+ <string name="revanced_sb_about_api_sum">資料由 SponsorBlock API 提供。點擊此處來瞭解更多資訊和查看其它平台的下載</string>
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <string name="revanced_spoof_app_version_title">欺騙應用程式版本</string>
+ <string name="revanced_spoof_app_version_summary_on">已欺騙版本</string>
+ <string name="revanced_spoof_app_version_summary_off">未欺騙版本</string>
+ <string name="revanced_spoof_app_version_user_dialog_message">將欺騙 YouTube 應用程式版本為舊版。\n\n這將變更應用程式的外觀和功能,但可能會出現未知的副作用。\n\n若稍後才關閉,建議清除應用程式資料以防止 UI 錯誤。</string>
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <string name="revanced_spoof_app_version_target_title">欺騙應用程式版本目標</string>
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ <string name="revanced_spoof_app_version_target_entry_1">18.33.40 - 在 Shorts 無痕模式中還原 RYD</string>
+ <string name="revanced_spoof_app_version_target_entry_2">18.20.39 - 還原寬影片速度 & 畫質選單</string>
+ <string name="revanced_spoof_app_version_target_entry_3">18.09.39 - 還原庫標籤</string>
+ <string name="revanced_spoof_app_version_target_entry_4">17.41.37 - 還原舊版播放清單櫃</string>
+ <string name="revanced_spoof_app_version_target_entry_5">17.33.42 - 還原舊版 UI 介面</string>
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <string name="revanced_start_page_title">設定啟動頁面</string>
+ <string name="revanced_start_page_entry_0">預設</string>
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_start_page_entry_1">首頁</string>
+ <string name="revanced_start_page_entry_2">搜尋</string>
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <string name="revanced_start_page_entry_3">訂閱</string>
+ <string name="revanced_start_page_entry_4">探索</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_start_page_entry_6">個人中心</string>
+ <string name="revanced_start_page_entry_7">喜歡的影片</string>
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ <string name="revanced_start_page_entry_8">歷史記錄</string>
+ <string name="revanced_start_page_entry_9">發燒影片</string>
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ <string name="revanced_disable_resuming_shorts_player_title">停用自動復原 Shorts 播放器</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_on">Shorts 播放器將不會在應用程式啟動後復原</string>
+ <string name="revanced_disable_resuming_shorts_player_summary_off">Shorts 播放器將會在應用程式啟動後復原</string>
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ <string name="revanced_tablet_layout_title">啟用平板介面</string>
+ <string name="revanced_tablet_layout_summary_on">已啟用平板介面</string>
+ <string name="revanced_tablet_layout_summary_off">已停用平板介面</string>
+ <string name="revanced_tablet_layout_user_dialog_message">社群貼文不會顯示在平板介面上</string>
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ <string name="revanced_miniplayer_screen_title">迷你播放器</string>
+ <string name="revanced_miniplayer_screen_summary">更改應用程式內縮小播放器的樣式</string>
+ <string name="revanced_miniplayer_type_title">迷你播放器類型</string>
+ <string name="revanced_miniplayer_type_entry_1">原始</string>
+ <string name="revanced_miniplayer_type_entry_2">手機</string>
+ <string name="revanced_miniplayer_type_entry_3">平板</string>
+ <string name="revanced_miniplayer_type_entry_4">現代樣式 1</string>
+ <string name="revanced_miniplayer_type_entry_5">現代樣式 2</string>
+ <string name="revanced_miniplayer_type_entry_6">現代樣式 3</string>
+ <string name="revanced_miniplayer_hide_expand_close_title">隱藏擴展和關閉按鈕</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_on">按鈕已隱藏\n(滑動迷你播放器以擴展或關閉)</string>
+ <string name="revanced_miniplayer_hide_expand_close_summary_off">擴展和關閉按鈕已顯示</string>
+ <string name="revanced_miniplayer_hide_subtext_title">隱藏副標</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_on">副標已隱藏</string>
+ <string name="revanced_miniplayer_hide_subtext_summary_off">副標已顯示</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_title">隱藏快轉和倒帶按鈕</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_on">快轉和倒帶按鈕已隱藏</string>
+ <string name="revanced_miniplayer_hide_rewind_forward_summary_off">快轉和倒帶按鈕已顯示</string>
+ <string name="revanced_miniplayer_opacity_title">覆蓋層不透明度</string>
+ <string name="revanced_miniplayer_opacity_summary">不透明度值介於 0-100 之間,0 為透明</string>
+ <string name="revanced_miniplayer_opacity_invalid_toast">迷你播放器覆蓋層的不透明度必須在 0-100 之間</string>
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ <string name="revanced_gradient_loading_screen_title">啟用漸層載入畫面</string>
+ <string name="revanced_gradient_loading_screen_summary_on">載入畫面將有漸層背景</string>
+ <string name="revanced_gradient_loading_screen_summary_off">載入畫面將有純色背景</string>
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ <string name="revanced_seekbar_custom_color_title">啟用自訂進度條顏色</string>
+ <string name="revanced_seekbar_custom_color_summary_on">已顯示自訂進度條顏色</string>
+ <string name="revanced_seekbar_custom_color_summary_off">已顯示原版進度條顏色</string>
+ <string name="revanced_seekbar_custom_color_value_title">自訂進度條顏色</string>
+ <string name="revanced_seekbar_custom_color_value_summary">進度條顏色</string>
+ <string name="revanced_seekbar_custom_color_invalid">無效的進度條顏色。已重設為預設值。</string>
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <string name="revanced_alt_thumbnail_home_title">首頁標籤</string>
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <string name="revanced_alt_thumbnail_subscription_title">訂閱標籤</string>
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <string name="revanced_alt_thumbnail_library_title">個人中心</string>
+ <string name="revanced_alt_thumbnail_player_title">播放器列表、推薦</string>
+ <string name="revanced_alt_thumbnail_search_title">搜尋結果</string>
+ <string name="revanced_alt_thumbnail_options_entry_1">原版縮圖</string>
+ <string name="revanced_alt_thumbnail_options_entry_2">DeArrow & 原版縮圖</string>
+ <string name="revanced_alt_thumbnail_options_entry_3">DeArrow & 靜態擷取</string>
+ <string name="revanced_alt_thumbnail_options_entry_4">靜態擷取</string>
+ <string name="revanced_alt_thumbnail_dearrow_about_summary">DeArrow 提供 YouTube 影片的外包縮圖。這些縮圖通常比 YouTube 提供的更為相關。\n\n若啟用,影片 URL 將會被傳送到 API 伺服器,但不會傳送任何其它資料。若影片沒有 DeArrow 縮圖,則會顯示原始縮圖或靜態擷取。\n\n點擊此處瞭解更多關於 DeArrow 的資訊</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_title">若 API 無法使用,顯示提示</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_on">若 DeArrow 無法使用,顯示提示</string>
+ <string name="revanced_alt_thumbnail_dearrow_connection_toast_summary_off">若 DeArrow 無法使用,不顯示提示</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API 端點</string>
+ <string name="revanced_alt_thumbnail_dearrow_api_url_summary">DeArrow URL 縮圖快取端點</string>
+ <string name="revanced_alt_thumbnail_stills_about_title">靜態影片擷取</string>
+ <string name="revanced_alt_thumbnail_stills_about_summary">靜態捕捉是擷取每個影片的開頭 / 中間 / 結尾作為縮圖。這些圖像內建於 YouTube 中,不會使用外部 API</string>
+ <string name="revanced_alt_thumbnail_stills_fast_title">使用快速靜態捕捉</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_on">使用中等品質靜態擷取。縮圖載入速度會更快,但直播、未發布或非常舊的影片可能會顯示空白縮圖</string>
+ <string name="revanced_alt_thumbnail_stills_fast_summary_off">使用高品質的靜態捕捉</string>
+ <string name="revanced_alt_thumbnail_stills_time_title">靜態捕捉的影片時間</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_1">影片開頭</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_2">影片中間</string>
+ <string name="revanced_alt_thumbnail_stills_time_entry_3">影片結尾</string>
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ <string name="revanced_alt_thumbnail_dearrow_error">DeArrow 暫時無法使用(狀態代碼:%s)</string>
+ <string name="revanced_alt_thumbnail_dearrow_error_generic">DeArrow 暫時無法使用</string>
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ <string name="revanced_announcements_title">顯示 ReVanced 公告</string>
+ <string name="revanced_announcements_summary_on">啟動時顯示公告</string>
+ <string name="revanced_announcements_summary_off">啟動時不顯示公告</string>
+ <string name="revanced_announcements_enabled_summary">啟動時顯示公告</string>
+ <string name="revanced_announcements_connection_failed">無法連線到公告提供者</string>
+ <string name="revanced_announcements_dialog_dismiss">忽略</string>
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ <string name="revanced_auto_repeat_title">啟用自動循環播放</string>
+ <string name="revanced_auto_repeat_summary_on">已啟用自動循環播放</string>
+ <string name="revanced_auto_repeat_summary_off">已停用自動循環播放</string>
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ <string name="revanced_spoof_device_dimensions_title">欺騙裝置尺寸</string>
+ <string name="revanced_spoof_device_dimensions_summary_on">已欺騙裝置尺寸\n\n將可能會解鎖更高的影片畫質,但您可能會遇到影片播放不順暢、更差的電池續航和未知的副作用</string>
+ <string name="revanced_spoof_device_dimensions_summary_off">未欺騙裝置尺寸\n\n啟用此功能可以解鎖更高的影片畫質</string>
+ <string name="revanced_spoof_device_dimensions_user_dialog_message">啟用此功能可能會遇到影片播放不順暢、更差的電池續航和未知的副作用</string>
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ <string name="microg_settings_title">GmsCore 設定</string>
+ <string name="microg_settings_summary">GmsCore 設定</string>
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ <string name="revanced_bypass_url_redirects_title">繞過 URL 重新導向</string>
+ <string name="revanced_bypass_url_redirects_summary_on">已繞過 URL 重新導向</string>
+ <string name="revanced_bypass_url_redirects_summary_off">未繞過 URL 重新導向</string>
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ <string name="revanced_external_browser_title">在瀏覽器中開啟連結</string>
+ <string name="revanced_external_browser_summary_on">在外部開啟連結</string>
+ <string name="revanced_external_browser_summary_off">在應用程式中開啟連結</string>
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ <string name="revanced_background_playback_title">背景播放</string>
+ <string name="revanced_background_playback_summary">此設定可在 設定 > 背景播放 找到</string>
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ <string name="revanced_remove_tracking_query_parameter_title">移除追蹤查詢參數</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_on">已從連結移除追蹤查詢參數</string>
+ <string name="revanced_remove_tracking_query_parameter_summary_off">未從連結移除追蹤查詢參數</string>
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ <string name="revanced_disable_zoom_haptics_title">停用縮放震動</string>
+ <string name="revanced_disable_zoom_haptics_summary_on">已停用震動</string>
+ <string name="revanced_disable_zoom_haptics_summary_off">已啟用震動</string>
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ <string name="revanced_video_quality_default_entry_1">自動</string>
+ <string name="revanced_remember_video_quality_last_selected_title">記住影片畫質</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_on">變更畫質套用到所有影片</string>
+ <string name="revanced_remember_video_quality_last_selected_summary_off">變更畫質僅套用於目前影片</string>
+ <string name="revanced_video_quality_default_wifi_title">使用 Wi-Fi 時的預設影片畫質</string>
+ <string name="revanced_video_quality_default_mobile_title">使用行動數據時的預設影片畫質</string>
+ <string name="revanced_remember_video_quality_mobile">行動數據</string>
+ <string name="revanced_remember_video_quality_wifi">wifi</string>
+ <string name="revanced_remember_video_quality_toast">變更畫質預設 %1$s 為 %2$s</string>
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ <string name="revanced_playback_speed_dialog_button_title">顯示速度對話框按鈕</string>
+ <string name="revanced_playback_speed_dialog_button_summary_on">已顯示按鈕</string>
+ <string name="revanced_playback_speed_dialog_button_summary_off">未顯示按鈕</string>
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ <string name="revanced_custom_playback_speeds_title">自訂播放速度</string>
+ <string name="revanced_custom_playback_speeds_summary">新增或變更可用的播放速度</string>
+ <string name="revanced_custom_playback_speeds_invalid">自訂速度必須小於 %s。已重設為預設值。</string>
+ <string name="revanced_custom_playback_speeds_parse_exception">無效的自訂播放速度。已重設為預設值。</string>
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ <string name="revanced_remember_playback_speed_last_selected_title">記住播放速度</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_on">變更播放速度套用到所有影片</string>
+ <string name="revanced_remember_playback_speed_last_selected_summary_off">變更播放速度僅套用到目前影片</string>
+ <string name="revanced_playback_speed_default_title">預設播放速度</string>
+ <string name="revanced_remember_playback_speed_toast">變更預設速度為:%s</string>
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ <string name="revanced_restore_old_video_quality_menu_title">還原舊版影片畫質選單</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_on">已顯示舊版影片畫質選單</string>
+ <string name="revanced_restore_old_video_quality_menu_summary_off">未顯示舊版影片畫質選單</string>
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ <string name="revanced_slide_to_seek_title">啟用滑動預覽</string>
+ <string name="revanced_slide_to_seek_summary_on">已啟用滑動預覽</string>
+ <string name="revanced_slide_to_seek_summary_off">未啟用滑動預覽</string>
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ <string name="revanced_spoof_client_screen_title">欺騙客戶端</string>
+ <string name="revanced_spoof_client_screen_summary">欺騙客戶端以防止播放問題</string>
+ <string name="revanced_spoof_client_title">欺騙客戶端</string>
+ <string name="revanced_spoof_client_summary_on">已欺騙客戶端</string>
+ <string name="revanced_spoof_client_summary_off">尚未欺騙客戶端\n\n影片播放可能未作用</string>
+ <string name="revanced_spoof_client_user_dialog_message">關閉此設定可能會導致影片播放發生問題</string>
+ <string name="revanced_spoof_client_use_ios_title">欺騙客戶端至 iOS</string>
+ <string name="revanced_spoof_client_use_ios_summary_on">用戶端目前偽裝為 iOS\n\n副作用包括:\n・無 HDR 影片\n・觀看記錄可能無法使用\n・更高的影片品質可能缺失\n・直播無法僅作為音訊播放\n・Android 8.0 上無法觀看直播</string>
+ <string name="revanced_spoof_client_use_ios_summary_off">客戶端目前偽裝為 Android VR\n\n副作用包括:\n・無 HDR 影片\n・兒童影片無法播放\n・暫停的影片可能會隨\n恢復播放\n・低品質短片的進度條縮圖\n・下載操作按鈕總是隱藏\n・結尾畫面卡片總是隱藏</string>
+ <string name="revanced_spoof_client_storyboard_timeout">欺騙客戶端縮圖尚不可用 (API 逾時)</string>
+ <string name="revanced_spoof_client_storyboard_io_exception">欺騙客戶端縮圖暫不可用: %s</string>
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ <string name="revanced_block_audio_ads_title">阻擋音訊廣告</string>
+ <string name="revanced_block_audio_ads_summary_on">已阻擋音訊廣告</string>
+ <string name="revanced_block_audio_ads_summary_off">未阻擋音訊廣告</string>
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ <string name="revanced_embedded_ads_service_unavailable">%s 暫時無法使用。所以可能會顯示廣告。請嘗試在設定中切換為另外一個廣告阻擋服務。</string>
+ <string name="revanced_embedded_ads_service_failed">%s 伺服器回傳錯誤。所以可能會顯示廣告。請嘗試在設定中切換為另外一個廣告阻擋服務。</string>
+ <string name="revanced_block_embedded_ads_title">阻擋嵌入式影片廣告</string>
+ <string name="revanced_block_embedded_ads_entry_1">已停用</string>
+ <string name="revanced_block_embedded_ads_entry_2">Luminous 代理</string>
+ <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock 代理</string>
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ <string name="revanced_block_video_ads_title">阻擋影片廣告</string>
+ <string name="revanced_block_video_ads_summary_on">已阻擋影片廣告</string>
+ <string name="revanced_block_video_ads_summary_off">未阻擋影片廣告</string>
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ <string name="revanced_deleted_msg">已刪除訊息</string>
+ <string name="revanced_show_deleted_messages_title">顯示已刪除的訊息</string>
+ <string name="revanced_show_deleted_messages_entry_1">不顯示已刪除的訊息</string>
+ <string name="revanced_show_deleted_messages_entry_2">將已刪除的訊息隱藏在劇透後面</string>
+ <string name="revanced_show_deleted_messages_entry_3">將已刪除的訊息顯示為劃掉的文字</string>
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ <string name="revanced_auto_claim_channel_points_title">自動領取頻道忠誠點數</string>
+ <string name="revanced_auto_claim_channel_points_summary_on">已自動地領取頻道忠誠點數</string>
+ <string name="revanced_auto_claim_channel_points_summary_off">未自動地領取頻道忠誠點數</string>
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ <string name="revanced_twitch_debug_mode_title">啟用 Twitch 除錯模式</string>
+ <string name="revanced_twitch_debug_mode_summary_on">已啟用 Twitch 除錯模式(不推薦啟用)</string>
+ <string name="revanced_twitch_debug_mode_summary_off">已停用 Twitch 除錯模式</string>
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ <string name="revanced_settings">ReVanced 設定</string>
+ <string name="revanced_ads_screen_title">廣告</string>
+ <string name="revanced_ads_screen_summary">廣告阻擋設定</string>
+ <string name="revanced_chat_screen_title">聊天</string>
+ <string name="revanced_chat_screen_summary">聊天設定</string>
+ <string name="revanced_misc_screen_title">其它</string>
+ <string name="revanced_misc_screen_summary">其它設定</string>
+ <string name="revanced_general_category_title">一般設定</string>
+ <string name="revanced_other_category_title">其他設定</string>
+ <string name="revanced_client_ads_category_title">用戶端廣告</string>
+ <string name="revanced_surestream_ads_category_title">伺服端 Surestream 廣告</string>
+ <string name="revanced_twitch_debug_title">除錯記錄檔</string>
+ <string name="revanced_twitch_debug_summary_on">已啟用除錯記錄檔</string>
+ <string name="revanced_twitch_debug_summary_off">已停用除錯記錄檔</string>
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values-zu-rZA/strings.xml b/src/main/resources/addresources/values-zu-rZA/strings.xml
new file mode 100644
index 0000000000..8b327b3f78
--- /dev/null
+++ b/src/main/resources/addresources/values-zu-rZA/strings.xml
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+# General guidelines and information for translating
+
+## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
+
+ For example, the patches string:
+ <string name="revanced_patches_string">You will arrive at %1$s in %2$s hours from now</string>
+ Could be translated to another language using a rearranged grammar:
+ <string name="revanced_patches_string">You will arrive %2$s hours from now at %1$s</string>
+
+ For Manager strings:
+ You will arrive at ${destination} in ${count} hours from now
+ Could be rearranged by changing the order of the ${} parameters:
+ You will arrive ${count} hours from now at ${destination}
+
+ Reordering is particularly relevant when translating into right to left languages, or for any language with grammar that is noticeably different from English.
+
+## Single and double quotation marks must be escaped for patch strings (Manager does not require escaping any quotes).
+
+ All _patches_ single and double quotation marks must be escaped as \" or \'
+ Forgetting to do this will cause that string to appear in app with no quotation characters.
+
+ Correct:
+ <string name="revanced_string">You\'re correct. This is the \"correct\" way and this text will appear as expected in the app</string>
+ Not correct:
+ <string name="revanced_string">You're not correct. This is not the "correct" way and this text will not appear as expected the in app</string>
+-->
+<resources>
+ <app id="shared">
+ <patch id="misc.settings.BaseSettingsResourcePatch">
+ </patch>
+ <patch id="misc.gms.BaseGmsCoreSupportResourcePatch">
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ </app>
+ <app id="youtube">
+ <patch id="misc.settings.SettingsResourcePatch">
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ <patch id="misc.debugging.DebuggingPatch">
+ </patch>
+ <patch id="layout.hide.general.HideLayoutComponentsPatch">
+ <!-- 'Join' should be translated using the same localized wording YouTube displays.
+ This appears in the video player for certain videos. -->
+ <!-- 'For you' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Notify me' should be translated using the same localized wording YouTube displays.
+ This item appear in the subscription feed for future livestreams or unreleased videos. -->
+ <!-- 'People also watch' should be translated using the same localized wording YouTube displays. -->
+ <!-- 'Show more' should be translated with the same localized wording that YouTube displays.
+ This button usually appears when searching for a YT creator. -->
+ <!-- 'Component path builder strings' is the technical name for identifying the Litho UI layout items to hide. This is an advanced feature and most users will never use this. -->
+ <!-- For localization it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
+ This is because keywords can be in any language, and showing an example in the localized script helps convey this. -->
+ </patch>
+ <patch id="ad.general.HideAdsResourcePatch">
+ <!-- 'Visit store' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="ad.getpremium.HideGetPremiumPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="interaction.copyvideourl.CopyVideoUrlResourcePatch">
+ </patch>
+ <patch id="interaction.dialog.RemoveViewerDiscretionDialogPatch">
+ </patch>
+ <patch id="interaction.downloads.DownloadsResourcePatch">
+ <!-- 'download action button' should be translated using the same wording as the translation of 'revanced_hide_download_button_title' -->
+ </patch>
+ <patch id="interaction.seekbar.DisablePreciseSeekingGesturePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSeekbarTappingPatch">
+ </patch>
+ <patch id="interaction.swipecontrols.SwipeControlsResourcePatch">
+ </patch>
+ <patch id="layout.autocaptions.AutoCaptionsPatch">
+ </patch>
+ <patch id="layout.buttons.action.HideButtonsPatch">
+ <!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Report' should be translated with the same localized wording that YouTube displays.
+ This button usually appears only on live streams. -->
+ <!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Download' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Thanks' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Clip' should be translated with the same localized wording that YouTube displays. -->
+ <!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
+ </patch>
+ <patch id="layout.buttons.autoplay.HideAutoplayButtonPatch">
+ </patch>
+ <patch id="layout.buttons.captions.HideCaptionsButtonPatch">
+ <!-- This button does not display any text, but 'captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title' -->
+ </patch>
+ <patch id="layout.buttons.cast.HideCastButtonPatch">
+ </patch>
+ <patch id="layout.buttons.navigation.NavigationButtonsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the tab. -->
+ <!-- 'Shorts' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- The Create button has no display name. Translate normally. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays the tab. -->
+ <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
+ </patch>
+ <patch id="layout.hide.player.flyoutmenupanel.HidePlayerFlyoutMenuPatch">
+ <!-- 'Captions' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Playback speed' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'More info' should be translated using the same localized wording YouTube displays for the menu item.
+ This menu only appears for some videos. Translate the name normally if the menu cannot be found. -->
+ <!-- 'Lock screen' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Audio track' should be translated using the same localized wording YouTube displays for the menu item. -->
+ <!-- 'Watch in VR' should be translated using the same localized wording YouTube displays for the menu item. -->
+ </patch>
+ <patch id="layout.buttons.player.hide.HidePlayerButtonsPatch">
+ </patch>
+ <patch id="layout.hide.albumcards.AlbumCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.comments.CommentsPatch">
+ </patch>
+ <patch id="layout.hide.crowdfundingbox.CrowdfundingBoxResourcePatch">
+ </patch>
+ <patch id="layout.hide.endscreencards.HideEndscreenCardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.filterbar.HideFilterBarResourcePatch">
+ </patch>
+ <patch id="layout.hide.floatingmicrophone.HideFloatingMicrophoneButtonResourcePatch">
+ </patch>
+ <patch id="layout.hide.fullscreenambientmode.DisableFullscreenAmbientModePatch">
+ </patch>
+ <patch id="layout.hide.infocards.HideInfocardsResourcePatch">
+ </patch>
+ <patch id="layout.hide.rollingnumber.DisableRollingNumberAnimationPatch">
+ </patch>
+ <patch id="layout.hide.seekbar.HideSeekbarPatch">
+ </patch>
+ <patch id="layout.hide.shorts.HideShortsComponentsResourcePatch">
+ <!-- 'home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'join' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'subscribe' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'remix' should be translated using the same localized wording YouTube displays for the button. -->
+ <!-- 'share' should be translated using the same localized wording YouTube displays for the button. -->
+ </patch>
+ <patch id="layout.hide.suggestedvideoendscreen.DisableSuggestedVideoEndScreenResourcePatch">
+ </patch>
+ <patch id="layout.hide.time.HideTimestampPatch">
+ </patch>
+ <patch id="layout.panels.popup.PlayerPopupPanelsPatch">
+ </patch>
+ <patch id="layout.player.overlay.CustomPlayerOverlayOpacityResourcePatch">
+ </patch>
+ <patch id="layout.returnyoutubedislike.ReturnYouTubeDislikeResourcePatch">
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
+ <!-- Translations should use language similar to 'revanced_sb_enable_compact_skip_button' -->
+ <!-- Statistic strings are shown in the settings only when ReVanced debug mode is enabled. Typical users will never see these. -->
+ </patch>
+ <patch id="layout.searchbar.WideSearchbarPatch">
+ </patch>
+ <patch id="layout.seekbar.RestoreOldSeekbarThumbnailsPatch">
+ </patch>
+ <patch id="layout.sponsorblock.SponsorBlockResourcePatch">
+ <!-- Translations should use language similar to 'revanced_ryd_compact_layout_title' -->
+ <!-- Toast shown if network connection times out. Translations of this should not be longer than the original English or the text can be clipped and not entirely shown. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Do not rearrange the (hour):(minute):second) time format operators here.
+ YT shows the same seekbar time format for all languages, and this string is confirming the segment time as it appears in the seekbar. -->
+ <!-- Shown in the settings preferences, and translations can be any text length. -->
+ </patch>
+ <patch id="layout.spoofappversion.SpoofAppVersionPatch">
+ <!-- It is ideal, but not required, if the text here appears is alphabetically after the text used for 'revanced_spoof_app_version_title'.
+ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch -->
+ <!-- 'RYD' is 'Return YouTube Dislike' -->
+ </patch>
+ <patch id="layout.startpage.ChangeStartPagePatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscriptions' should be translated using the same localized wording YouTube displays for the subscriptions tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- 'History' should be translated using the same localized wording YouTube displays for the 'history' section in the 'You' tab. -->
+ </patch>
+ <patch id="layout.startupshortsreset.DisableResumingShortsOnStartupPatch">
+ </patch>
+ <patch id="layout.tablet.EnableTabletLayoutPatch">
+ </patch>
+ <patch id="layout.miniplayer.MiniplayerPatch">
+ </patch>
+ <patch id="layout.theme.ThemeBytecodePatch">
+ </patch>
+ <patch id="layout.theme.ThemeResourcePatch">
+ </patch>
+ <patch id="layout.thumbnails.AlternativeThumbnailsPatch">
+ <!-- 'Home' should be translated using the same localized wording YouTube displays for the home tab. -->
+ <!-- 'Subscription' should be translated using the same localized wording YouTube displays for the subscription tab. -->
+ <!-- 'You' should be translated using the same localized wording YouTube displays for the You (library) tab. -->
+ <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
+ </patch>
+ <patch id="misc.announcements.AnnouncementsPatch">
+ </patch>
+ <patch id="misc.autorepeat.AutoRepeatPatch">
+ </patch>
+ <patch id="misc.dimensions.spoof.SpoofDeviceDimensionsPatch">
+ </patch>
+ <patch id="misc.gms.GmsCoreSupportResourcePatch">
+ </patch>
+ <patch id="misc.links.BypassURLRedirectsPatch">
+ </patch>
+ <patch id="misc.links.OpenLinksExternallyPatch">
+ </patch>
+ <patch id="misc.backgroundplayback.BackgroundPlaybackPatch">
+ </patch>
+ <patch id="misc.privacy.RemoveTrackingQueryParameterPatch">
+ </patch>
+ <patch id="misc.zoomhaptics.ZoomHapticsPatch">
+ </patch>
+ <patch id="video.quality.RememberVideoQualityPatch">
+ </patch>
+ <patch id="video.speed.button.PlaybackSpeedButtonPatch">
+ </patch>
+ <patch id="video.speed.custom.CustomPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.speed.remember.RememberPlaybackSpeedPatch">
+ </patch>
+ <patch id="video.videoqualitymenu.RestoreOldVideoQualityMenuResourcePatch">
+ </patch>
+ <patch id="interaction.seekbar.EnableSlideToSeekPatch">
+ </patch>
+ <patch id="misc.fix.playback.SpoofClientPatch">
+ </patch>
+ <!-- This patch is no longer used, these strings are not in use, and these strings will be deleted in the future. -->
+ <patch id="misc.fix.playback.SpoofSignaturePatch">
+ </patch>
+ <!-- This patch is no longer used and these strings will soon be deleted. -->
+ <patch id="video.hdrbrightness.HDRBrightnessPatch">
+ </patch>
+ </app>
+ <app id="twitch">
+ <patch id="ad.audio.AudioAdsPatch">
+ </patch>
+ <patch id="ad.embedded.EmbeddedAdsPatch">
+ </patch>
+ <patch id="ad.video.VideoAdsPatch">
+ </patch>
+ <patch id="chat.antidelete.ShowDeletedMessagesPatch">
+ </patch>
+ <patch id="chat.autoclaim.AutoClaimChannelPointsPatch">
+ </patch>
+ <patch id="debug.DebugModePatch">
+ <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
+ </patch>
+ <patch id="misc.settings.SettingsPatch">
+ </patch>
+ </app>
+</resources>
diff --git a/src/main/resources/addresources/values/strings.xml b/src/main/resources/addresources/values/strings.xml
index 34f578ca00..aa661343e9 100644
--- a/src/main/resources/addresources/values/strings.xml
+++ b/src/main/resources/addresources/values/strings.xml
@@ -1,5 +1,8 @@
<!--
+Note: All strings must have a unique path, even if the same string is declared in two different apps.
+This is because Crowdin requires temporarily flattening this file and removing the <app> and <patch> elements.
+
# General guidelines and information for translating
## Strings parameters can be reordered to allow more flexible translations if the grammar should be changed.
|
feat
|
Add translations (#2963)
|
da081040a46c73648cea1d6b46fd979bcd8d6100
|
2024-05-24 02:14:17
|
semantic-release-bot
|
chore(release): 4.8.2-dev.1 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8fc2dc265d..efcaa0bb2d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [4.8.2-dev.1](https://github.com/ReVanced/revanced-patches/compare/v4.8.1...v4.8.2-dev.1) (2024-05-23)
+
+
+### Bug Fixes
+
+* **YouTube - Client spoof:** Spoof iOS client model to fix various side effects ([#3220](https://github.com/ReVanced/revanced-patches/issues/3220)) ([9b5f4ce](https://github.com/ReVanced/revanced-patches/commit/9b5f4ce2b251c67e24cfcac3edae70c8a8aae230))
+
## [4.8.1](https://github.com/ReVanced/revanced-patches/compare/v4.8.0...v4.8.1) (2024-05-21)
diff --git a/gradle.properties b/gradle.properties
index 4ea2be33d4..31fb7dcf3c 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.8.1
+version = 4.8.2-dev.1
|
chore
|
4.8.2-dev.1 [skip ci]
|
cf1b568f75998163e429954fbd2447c3ac924816
|
2022-06-14 04:41:04
|
oSumAtrIX
|
chore: bump `stdlib` dependency version
| false
|
diff --git a/build.gradle.kts b/build.gradle.kts
index 7d4247c4e9..93363e0896 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -19,7 +19,7 @@ repositories {
}
dependencies {
- implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
+ implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.0")
implementation("app.revanced:revanced-patcher:1.1.0")
}
\ No newline at end of file
|
chore
|
bump `stdlib` dependency version
|
31e3b42c6bbce0d00f049b8a69bafc94900bb3b4
|
2022-07-18 19:59:51
|
Alberto Ponces
|
fix: `minimized-playback` patch for YouTube Kids videos (#201)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackKidsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackKidsFingerprint.kt
new file mode 100644
index 0000000000..4856108fe5
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackKidsFingerprint.kt
@@ -0,0 +1,34 @@
+package app.revanced.patches.youtube.layout.minimizedplayback.fingerprints
+
+import app.revanced.patcher.annotation.Name
+import app.revanced.patcher.annotation.Version
+import app.revanced.patcher.extensions.or
+import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
+import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
+import app.revanced.patches.youtube.layout.minimizedplayback.annotations.MinimizedPlaybackCompatibility
+import org.jf.dexlib2.AccessFlags
+import org.jf.dexlib2.Opcode
+
+@Name("minimized-playback-kids-fingerprint")
+@MatchingMethod(
+ "LMinimizedPlaybackPolicyController;", "k"
+)
+@MinimizedPlaybackCompatibility
+@Version("0.0.1")
+object MinimizedPlaybackKidsFingerprint : MethodFingerprint(
+ "V",
+ AccessFlags.PUBLIC or AccessFlags.FINAL,
+ listOf("I", "L", "L"),
+ listOf(
+ Opcode.IF_EQZ,
+ Opcode.SGET_OBJECT,
+ Opcode.IF_NE,
+ Opcode.CONST_4,
+ Opcode.IPUT_BOOLEAN,
+ Opcode.IF_EQZ,
+ Opcode.IGET,
+ Opcode.INVOKE_STATIC
+ ),
+ null,
+ { it.definingClass.endsWith("MinimizedPlaybackPolicyController;") }
+)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
index c15fb55bf9..4014c6007f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/fingerprints/MinimizedPlaybackSettingsFingerprint.kt
@@ -7,7 +7,6 @@ import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.youtube.layout.minimizedplayback.annotations.MinimizedPlaybackCompatibility
-import app.revanced.patches.youtube.misc.mapping.patch.ResourceIdMappingProviderResourcePatch
import org.jf.dexlib2.AccessFlags
import org.jf.dexlib2.Opcode
import org.jf.dexlib2.iface.instruction.WideLiteralInstruction
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
index d954cc4abe..b7ce3ca89f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/minimizedplayback/patch/MinimizedPlaybackPatch.kt
@@ -12,9 +12,9 @@ import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.impl.BytecodePatch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patches.youtube.layout.minimizedplayback.annotations.MinimizedPlaybackCompatibility
+import app.revanced.patches.youtube.layout.minimizedplayback.fingerprints.MinimizedPlaybackKidsFingerprint
import app.revanced.patches.youtube.layout.minimizedplayback.fingerprints.MinimizedPlaybackManagerFingerprint
import app.revanced.patches.youtube.layout.minimizedplayback.fingerprints.MinimizedPlaybackSettingsFingerprint
-import app.revanced.patches.youtube.misc.mapping.patch.ResourceIdMappingProviderResourcePatch
import org.jf.dexlib2.iface.instruction.ReferenceInstruction
import org.jf.dexlib2.iface.reference.MethodReference
@@ -26,7 +26,7 @@ import org.jf.dexlib2.iface.reference.MethodReference
@Version("0.0.1")
class MinimizedPlaybackPatch : BytecodePatch(
listOf(
- MinimizedPlaybackManagerFingerprint, MinimizedPlaybackSettingsFingerprint
+ MinimizedPlaybackKidsFingerprint, MinimizedPlaybackManagerFingerprint, MinimizedPlaybackSettingsFingerprint
)
) {
override fun execute(data: BytecodeData): PatchResult {
@@ -54,6 +54,12 @@ class MinimizedPlaybackPatch : BytecodePatch(
"""
)
+ MinimizedPlaybackKidsFingerprint.result!!.mutableMethod.addInstructions(
+ 0, """
+ return-void
+ """
+ )
+
return PatchResultSuccess()
}
}
|
fix
|
`minimized-playback` patch for YouTube Kids videos (#201)
|
7db1a7751dc47c4e36096fbdc2b3761b0ae11ccb
|
2024-11-06 21:49:08
|
Zain
|
fix(YouTube - Remove background playback restrictions): Enable for Shorts as well (#3671)
| false
|
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/BackgroundPlaybackPatch.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/BackgroundPlaybackPatch.java
index d3fc82ae2c..7e5f59a6e1 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/BackgroundPlaybackPatch.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/patches/BackgroundPlaybackPatch.java
@@ -1,5 +1,6 @@
package app.revanced.extension.youtube.patches;
+import app.revanced.extension.youtube.settings.Settings;
import app.revanced.extension.youtube.shared.PlayerType;
@SuppressWarnings("unused")
@@ -8,10 +9,10 @@ public class BackgroundPlaybackPatch {
/**
* Injection point.
*/
- public static boolean allowBackgroundPlayback(boolean original) {
+ public static boolean isBackgroundPlaybackAllowed(boolean original) {
if (original) return true;
- // Steps to verify most edge cases:
+ // Steps to verify most edge cases (with Shorts background playback set to off):
// 1. Open a regular video
// 2. Minimize app (PIP should appear)
// 3. Reopen app
@@ -22,13 +23,13 @@ public static boolean allowBackgroundPlayback(boolean original) {
// 7. Close the Short
// 8. Resume playing the regular video
// 9. Minimize the app (PIP should appear)
-
if (!VideoInformation.lastVideoIdIsShort()) {
return true; // Definitely is not a Short.
}
- // Might be a Short, or might be a prior regular video on screen again after a Short was closed.
- // This incorrectly prevents PIP if player is in WATCH_WHILE_MINIMIZED after closing a Short,
+ // TODO: Add better hook.
+ // Might be a Shorts, or might be a prior regular video on screen again after a Shorts was closed.
+ // This incorrectly prevents PIP if player is in WATCH_WHILE_MINIMIZED after closing a Shorts,
// But there's no way around this unless an additional hook is added to definitively detect
// the Shorts player is on screen. This use case is unusual anyways so it's not a huge concern.
return !PlayerType.getCurrent().isNoneHiddenOrMinimized();
@@ -37,10 +38,7 @@ public static boolean allowBackgroundPlayback(boolean original) {
/**
* Injection point.
*/
- public static boolean overrideBackgroundPlaybackAvailable() {
- // This could be done entirely in the patch,
- // but having a unique method to search for makes manually inspecting the patched apk much easier.
- return true;
+ public static boolean isBackgroundShortsPlaybackAllowed(boolean original) {
+ return !Settings.DISABLE_SHORTS_BACKGROUND_PLAYBACK.get();
}
-
}
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
index 52fe03290d..fe5f70fd9a 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
@@ -214,6 +214,7 @@ public class Settings extends BaseSettings {
public static final BooleanSetting SWITCH_CREATE_WITH_NOTIFICATIONS_BUTTON = new BooleanSetting("revanced_switch_create_with_notifications_button", TRUE, true);
// Shorts
+ public static final BooleanSetting DISABLE_SHORTS_BACKGROUND_PLAYBACK = new BooleanSetting("revanced_shorts_disable_background_playback", FALSE);
public static final BooleanSetting DISABLE_RESUMING_SHORTS_PLAYER = new BooleanSetting("revanced_disable_resuming_shorts_player", FALSE);
public static final BooleanSetting HIDE_SHORTS_HOME = new BooleanSetting("revanced_hide_shorts_home", FALSE);
public static final BooleanSetting HIDE_SHORTS_SUBSCRIPTIONS = new BooleanSetting("revanced_hide_shorts_subscriptions", FALSE);
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/BackgroundPlaybackPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/BackgroundPlaybackPatch.kt
index 9f8a3f6a1b..a7911af0ee 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/BackgroundPlaybackPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/BackgroundPlaybackPatch.kt
@@ -1,30 +1,33 @@
package app.revanced.patches.youtube.misc.backgroundplayback
-import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
-import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.instructions
import app.revanced.patcher.patch.bytecodePatch
import app.revanced.patcher.patch.resourcePatch
+import app.revanced.patches.all.misc.resources.addResources
+import app.revanced.patches.all.misc.resources.addResourcesPatch
import app.revanced.patches.shared.misc.mapping.get
import app.revanced.patches.shared.misc.mapping.resourceMappingPatch
import app.revanced.patches.shared.misc.mapping.resourceMappings
+import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch
import app.revanced.patches.youtube.misc.playertype.playerTypeHookPatch
+import app.revanced.patches.youtube.misc.settings.PreferenceScreen
import app.revanced.patches.youtube.misc.settings.settingsPatch
import app.revanced.patches.youtube.video.information.videoInformationPatch
import app.revanced.util.addInstructionsAtControlFlowLabel
import app.revanced.util.findInstructionIndicesReversedOrThrow
+import app.revanced.util.getReference
+import app.revanced.util.returnEarly
import com.android.tools.smali.dexlib2.Opcode
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
-import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
import com.android.tools.smali.dexlib2.iface.reference.MethodReference
internal var prefBackgroundAndOfflineCategoryId = -1L
private set
private val backgroundPlaybackResourcePatch = resourcePatch {
- dependsOn(resourceMappingPatch)
+ dependsOn(resourceMappingPatch, addResourcesPatch)
execute {
prefBackgroundAndOfflineCategoryId = resourceMappings["string", "pref_background_and_offline_category"]
@@ -58,45 +61,54 @@ val backgroundPlaybackPatch = bytecodePatch(
val backgroundPlaybackManagerMatch by backgroundPlaybackManagerFingerprint()
val backgroundPlaybackSettingsMatch by backgroundPlaybackSettingsFingerprint()
+
+ val shortsBackgroundPlaybackFeatureFlagMatch by shortsBackgroundPlaybackFeatureFlagFingerprint()
+ val backgroundPlaybackManagerShortsMatch by backgroundPlaybackManagerShortsFingerprint()
+
val kidsBackgroundPlaybackPolicyControllerMatch by kidsBackgroundPlaybackPolicyControllerFingerprint()
execute { context ->
- backgroundPlaybackManagerMatch.mutableMethod.apply {
- findInstructionIndicesReversedOrThrow(Opcode.RETURN).forEach { index ->
- val register = getInstruction<OneRegisterInstruction>(index).registerA
-
- addInstructionsAtControlFlowLabel(
- index,
- """
- invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->allowBackgroundPlayback(Z)Z
- move-result v$register
- """,
- )
+ addResources("youtube", "misc.backgroundplayback.backgroundPlaybackPatch")
+
+ PreferenceScreen.SHORTS.addPreferences(
+ SwitchPreference("revanced_shorts_disable_background_playback")
+ )
+
+ arrayOf(
+ backgroundPlaybackManagerMatch to "isBackgroundPlaybackAllowed",
+ backgroundPlaybackManagerShortsMatch to "isBackgroundShortsPlaybackAllowed"
+ ).forEach { (match, integrationsMethod) ->
+ match.mutableMethod.apply {
+ findInstructionIndicesReversedOrThrow(Opcode.RETURN).forEach { index ->
+ val register = getInstruction<OneRegisterInstruction>(index).registerA
+
+ addInstructionsAtControlFlowLabel(
+ index,
+ """
+ invoke-static { v$register }, $EXTENSION_CLASS_DESCRIPTOR->$integrationsMethod(Z)Z
+ move-result v$register
+ """
+ )
+ }
}
}
// Enable background playback option in YouTube settings
backgroundPlaybackSettingsMatch.mutableMethod.apply {
- val booleanCalls = instructions.withIndex()
- .filter { ((it.value as? ReferenceInstruction)?.reference as? MethodReference)?.returnType == "Z" }
+ val booleanCalls = instructions.withIndex().filter {
+ it.value.getReference<MethodReference>()?.returnType == "Z"
+ }
val settingsBooleanIndex = booleanCalls.elementAt(1).index
val settingsBooleanMethod = context.navigate(this).at(settingsBooleanIndex).mutable()
- settingsBooleanMethod.addInstructions(
- 0,
- """
- invoke-static {}, $EXTENSION_CLASS_DESCRIPTOR->overrideBackgroundPlaybackAvailable()Z
- move-result v0
- return v0
- """,
- )
+ settingsBooleanMethod.returnEarly(true)
}
+ // Force allowing background play for Shorts.
+ shortsBackgroundPlaybackFeatureFlagMatch.mutableMethod.returnEarly(true)
+
// Force allowing background play for videos labeled for kids.
- kidsBackgroundPlaybackPolicyControllerMatch.mutableMethod.addInstruction(
- 0,
- "return-void",
- )
+ kidsBackgroundPlaybackPolicyControllerMatch.mutableMethod.returnEarly()
}
}
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/Fingerprints.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/Fingerprints.kt
index aa4f6f9220..b12c8157c6 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/Fingerprints.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/backgroundplayback/Fingerprints.kt
@@ -70,3 +70,17 @@ internal val kidsBackgroundPlaybackPolicyControllerFingerprint = fingerprint {
)
literal { 5 }
}
+
+internal val backgroundPlaybackManagerShortsFingerprint = fingerprint {
+ accessFlags(AccessFlags.PUBLIC, AccessFlags.STATIC)
+ returns("Z")
+ parameters("L")
+ literal { 151635310 }
+}
+
+internal val shortsBackgroundPlaybackFeatureFlagFingerprint = fingerprint {
+ accessFlags(AccessFlags.PUBLIC, AccessFlags.FINAL)
+ returns("Z")
+ parameters()
+ literal { 45415425 }
+}
\ No newline at end of file
diff --git a/patches/src/main/resources/addresources/values/strings.xml b/patches/src/main/resources/addresources/values/strings.xml
index 7fda77ff62..d801d5f2a9 100644
--- a/patches/src/main/resources/addresources/values/strings.xml
+++ b/patches/src/main/resources/addresources/values/strings.xml
@@ -86,6 +86,11 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_screen_11_misc_title">Misc</string>
<string name="revanced_settings_screen_12_video_title">Video</string>
</patch>
+ <patch id="misc.backgroundplayback.backgroundPlaybackPatch">
+ <string name="revanced_shorts_disable_background_playback_title">Disable Shorts background play</string>
+ <string name="revanced_shorts_disable_background_playback_summary_on">Shorts background play is disabled</string>
+ <string name="revanced_shorts_disable_background_playback_summary_off">Shorts background play is enabled</string>
+ </patch>
<patch id="misc.debugging.enableDebuggingPatch">
<string name="revanced_debug_screen_title">Debugging</string>
<string name="revanced_debug_screen_summary">Enable or disable debugging options</string>
|
fix
|
Enable for Shorts as well (#3671)
|
7d76e2e43c69b2b75f40a15a9147d041c77cbcd9
|
2024-02-07 20:46:33
|
oSumAtrIX
|
fix(Infinity for Reddit - Unlock subscription): Do not crash by patching billing client
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/UnlockSubscriptionPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/UnlockSubscriptionPatch.kt
index a603602028..a80adb1549 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/UnlockSubscriptionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/UnlockSubscriptionPatch.kt
@@ -5,22 +5,22 @@ import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
import app.revanced.patches.reddit.customclients.infinityforreddit.api.SpoofClientPatch
+import app.revanced.patches.reddit.customclients.infinityforreddit.subscription.fingerprints.BillingClientOnServiceConnected
import app.revanced.patches.reddit.customclients.infinityforreddit.subscription.fingerprints.StartSubscriptionActivityFingerprint
-import app.revanced.patches.reddit.customclients.infinityforreddit.subscription.fingerprints.SubscriptionActivityOnCreateFingerprint
import app.revanced.util.returnEarly
@Patch(
name = "Unlock subscription",
description = "Unlocks the subscription feature but requires a custom client ID.",
compatiblePackages = [
- CompatiblePackage("ml.docilealligator.infinityforreddit")
+ CompatiblePackage("ml.docilealligator.infinityforreddit"),
],
- dependencies = [SpoofClientPatch::class]
+ dependencies = [SpoofClientPatch::class],
)
@Suppress("unused")
object UnlockSubscriptionPatch : BytecodePatch(
- setOf(StartSubscriptionActivityFingerprint, SubscriptionActivityOnCreateFingerprint)
+ setOf(StartSubscriptionActivityFingerprint, BillingClientOnServiceConnected),
) {
override fun execute(context: BytecodeContext) =
- listOf(StartSubscriptionActivityFingerprint, SubscriptionActivityOnCreateFingerprint).returnEarly()
+ listOf(StartSubscriptionActivityFingerprint, BillingClientOnServiceConnected).returnEarly()
}
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/BillingClientOnServiceConnected.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/BillingClientOnServiceConnected.kt
new file mode 100644
index 0000000000..fce786c859
--- /dev/null
+++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/BillingClientOnServiceConnected.kt
@@ -0,0 +1,7 @@
+package app.revanced.patches.reddit.customclients.infinityforreddit.subscription.fingerprints
+
+import app.revanced.patcher.fingerprint.MethodFingerprint
+
+internal object BillingClientOnServiceConnected : MethodFingerprint(
+ strings = listOf("Billing service connected"),
+)
diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/SubscriptionActivityOnCreateFingerprint.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/SubscriptionActivityOnCreateFingerprint.kt
deleted file mode 100644
index dd5f1710de..0000000000
--- a/src/main/kotlin/app/revanced/patches/reddit/customclients/infinityforreddit/subscription/fingerprints/SubscriptionActivityOnCreateFingerprint.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package app.revanced.patches.reddit.customclients.infinityforreddit.subscription.fingerprints
-
-import app.revanced.patcher.fingerprint.MethodFingerprint
-import com.android.tools.smali.dexlib2.AccessFlags
-
-internal object SubscriptionActivityOnCreateFingerprint : MethodFingerprint(
- returnType = "V",
- accessFlags = AccessFlags.PUBLIC.value,
- parameters = listOf("Landroid/os/Bundle;"),
- customFingerprint = { method, classDef ->
- method.name == "onCreate" && classDef.type.endsWith("SubscriptionActivity;")
- }
-)
|
fix
|
Do not crash by patching billing client
|
8cc468702f9ca3c70352c310a49d4cd0ec052d7c
|
2024-02-22 05:43:48
|
semantic-release-bot
|
chore(release): 4.3.0-dev.4 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7794fcee62..004424115e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+# [4.3.0-dev.4](https://github.com/ReVanced/revanced-patches/compare/v4.3.0-dev.3...v4.3.0-dev.4) (2024-02-22)
+
+
+### Bug Fixes
+
+* Compile DEX without debugging information ([f5df957](https://github.com/ReVanced/revanced-patches/commit/f5df9578669f71a67411bc93a25a7e8da43610d0))
+* Use deprecated members to ensure backwards compatibility ([083bd40](https://github.com/ReVanced/revanced-patches/commit/083bd4009231b9612394b4496ca1d329947d6577))
+
+
+### Features
+
+* **X:** Add `Open links as query` patch ([#2730](https://github.com/ReVanced/revanced-patches/issues/2730)) ([ba75a51](https://github.com/ReVanced/revanced-patches/commit/ba75a51b71dbb9157db230b3e97a90361019fe30))
+
# [4.3.0-dev.3](https://github.com/ReVanced/revanced-patches/compare/v4.3.0-dev.2...v4.3.0-dev.3) (2024-02-20)
diff --git a/gradle.properties b/gradle.properties
index 839651dc27..657094041d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.3.0-dev.3
+version = 4.3.0-dev.4
|
chore
|
4.3.0-dev.4 [skip ci]
|
0af156f18972c5f089af4bb69824968d2a47d18f
|
2024-12-08 01:45:36
|
kitadai31
|
fix(YouTube - Spoof video streams): Enable opus codec by updating iOS client version (#4063)
| false
|
diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java
index 2c1f0d55f5..b29d665b48 100644
--- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java
+++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/ClientType.java
@@ -9,6 +9,7 @@
public enum ClientType {
// Specific purpose for age restricted, or private videos, because the iOS client is not logged in.
+ // https://dumps.tadiphone.dev/dumps/oculus/eureka
ANDROID_VR(28,
"Quest 3",
"12",
@@ -19,7 +20,6 @@ public enum ClientType {
true
),
// Specific for kids videos.
- // https://dumps.tadiphone.dev/dumps/oculus/eureka
IOS(5,
// iPhone 15 supports AV1 hardware decoding.
// Only use if this Android device also has hardware decoding.
@@ -31,12 +31,12 @@ public enum ClientType {
? "17.5.1.21F90"
: "13.7.17H35",
allowVP9()
- ? "com.google.ios.youtube/19.10.7 (iPhone; U; CPU iOS 17_5_1 like Mac OS X)"
- : "com.google.ios.youtube/19.10.7 (iPhone; U; CPU iOS 13_7 like Mac OS X)",
+ ? "com.google.ios.youtube/19.47.7 (iPhone; U; CPU iOS 17_5_1 like Mac OS X)"
+ : "com.google.ios.youtube/19.47.7 (iPhone; U; CPU iOS 13_7 like Mac OS X)",
null,
// Version number should be a valid iOS release.
// https://www.ipa4fun.com/history/185230
- "19.10.7",
+ "19.47.7",
"IOS",
false
);
diff --git a/patches/src/main/resources/addresources/values/strings.xml b/patches/src/main/resources/addresources/values/strings.xml
index c8a3636853..51b21c2a11 100644
--- a/patches/src/main/resources/addresources/values/strings.xml
+++ b/patches/src/main/resources/addresources/values/strings.xml
@@ -1225,7 +1225,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Your device does not have VP9 hardware decoding, and this setting is always on when Client spoofing is enabled</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Enabling this might improve battery life and fix playback stuttering.\n\nAVC has a maximum resolution of 1080p, and video playback will use more internet data than VP9 or AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS spoofing side effects</string>
- <string name="revanced_spoof_video_streams_about_ios_summary">• Private kids videos may not play\n• Livestreams start from the beginning\n• Videos may end 1 second early\n• No opus audio codec</string>
+ <string name="revanced_spoof_video_streams_about_ios_summary">• Private kids videos may not play\n• Livestreams start from the beginning\n• Videos may end 1 second early</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR spoofing side effects</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Kids videos may not play\n• Audio track menu is missing\n• Stable volume is not available</string>
</patch>
|
fix
|
Enable opus codec by updating iOS client version (#4063)
|
22a6853389d0fa2854bfc84d2bf2eb55da0b88a0
|
2024-11-27 19:09:40
|
semantic-release-bot
|
chore: Release v5.2.0-dev.6 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6cb7e2a926..8ea957165e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.2.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.5...v5.2.0-dev.6) (2024-11-27)
+
+
+### Features
+
+* **YouTube:** Support version `19.46.42` ([#4010](https://github.com/ReVanced/revanced-patches/issues/4010)) ([122aac6](https://github.com/ReVanced/revanced-patches/commit/122aac6aee8ef0737f18564f11bbc2a6addf4a6b))
+
# [5.2.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.4...v5.2.0-dev.5) (2024-11-27)
diff --git a/gradle.properties b/gradle.properties
index b02ff095e1..63f5095c8f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true
android.useAndroidX = true
kotlin.code.style = official
-version = 5.2.0-dev.5
+version = 5.2.0-dev.6
|
chore
|
Release v5.2.0-dev.6 [skip ci]
|
ce2d18cf4b067c731b35a55e0581ebb8c26f0cc1
|
2022-09-29 22:54:32
|
OxrxL
|
fix(hdr-brightness): trim list of compatible versions (#602)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/annotations/HDRBrightnessCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
index fad80cc48e..44799c58bd 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/annotations/HDRBrightnessCompatibility.kt
@@ -5,7 +5,7 @@ import app.revanced.patcher.annotation.Package
@Compatibility(
[Package(
- "com.google.android.youtube", arrayOf("17.25.34", "17.26.35", "17.27.39", "17.28.34", "17.29.34", "17.32.35", "17.33.42", "17.34.35", "17.34.36", "17.36.37")
+ "com.google.android.youtube", arrayOf("17.33.42", "17.34.35", "17.34.36", "17.36.37")
)]
)
@Target(AnnotationTarget.CLASS)
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
index 4f3bb1e0ec..e1e35ec4bb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/hdrbrightness/fingerprints/HDRBrightnessFingerprint.kt
@@ -5,6 +5,7 @@ import app.revanced.patcher.annotation.Version
import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
+import org.jf.dexlib2.AccessFlags
@Name("hdr-brightness-fingerprint")
@MatchingMethod(
@@ -13,6 +14,6 @@ import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightness
@HDRBrightnessCompatibility
@Version("0.0.1")
object HDRBrightnessFingerprint : MethodFingerprint(
- "V",
- strings = listOf("c.SettingNotFound;", "screen_brightness", "android.mediaview", "lux"),
+ "V", AccessFlags.FINAL.value,
+ strings = listOf("c.SettingNotFound;", "screen_brightness", "android.mediaview"),
)
\ No newline at end of file
|
fix
|
trim list of compatible versions (#602)
|
7f312f088f6452c60eeb81e8a998936533ff79be
|
2023-02-22 11:22:10
|
semantic-release-bot
|
chore(release): 2.163.0 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1145f89cf1..d1876196d6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,29 @@
+# [2.163.0](https://github.com/revanced/revanced-patches/compare/v2.162.0...v2.163.0) (2023-02-22)
+
+
+### Bug Fixes
+
+* **tiktok/show-seekbar:** fix crash when showing seekbar ([#1643](https://github.com/revanced/revanced-patches/issues/1643)) ([160b716](https://github.com/revanced/revanced-patches/commit/160b71644dfdf8efd1f19cdf8e9f572fe1b86d9d))
+* **twitter:** make `hide-promoted-ads` patch compatible with any version ([3dbc5ff](https://github.com/revanced/revanced-patches/commit/3dbc5ff2722559211232999ae29e7fabafe3b857))
+* use correct fingerprint ([84fe9c3](https://github.com/revanced/revanced-patches/commit/84fe9c36461586f25ace146e0e29597e3dfc99ca))
+* **youtube/disable-fullscreen-panels-auto-popup:** use proper descriptions ([4c82487](https://github.com/revanced/revanced-patches/commit/4c824876b45e32c5b79a9817b0a362f31bd13879))
+* **youtube/general-ads:** fix switch description wording ([9003977](https://github.com/revanced/revanced-patches/commit/9003977c00d8056c38fd31476d2e367fb3aa9030))
+* **youtube/hide-time:** use correct integrations class ([539ccf4](https://github.com/revanced/revanced-patches/commit/539ccf43a884ab3ff812884279aa75f42ba872d5))
+* **youtube/hide-watch-in-vr:** fix descriptions ([f261e64](https://github.com/revanced/revanced-patches/commit/f261e64b10db9cddee2a850feab16c8c7092c333))
+* **youtube/open-links-directly:** reference correct integrations method ([e14893e](https://github.com/revanced/revanced-patches/commit/e14893ec89d002287123196396946fff557b7ef4))
+
+
+### Features
+
+* **androidtwelvewidgets:** `unlock-paid-widgets` patch ([#1641](https://github.com/revanced/revanced-patches/issues/1641)) ([44b74ae](https://github.com/revanced/revanced-patches/commit/44b74ae268c3f534dbaecc0adc00767e9b9c0e51))
+* **music:** remove patches constraint on app version ([#1638](https://github.com/revanced/revanced-patches/issues/1638)) ([fe64881](https://github.com/revanced/revanced-patches/commit/fe64881c83a7dd42761dbd67689fbc0ddcb73d78))
+* **twitter:** `hide-recommended-users` patch ([e8c9a91](https://github.com/revanced/revanced-patches/commit/e8c9a91a92fafcc79ce521f62c3865827df55d0f))
+* **twitter:** constrain patches compatibility to working versions ([#1646](https://github.com/revanced/revanced-patches/issues/1646)) ([d984bdc](https://github.com/revanced/revanced-patches/commit/d984bdc8b17dea127880b696ee1bed1503762707))
+* use better patch descriptions ([931aa0f](https://github.com/revanced/revanced-patches/commit/931aa0fba631d1740986131219eff94c4c1b2306))
+* **youtube/general-ads:** hide channel bar ([c74c77d](https://github.com/revanced/revanced-patches/commit/c74c77d12568dda54d971d1998f7e73a45543a3b))
+* **youtube/general-ads:** hide horizontal video shelf ([169e2ba](https://github.com/revanced/revanced-patches/commit/169e2ba67024210450ef6cc74e734d3e7f162cbe))
+* **youtube/open-links-directly:** skip every redirect url ([f155e26](https://github.com/revanced/revanced-patches/commit/f155e261d4973d304c57e0144ddd8e115e6103ee))
+
# [2.163.0-dev.5](https://github.com/revanced/revanced-patches/compare/v2.163.0-dev.4...v2.163.0-dev.5) (2023-02-22)
diff --git a/gradle.properties b/gradle.properties
index 04dc9eafd5..0a9aa09dd8 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.163.0-dev.5
+version = 2.163.0
|
chore
|
2.163.0 [skip ci]
|
becaad4a9876392b567478cdfe773956655901f0
|
2024-08-04 13:39:48
|
ILoveOpenSourceApplications
|
refactor(YouTube Music): Rename `Hide music video ads` to `Hide video ads` and add patch description (#3494)
| false
|
diff --git a/api/revanced-patches.api b/api/revanced-patches.api
index 14a4e32306..a30a71d22f 100644
--- a/api/revanced-patches.api
+++ b/api/revanced-patches.api
@@ -423,6 +423,12 @@ public final class app/revanced/patches/music/ad/video/HideMusicVideoAds : app/r
public synthetic fun execute (Lapp/revanced/patcher/data/Context;)V
}
+public final class app/revanced/patches/music/ad/video/HideVideoAds : app/revanced/patcher/patch/BytecodePatch {
+ public static final field INSTANCE Lapp/revanced/patches/music/ad/video/HideVideoAds;
+ public fun execute (Lapp/revanced/patcher/data/BytecodeContext;)V
+ public synthetic fun execute (Lapp/revanced/patcher/data/Context;)V
+}
+
public final class app/revanced/patches/music/ad/video/MusicVideoAdsPatch : app/revanced/patcher/patch/BytecodePatch {
public static final field INSTANCE Lapp/revanced/patches/music/ad/video/MusicVideoAdsPatch;
public fun execute (Lapp/revanced/patcher/data/BytecodeContext;)V
diff --git a/src/main/kotlin/app/revanced/patches/music/ad/video/HideMusicVideoAds.kt b/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt
similarity index 60%
rename from src/main/kotlin/app/revanced/patches/music/ad/video/HideMusicVideoAds.kt
rename to src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt
index eddec5b905..b374f4cb71 100644
--- a/src/main/kotlin/app/revanced/patches/music/ad/video/HideMusicVideoAds.kt
+++ b/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt
@@ -6,11 +6,12 @@ import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.annotation.CompatiblePackage
import app.revanced.patcher.patch.annotation.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
-import app.revanced.patches.music.ad.video.fingerprints.ShowMusicVideoAdsParentFingerprint
+import app.revanced.patches.music.ad.video.fingerprints.ShowVideoAdsParentFingerprint
import app.revanced.util.exception
@Patch(
- name = "Hide music video ads",
+ name = "Hide video ads",
+ description = "Hides ads that appear while listening to or streaming music videos, podcasts, or songs.",
compatiblePackages = [
CompatiblePackage(
"com.google.android.apps.youtube.music",
@@ -25,24 +26,32 @@ import app.revanced.util.exception
],
)
@Suppress("unused")
-object HideMusicVideoAds : BytecodePatch(
- setOf(ShowMusicVideoAdsParentFingerprint),
+object HideVideoAds : BytecodePatch(
+ setOf(ShowVideoAdsParentFingerprint),
) {
override fun execute(context: BytecodeContext) {
- ShowMusicVideoAdsParentFingerprint.result?.let {
- val showMusicVideoAdsMethod = context
+ ShowVideoAdsParentFingerprint.result?.let {
+ val showVideoAdsMethod = context
.toMethodWalker(it.mutableMethod)
.nextMethod(it.scanResult.patternScanResult!!.startIndex + 1, true).getMethod() as MutableMethod
- showMusicVideoAdsMethod.addInstruction(0, "const/4 p1, 0x0")
- } ?: throw ShowMusicVideoAdsParentFingerprint.exception
+ showVideoAdsMethod.addInstruction(0, "const/4 p1, 0x0")
+ } ?: throw ShowVideoAdsParentFingerprint.exception
+ }
+}
+
+@Deprecated("This patch class has been renamed to HideVideoAds.")
+object HideMusicVideoAds : BytecodePatch(
+ dependencies = setOf(HideVideoAds::class)
+) {
+ override fun execute(context: BytecodeContext) {
}
}
-@Deprecated("This patch class has been renamed to HideMusicVideoAds.")
+@Deprecated("This patch class has been renamed to HideVideoAds.")
object MusicVideoAdsPatch : BytecodePatch(
dependencies = setOf(HideMusicVideoAds::class),
) {
override fun execute(context: BytecodeContext) {
}
-}
+}
\ No newline at end of file
diff --git a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsParentFingerprint.kt b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowVideoAdsParentFingerprint.kt
similarity index 84%
rename from src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsParentFingerprint.kt
rename to src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowVideoAdsParentFingerprint.kt
index 5996ee98d0..5bdd644bc0 100644
--- a/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowMusicVideoAdsParentFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/music/ad/video/fingerprints/ShowVideoAdsParentFingerprint.kt
@@ -3,7 +3,7 @@ package app.revanced.patches.music.ad.video.fingerprints
import app.revanced.patcher.fingerprint.MethodFingerprint
import com.android.tools.smali.dexlib2.Opcode
-internal object ShowMusicVideoAdsParentFingerprint : MethodFingerprint(
+internal object ShowVideoAdsParentFingerprint : MethodFingerprint(
opcodes = listOf(
Opcode.MOVE_RESULT_OBJECT,
Opcode.INVOKE_VIRTUAL,
|
refactor
|
Rename `Hide music video ads` to `Hide video ads` and add patch description (#3494)
|
e7bfa5aa9e8d32ea1fda5c665d64033e2daa07a4
|
2022-06-16 17:08:30
|
semantic-release-bot
|
chore(release): 1.6.3 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 96541bdbf5..7ead96546c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [1.6.3](https://github.com/revanced/revanced-patches/compare/v1.6.2...v1.6.3) (2022-06-16)
+
+
+### Bug Fixes
+
+* wrong dex path ([170fbbb](https://github.com/revanced/revanced-patches/commit/170fbbb99e4a2dbe3e0febe44d07a692aa9d7224))
+
## [1.6.2](https://github.com/revanced/revanced-patches/compare/v1.6.1...v1.6.2) (2022-06-16)
diff --git a/gradle.properties b/gradle.properties
index d0370e7ecd..63714595b0 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 1.6.2
+version = 1.6.3
|
chore
|
1.6.3 [skip ci]
|
49616a62af0d9fe749f20297d595031571af5a0d
|
2022-05-08 01:13:22
|
semantic-release-bot
|
chore(release): 1.0.0-dev.7 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4097c0c10c..f02c546f59 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [1.0.0-dev.7](https://github.com/revanced/revanced-patches/compare/v1.0.0-dev.6...v1.0.0-dev.7) (2022-05-07)
+
+
+### Bug Fixes
+
+* use the latest version of patcher dependency ([fe4a439](https://github.com/revanced/revanced-patches/commit/fe4a439cb2bc5e385ae13e8e155f25bb15e74633))
+
# [1.0.0-dev.6](https://github.com/revanced/revanced-patches/compare/v1.0.0-dev.5...v1.0.0-dev.6) (2022-05-07)
diff --git a/gradle.properties b/gradle.properties
index 3be0b36db8..5f855d2e0d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 1.0.0-dev.6
+version = 1.0.0-dev.7
|
chore
|
1.0.0-dev.7 [skip ci]
|
58dd60a52e3b4376781fdc0a49dc097436ac5c07
|
2023-05-08 05:29:26
|
semantic-release-bot
|
chore(release): 2.174.0-dev.14 [skip ci]
| false
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f6e26f325..89a1938abf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.174.0-dev.14](https://github.com/revanced/revanced-patches/compare/v2.174.0-dev.13...v2.174.0-dev.14) (2023-05-07)
+
+
+### Features
+
+* **youtube/hide-player-overlay:** make it toggleable in settings ([#2044](https://github.com/revanced/revanced-patches/issues/2044)) ([f693d55](https://github.com/revanced/revanced-patches/commit/f693d55caf1e0b72bb1f4c39b1eeb59436191e02))
+
# [2.174.0-dev.13](https://github.com/revanced/revanced-patches/compare/v2.174.0-dev.12...v2.174.0-dev.13) (2023-05-07)
diff --git a/README.md b/README.md
index 892d406022..9f989b1583 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ The official ReVanced Patches.
| `hide-get-premium` | Hides advertisement for YouTube Premium under the video player. | 18.16.37 |
| `hide-info-cards` | Hides info cards in videos. | 18.16.37 |
| `hide-player-buttons` | Adds the option to hide video player previous and next buttons. | all |
-| `hide-player-overlay` | Hides the dark player overlay when player controls are visible. | all |
+| `hide-player-overlay` | Hides the dark background overlay from the player when player controls are visible. | all |
| `hide-seekbar` | Hides the seekbar. | 18.16.37 |
| `hide-timestamp` | Hides timestamp in video player. | 18.16.37 |
| `hide-video-action-buttons` | Adds the options to hide action buttons under a video. | 18.16.37 |
diff --git a/gradle.properties b/gradle.properties
index 585f42d631..33931bce7d 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
kotlin.code.style = official
-version = 2.174.0-dev.13
+version = 2.174.0-dev.14
diff --git a/patches.json b/patches.json
index 5e2027c9ef..84c70e14b8 100644
--- a/patches.json
+++ b/patches.json
@@ -1 +1 @@
-[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"block-embedded-ads","description":"Blocks embedded stream ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"bypass-certificate-checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52","5.40.51","5.41.50","5.48.52"]}]},{"name":"change-package-name","description":"Changes the package name.","version":"0.0.1","excluded":true,"options":[{"key":"packageName","title":"Package name","description":"The name of the package to rename of the app.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"client-spoof","description":"Spoofs a patched client to allow playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-signature-verification"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"copy-video-url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["copy-video-url-resource","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":true,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"disable-ads","description":"Disables ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["DisablePiracyDetectionPatch"],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-player-popup-panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-shorts-on-startup","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-android-debugging","description":"Enables Android debugging capabilities.","version":"0.0.1","excluded":true,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"enable-debugging","description":"Adds debugging options.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings","enable-android-debugging"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"enable-on-demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"export-all-activities","description":"Makes all app activities exportable.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2021.45.0","2022.43.0","2023.05.0","2023.06.0","2023.07.0","2023.07.1","2023.08.0","2023.09.0","2023.09.1","2023.10.0","2023.11.0","2023.12.0"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-ads","description":"Removes ads from Inshorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.nis.app","versions":[]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["VerticalScrollPatch"],"compatiblePackages":[{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"hide-ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["json-hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-breaking-news-shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","breaking-news-shelf-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-floating-microphone-button","description":"Hides the floating microphone button which appears in search.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFloatingMicrophoneButtonResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52"]}]},{"name":"hide-get-premium","description":"Hides advertisement for YouTube Premium under the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"hide-inbox-ads","description":"Hides ads in inbox.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"hide-info-cards","description":"Hides info cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-load-more-button","description":"Hides the button under videos that loads similar videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["hide-load-more-button-resource-patch"],"compatiblePackages":[]},{"name":"hide-player-buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-player-overlay","description":"Hides the dark player overlay when player controls are visible.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-recommended-users","description":"Hides recommended users.","version":"0.0.1","excluded":false,"options":[],"dependencies":["json-hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-seekbar","description":"Hides the seekbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-subreddit-banner","description":"Hides banner ads from comments on subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2023.05.0","2023.06.0","2023.07.0","2023.07.1","2023.08.0","2023.09.0","2023.09.1","2023.10.0","2023.11.0","2023.12.0"]}]},{"name":"hide-timeline-ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":[]}]},{"name":"hide-timestamp","description":"Hides timestamp in video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-video-action-buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0","9.71.0-release.0"]}]},{"name":"hide-watch-in-vr","description":"Hides the option to watch in VR from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"navigation-buttons","description":"Adds options to hide or change navigation buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"open-links-externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-playback-speed","description":"Adds the ability to remember the playback speed you chose in the video playback speed flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","video-id-hook","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.08.37","18.15.40","18.16.37"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.08.37","18.15.40","18.16.37"]}]},{"name":"remove-ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"remove-bootloader-detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-broadcasts-restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"remove-screenshot-restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch","player-type-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"sponsorblock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","video-information","player-type-hook","player-controls-bytecode-patch","sponsorblock-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"spoof-app-version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"spoof-signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"spoof-wifi-connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["theme-litho-components","ThemeResourcePatch","integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"unlock-paid-widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"unlock-plus","description":"Unlocks plus features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureDetectionPatch"],"compatiblePackages":[{"name":"com.microblink.photomath","versions":[]}]},{"name":"unlock-premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"unlock-prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureVerificationPatch","LicenseValidationPatch"],"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"unlock-trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"vanced-microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]}]
\ No newline at end of file
+[{"name":"always-autorepeat","description":"Always repeats the playing video again.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"background-play","description":"Enables playing music in the background.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"block-audio-ads","description":"Blocks audio ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"block-embedded-ads","description":"Blocks embedded stream ads using services like TTV.lol or PurpleAdBlocker.","version":"0.0.1","excluded":false,"options":[],"dependencies":["block-video-ads","integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"block-video-ads","description":"Blocks video ads in streams and VODs.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":["14.3.3","14.4.0","14.5.0","14.5.2","14.6.0","14.6.1"]}]},{"name":"bypass-certificate-checks","description":"Bypasses certificate checks which prevent YouTube Music from working on Android Auto.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52","5.40.51","5.41.50","5.48.52"]}]},{"name":"change-package-name","description":"Changes the package name.","version":"0.0.1","excluded":true,"options":[{"key":"packageName","title":"Package name","description":"The name of the package to rename of the app.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"client-spoof","description":"Spoofs a patched client to allow playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-signature-verification"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"codecs-unlock","description":"Adds more audio codec options. The new audio codecs usually result in better audio quality.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"comments","description":"Hides components related to comments.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","comments-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"compact-header","description":"Hides the music category bar at the top of the homepage.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"copy-video-url","description":"Adds buttons in player to copy video links.","version":"0.0.1","excluded":false,"options":[],"dependencies":["copy-video-url-resource","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"custom-branding","description":"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).","version":"0.0.1","excluded":false,"options":[{"key":"appName","title":"Application Name","description":"The name of the application it will show on your home screen.","required":true,"choices":null},{"key":"iconPath","title":"App Icon Path","description":"A path containing mipmap resource folders with icons.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"custom-video-buffer","description":"Lets you change the buffers of videos.","version":"0.0.1","excluded":true,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"custom-video-speed","description":"Adds more video speed options.","version":"0.0.1","excluded":false,"options":[{"key":"granularity","title":"Video speed granularity","description":"The granularity of the video speeds. The higher the value, the more speeds will be available.","required":true,"choices":null},{"key":"min","title":"Minimum video speed","description":"The minimum video speed.","required":true,"choices":null},{"key":"max","title":"Maximum video speed","description":"The maximum video speed. Must be greater than the minimum video speed and smaller than 5.","required":true,"choices":null}],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"debug-mode","description":"Enables Twitch\u0027s internal debugging mode.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"disable-ads","description":"Disables ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["DisablePiracyDetectionPatch"],"compatiblePackages":[{"name":"com.laurencedawson.reddit_sync","versions":[]}]},{"name":"disable-ads","description":"Disables ads in HexEditor.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.myprog.hexedit","versions":[]}]},{"name":"disable-auto-captions","description":"Disable forced captions from being automatically enabled.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-capture-restriction","description":"Allows capturing Spotify\u0027s audio output while screen sharing or screen recording.","version":"0.0.2","excluded":false,"options":[],"dependencies":["disable-capture-restriction-resource-patch"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"disable-fullscreen-panels","description":"Disables video description and comments panel in fullscreen view.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-login-requirement","description":"Do not force login.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"disable-player-popup-panels","description":"Disables panels from appearing automatically when going into fullscreen (playlist or live chat).","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-shorts-on-startup","description":"Disables playing YouTube Shorts when launching YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"disable-zoom-haptics","description":"Disables haptics when zooming.","version":"0.0.1","excluded":false,"options":[],"dependencies":["settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"downloads","description":"Removes download restrictions and changes the default path to download to.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"downloads","description":"Enables downloading music and videos from YouTube.","version":"0.0.1","excluded":false,"options":[],"dependencies":["downloads-resource-patch","player-controls-bytecode-patch","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"dynamic-color","description":"Replaces the default Twitter Blue with the users Material You palette.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"enable-android-debugging","description":"Enables Android debugging capabilities.","version":"0.0.1","excluded":true,"options":[{"key":"debuggable","title":"App debugging","description":"Whether to make the app debuggable on Android.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[]},{"name":"enable-debugging","description":"Adds debugging options.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings","enable-android-debugging"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"enable-on-demand","description":"Enables listening to songs on-demand, allowing to play any song from playlists, albums or artists without limitations. This does not remove ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.lite","versions":[]}]},{"name":"exclusive-audio-playback","description":"Enables the option to play music without video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"export-all-activities","description":"Makes all app activities exportable.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"feed-filter","description":"Filters tiktok videos: removing ads, removing livestreams.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"fix-google-login","description":"Allows logging in with a Google account.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"general-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["GeneralAdsResourcePatch","VerticalScrollPatch","FixBackToExitGesturePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"general-reddit-ads","description":"Removes general ads from the Reddit frontpage and subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2021.45.0","2022.43.0","2023.05.0","2023.06.0","2023.07.0","2023.07.1","2023.08.0","2023.09.0","2023.09.1","2023.10.0","2023.11.0","2023.12.0"]}]},{"name":"hdr-auto-brightness","description":"Makes the brightness of HDR videos follow the system default.","version":"0.0.2","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-ads","description":"Removes ads from Inshorts.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.nis.app","versions":[]}]},{"name":"hide-ads","description":"Removes ads from TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"hide-ads","description":"Removes general ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["VerticalScrollPatch"],"compatiblePackages":[{"name":"com.vanced.android.youtube","versions":[]}]},{"name":"hide-ads","description":"Hides ads.","version":"0.0.1","excluded":false,"options":[],"dependencies":["json-hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-album-cards","description":"Hides the album cards below the artist description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-album-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-artist-card","description":"Hides the artist card below the searchbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-autoplay-button","description":"Hides the autoplay button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","resource-mapping"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-breaking-news-shelf","description":"Hides the breaking news shelf on the homepage tab.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","breaking-news-shelf-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-captions-button","description":"Hides the captions button on video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-cast-button","description":"Hides the cast button in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-crowdfunding-box","description":"Hides the crowdfunding box between the player and video description.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","crowdfunding-box-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-email-address","description":"Hides the email address in the account switcher.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-email-address-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-endscreen-cards","description":"Hides the suggested video cards at the end of a video in fullscreen.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","hide-endscreen-cards-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-floating-microphone-button","description":"Hides the floating microphone button which appears in search.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideFloatingMicrophoneButtonResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-get-premium","description":"Removes all \"Get Premium\" evidences from the avatar menu.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":["5.14.53","5.16.51","5.17.51","5.21.52","5.22.54","5.23.50","5.25.51","5.25.52","5.26.52","5.27.51","5.28.52","5.29.52","5.31.50","5.34.51","5.36.51","5.38.53","5.39.52"]}]},{"name":"hide-get-premium","description":"Hides advertisement for YouTube Premium under the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"hide-inbox-ads","description":"Hides ads in inbox.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.facebook.orca","versions":[]}]},{"name":"hide-info-cards","description":"Hides info cards in videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","HideInfocardsResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-load-more-button","description":"Hides the button under videos that loads similar videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["hide-load-more-button-resource-patch"],"compatiblePackages":[]},{"name":"hide-player-buttons","description":"Adds the option to hide video player previous and next buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-player-overlay","description":"Hides the dark background overlay from the player when player controls are visible.","version":"0.0.2","excluded":false,"options":[],"dependencies":["HidePlayerOverlayResourcePatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"hide-premium-navbar","description":"Removes the premium tab from the navbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping"],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"hide-recommended-users","description":"Hides recommended users.","version":"0.0.1","excluded":false,"options":[],"dependencies":["json-hook"],"compatiblePackages":[{"name":"com.twitter.android","versions":[]}]},{"name":"hide-seekbar","description":"Hides the seekbar.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-subreddit-banner","description":"Hides banner ads from comments on subreddits.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":["2023.05.0","2023.06.0","2023.07.0","2023.07.1","2023.08.0","2023.09.0","2023.09.1","2023.10.0","2023.11.0","2023.12.0"]}]},{"name":"hide-timeline-ads","description":"Removes ads from the timeline.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.instagram.android","versions":[]}]},{"name":"hide-timestamp","description":"Hides timestamp in video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-video-action-buttons","description":"Adds the options to hide action buttons under a video.","version":"0.0.1","excluded":false,"options":[],"dependencies":["resource-mapping","LithoFilterPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-views-stats","description":"Hides the view stats under tweets.","version":"0.0.1","excluded":false,"options":[],"dependencies":["HideViewsBytecodePatch"],"compatiblePackages":[{"name":"com.twitter.android","versions":["9.69.1-release.0","9.71.0-release.0"]}]},{"name":"hide-watch-in-vr","description":"Hides the option to watch in VR from the player settings flyout panel.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"hide-watermark","description":"Hides creator\u0027s watermarks on videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"minimized-playback","description":"Enables minimized and background playback.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"minimized-playback-music","description":"Enables minimized playback on Kids music.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-microg-support","description":"Allows YouTube Music ReVanced to run without root and under a different package name.","version":"0.0.2","excluded":false,"options":[],"dependencies":["music-microg-resource-patch"],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"music-video-ads","description":"Removes ads in the music player.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"navigation-buttons","description":"Adds options to hide or change navigation buttons.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","ResolvePivotBarFingerprintsPatch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"old-quality-layout","description":"Enables the original video quality flyout in the video player settings","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"open-links-externally","description":"Open links outside of the app directly in your browser.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"playback-speed","description":"Enables the playback speed option for all videos.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"predictive-back-gesture","description":"Enables the predictive back gesture introduced on Android 13.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"premium-heading","description":"Shows premium branding on the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"premium-icon-reddit","description":"Unlocks premium Reddit app icons.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.reddit.frontpage","versions":[]}]},{"name":"premium-unlock","description":"Unlocks premium functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.citra.citra_emu","versions":[]},{"name":"org.citra.citra_emu.canary","versions":[]}]},{"name":"pro-unlock","description":"Unlocks pro-only functions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.backdrops.wallpapers","versions":["4.52"]}]},{"name":"promo-code-unlock","description":"Disables the validation of promo code. Any code will work to unlock all features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["spoof-cert-patch"],"compatiblePackages":[{"name":"de.dwd.warnapp","versions":[]}]},{"name":"remember-playback-speed","description":"Adds the ability to remember the playback speed you chose in the video playback speed flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings","video-id-hook","video-information"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.08.37","18.15.40","18.16.37"]}]},{"name":"remember-video-quality","description":"Adds the ability to remember the video quality you chose in the video quality flyout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.08.37","18.15.40","18.16.37"]}]},{"name":"remove-ads","description":"Removes all ads from the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.binarymode.android.irplus","versions":[]}]},{"name":"remove-bootloader-detection","description":"Removes the check for an unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-broadcasts-restriction","description":"Enables starting/stopping NetGuard via broadcasts.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"eu.faircode.netguard","versions":[]}]},{"name":"remove-player-button-background","description":"Removes the background from the video player buttons.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.bmf.bmf2go","versions":["2.2.0"]}]},{"name":"remove-root-detection","description":"Removes the check for root permissions and unlocked bootloader.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"remove-screenshot-restriction","description":"Removes the restriction of taking screenshots in apps that normally wouldn\u0027t allow it.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"return-youtube-dislike","description":"Shows the dislike count of videos using the Return YouTube Dislike API.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","return-youtube-dislike-resource-patch","player-type-hook"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"seekbar-tapping","description":"Enables tap-to-seek on the seekbar of the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"settings","description":"Adds settings menu to Twitch.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings-resource-patch"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"settings","description":"Adds ReVanced settings to TikTok.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"show-deleted-messages","description":"Shows deleted chat messages behind a clickable spoiler.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"tv.twitch.android.app","versions":[]}]},{"name":"show-seekbar","description":"Shows progress bar for all video.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":[]},{"name":"com.zhiliaoapp.musically","versions":[]}]},{"name":"sim-spoof","description":"Spoofs the information which is retrieved from the sim-card.","version":"0.0.1","excluded":true,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.ss.android.ugc.trill","versions":["27.8.3"]},{"name":"com.zhiliaoapp.musically","versions":["27.8.3"]}]},{"name":"sponsorblock","description":"Integrates SponsorBlock which allows skipping video segments such as sponsored content.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","video-id-hook","video-information","player-type-hook","player-controls-bytecode-patch","sponsorblock-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"spoof-app-version","description":"Tricks YouTube into thinking, you are running an older version of the app. One of the side effects also includes restoring the old UI.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"spoof-signature","description":"Spoofs the signature of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"at.gv.oe.app","versions":[]}]},{"name":"spoof-wifi-connection","description":"Spoofs an existing Wi-Fi connection.","version":"0.0.1","excluded":true,"options":[],"dependencies":[],"compatiblePackages":[]},{"name":"spotify-theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"backgroundColor","title":"Background color","description":"The background color. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentColor","title":"Accent color","description":"The accent color (\u0027spotify green\u0027 by default). Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"accentPressedColor","title":"Pressed accent for the dark theme","description":"The color when accented buttons are pressed, by default slightly darker than accent. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":[],"compatiblePackages":[{"name":"com.spotify.music","versions":[]}]},{"name":"swipe-controls","description":"Adds volume and brightness swipe controls.","version":"0.0.3","excluded":false,"options":[],"dependencies":["integrations","player-type-hook","swipe-controls-resource-patch"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"tablet-mini-player","description":"Enables the tablet mini player layout.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["18.15.40","18.16.37"]}]},{"name":"tasteBuilder-remover","description":"Removes the \"Tell us which artists you like\" card from the home screen.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"theme","description":"Applies a custom theme.","version":"0.0.1","excluded":false,"options":[{"key":"darkThemeBackgroundColor","title":"Background color for the dark theme","description":"The background color of the dark theme. Can be a hex color or a resource reference.","required":false,"choices":null},{"key":"lightThemeBackgroundColor","title":"Background color for the light theme","description":"The background color of the light theme. Can be a hex color or a resource reference.","required":false,"choices":null}],"dependencies":["theme-litho-components","ThemeResourcePatch","integrations"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":[]}]},{"name":"unlock-paid-widgets","description":"Unlocks paid widgets of the app","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.dci.dev.androidtwelvewidgets","versions":[]}]},{"name":"unlock-plus","description":"Unlocks plus features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureDetectionPatch"],"compatiblePackages":[{"name":"com.microblink.photomath","versions":[]}]},{"name":"unlock-premium","description":"Unlocks premium features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"io.yuka.android","versions":[]}]},{"name":"unlock-prime","description":"Unlocks Nova Prime and all functions of the app.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.teslacoilsw.launcher","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"co.windyapp.android","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all professional features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"org.totschnig.myexpenses","versions":["3.4.9"]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":["SignatureVerificationPatch","LicenseValidationPatch"],"compatiblePackages":[{"name":"com.zombodroid.MemeGenerator","versions":["4.6364","4.6370","4.6375","4.6377"]}]},{"name":"unlock-pro","description":"Unlocks pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ithebk.expensemanager","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"ginlemon.iconpackstudio","versions":[]}]},{"name":"unlock-pro","description":"Unlocks all pro features.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.awedea.nyx","versions":[]}]},{"name":"unlock-themes","description":"Unlocks all themes that are inaccessible until a certain level is reached.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.ticktick.task","versions":[]}]},{"name":"unlock-trial","description":"Unlocks the trial version.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"net.dinglisch.android.taskerm","versions":[]}]},{"name":"upgrade-button-remover","description":"Removes the upgrade tab from the pivot bar.","version":"0.0.1","excluded":false,"options":[],"dependencies":[],"compatiblePackages":[{"name":"com.google.android.apps.youtube.music","versions":[]}]},{"name":"vanced-microg-support","description":"Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG.","version":"0.0.1","excluded":false,"options":[],"dependencies":["microg-resource-patch","hide-cast-button"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"video-ads","description":"Removes ads in the video player.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]},{"name":"wide-searchbar","description":"Replaces the search icon with a wide search bar. This will hide the YouTube logo when active.","version":"0.0.1","excluded":false,"options":[],"dependencies":["integrations","settings"],"compatiblePackages":[{"name":"com.google.android.youtube","versions":["17.49.37","18.03.36","18.03.42","18.04.35","18.04.41","18.05.32","18.05.35","18.05.40","18.08.37","18.15.40","18.16.37"]}]}]
\ No newline at end of file
|
chore
|
2.174.0-dev.14 [skip ci]
|
fbb17636d8ab9f2a43ead896451804b04464527c
|
2023-04-16 22:51:32
|
LisoUseInAIKyrios
|
feat(youtube): change default video speed and quality inside the settings menu (#1880)
| false
|
diff --git a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
index 608dccca4c..90795e1f7b 100644
--- a/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
+++ b/src/main/kotlin/app/revanced/patches/shared/settings/preference/impl/ArrayResource.kt
@@ -11,6 +11,7 @@ import org.w3c.dom.Element
* @param name The name of the array resource.
* @param items The items of the array resource.
*/
+// TODO: allow specifying an array resource file instead of using a list of StringResources
internal data class ArrayResource(
override val name: String,
val items: List<StringResource>
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
index 28b382d764..d5a03e33be 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/video/quality/patch/RememberVideoQualityPatch.kt
@@ -14,6 +14,8 @@ import app.revanced.patcher.patch.PatchResultError
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.shared.settings.preference.impl.ArrayResource
+import app.revanced.patches.shared.settings.preference.impl.ListPreference
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
@@ -58,6 +60,52 @@ class RememberVideoQualityPatch : BytecodePatch(
)
)
+ // This is bloated as each value has it's own String key/value
+ // ideally the entries would be raw values (and not a key to a String resource)
+ val entries = listOf(
+ StringResource("revanced_default_quality_entry_1", "Automatic quality"),
+ StringResource("revanced_default_quality_entry_2", "2160p"),
+ StringResource("revanced_default_quality_entry_3", "1440p"),
+ StringResource("revanced_default_quality_entry_4", "1080p"),
+ StringResource("revanced_default_quality_entry_5", "720p"),
+ StringResource("revanced_default_quality_entry_6", "480p"),
+ StringResource("revanced_default_quality_entry_7", "360p"),
+ StringResource("revanced_default_quality_entry_8", "280p"),
+ StringResource("revanced_default_quality_entry_9", "144p"),
+ )
+ val entryValues = listOf(
+ StringResource("revanced_default_quality_entry_value_1", "-2"),
+ StringResource("revanced_default_quality_entry_value_2", "2160"),
+ StringResource("revanced_default_quality_entry_value_3", "1440"),
+ StringResource("revanced_default_quality_entry_value_4", "1080"),
+ StringResource("revanced_default_quality_entry_value_5", "720"),
+ StringResource("revanced_default_quality_entry_value_6", "480"),
+ StringResource("revanced_default_quality_entry_value_7", "360"),
+ StringResource("revanced_default_quality_entry_value_8", "280"),
+ StringResource("revanced_default_quality_entry_value_9", "144"),
+ )
+ SettingsPatch.PreferenceScreen.MISC.addPreferences(
+ ListPreference(
+ "revanced_default_video_quality_wifi",
+ StringResource(
+ "revanced_default_video_quality_wifi_title",
+ "Default video quality on Wi-Fi network"
+ ),
+ ArrayResource("revanced_video_quality_wifi_entry", entries),
+ ArrayResource("revanced_video_quality_wifi_entry_values", entryValues)
+ // default value and summary are set by integrations after loading
+ ),
+ ListPreference(
+ "revanced_default_video_quality_mobile",
+ StringResource(
+ "revanced_default_video_quality_mobile_title",
+ "Default video quality on mobile network"
+ ),
+ ArrayResource("revanced_video_quality_mobile_entries", entries),
+ ArrayResource("revanced_video_quality_mobile_entry_values", entryValues)
+ )
+ )
+
/*
* The following code works by hooking the method which is called when the user selects a video quality
* to remember the last selected video quality.
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/custom/patch/CustomVideoSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/custom/patch/CustomVideoSpeedPatch.kt
index 1b76883b76..c038ba4974 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/custom/patch/CustomVideoSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/custom/patch/CustomVideoSpeedPatch.kt
@@ -9,11 +9,11 @@ import app.revanced.patcher.extensions.replaceInstruction
import app.revanced.patcher.patch.*
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
+import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.video.speed.custom.annotations.CustomPlaybackSpeedCompatibility
import app.revanced.patches.youtube.misc.video.speed.custom.fingerprints.SpeedArrayGeneratorFingerprint
import app.revanced.patches.youtube.misc.video.speed.custom.fingerprints.SpeedLimiterFingerprint
import app.revanced.patches.youtube.misc.video.speed.custom.fingerprints.VideoSpeedPatchFingerprint
-import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import org.jf.dexlib2.builder.instruction.BuilderArrayPayload
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/fingerprint/InitializePlaybackSpeedValuesFingerprint.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/fingerprint/InitializePlaybackSpeedValuesFingerprint.kt
index ead76aa8d1..e244a298e7 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/fingerprint/InitializePlaybackSpeedValuesFingerprint.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/fingerprint/InitializePlaybackSpeedValuesFingerprint.kt
@@ -1,4 +1,4 @@
-package app.revanced.patches.youtube.misc.video.speed.current.fingerprint
+package app.revanced.patches.youtube.misc.video.speed.remember.fingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
index 2dfd34fa0d..4895e665af 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/misc/video/speed/remember/patch/RememberPlaybackSpeedPatch.kt
@@ -11,14 +11,16 @@ import app.revanced.patcher.patch.*
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.smali.ExternalLabel
+import app.revanced.patches.shared.settings.preference.impl.ArrayResource
+import app.revanced.patches.shared.settings.preference.impl.ListPreference
import app.revanced.patches.shared.settings.preference.impl.StringResource
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
import app.revanced.patches.youtube.misc.video.information.patch.VideoInformationPatch
import app.revanced.patches.youtube.misc.video.information.patch.VideoInformationPatch.Companion.reference
-import app.revanced.patches.youtube.misc.video.speed.current.fingerprint.InitializePlaybackSpeedValuesFingerprint
import app.revanced.patches.youtube.misc.video.speed.remember.annotation.RememberPlaybackSpeedCompatibility
+import app.revanced.patches.youtube.misc.video.speed.remember.fingerprint.InitializePlaybackSpeedValuesFingerprint
import app.revanced.patches.youtube.misc.video.videoid.patch.VideoIdPatch
@Patch
@@ -52,6 +54,27 @@ class RememberPlaybackSpeedPatch : BytecodePatch(
)
)
+ SettingsPatch.PreferenceScreen.MISC.addPreferences(
+ ListPreference(
+ "revanced_default_playback_speed",
+ StringResource(
+ "revanced_default_playback_speed_title",
+ "Default playback speed"
+ ),
+ // Dummy data:
+ // Entries and values are set by Integrations code based on the actual speeds available,
+ // and the values set here are ignored and do nothing.
+ ArrayResource(
+ "revanced_default_playback_speed_entries",
+ listOf(StringResource("revanced_default_playback_speed_entry", "1.0x"))
+ ),
+ ArrayResource(
+ "revanced_default_playback_speed_entry_values",
+ listOf(StringResource("revanced_default_playback_speed_entry_value", "1.0"))
+ )
+ )
+ )
+
VideoIdPatch.injectCall("${INTEGRATIONS_CLASS_DESCRIPTOR}->newVideoLoaded(Ljava/lang/String;)V")
VideoInformationPatch.userSelectedPlaybackSpeedHook(
@@ -92,7 +115,6 @@ class RememberPlaybackSpeedPatch : BytecodePatch(
)
} ?: return InitializePlaybackSpeedValuesFingerprint.toErrorResult()
-
return PatchResultSuccess()
}
|
feat
|
change default video speed and quality inside the settings menu (#1880)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.